當前位置: 首頁>>代碼示例>>Java>>正文


Java X509CertSelector.setAuthorityKeyIdentifier方法代碼示例

本文整理匯總了Java中java.security.cert.X509CertSelector.setAuthorityKeyIdentifier方法的典型用法代碼示例。如果您正苦於以下問題:Java X509CertSelector.setAuthorityKeyIdentifier方法的具體用法?Java X509CertSelector.setAuthorityKeyIdentifier怎麽用?Java X509CertSelector.setAuthorityKeyIdentifier使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在java.security.cert.X509CertSelector的用法示例。


在下文中一共展示了X509CertSelector.setAuthorityKeyIdentifier方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: test_getAuthorityKeyIdentifier

import java.security.cert.X509CertSelector; //導入方法依賴的package包/類
/**
 * @tests java.security.cert.X509CertSelector#getAuthorityKeyIdentifier()
 */
@TestTargetNew(
    level = TestLevel.COMPLETE,
    notes = "",
    method = "getAuthorityKeyIdentifier",
    args = {}
)
public void test_getAuthorityKeyIdentifier() {
    byte[] akid1 = new byte[] { 4, 5, 1, 2, 3, 4, 5 }; // random value
    byte[] akid2 = new byte[] { 4, 5, 5, 4, 3, 2, 1 }; // random value
    X509CertSelector selector = new X509CertSelector();

    assertNull("Selector should return null", selector
            .getAuthorityKeyIdentifier());
    selector.setAuthorityKeyIdentifier(akid1);
    assertTrue("The returned keyID should be equal to specified", Arrays
            .equals(akid1, selector.getAuthorityKeyIdentifier()));
    assertTrue("The returned keyID should be equal to specified", Arrays
            .equals(akid1, selector.getAuthorityKeyIdentifier()));
    assertFalse("The returned keyID should differ", Arrays.equals(akid2,
            selector.getAuthorityKeyIdentifier()));
}
 
開發者ID:keplersj,項目名稱:In-the-Box-Fork,代碼行數:25,代碼來源:X509CertSelectorTest.java

示例2: testAuthorityKeyIdentifier

import java.security.cert.X509CertSelector; //導入方法依賴的package包/類
private void testAuthorityKeyIdentifier() throws IOException {
    System.out.println("X.509 Certificate Match on authorityKeyIdentifier");
    // bad match
    X509CertSelector selector = new X509CertSelector();
    byte[] b = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
    AuthorityKeyIdentifierExtension a = new AuthorityKeyIdentifierExtension(new KeyIdentifier(b), null, null);
    selector.setAuthorityKeyIdentifier(a.getExtensionValue());
    checkMatch(selector, cert, false);

    // good match
    DerInputStream in = new DerInputStream(cert.getExtensionValue("2.5.29.35"));
    byte[] encoded = in.getOctetString();
    selector.setAuthorityKeyIdentifier(encoded);
    checkMatch(selector, cert, true);
}
 
開發者ID:lambdalab-mirror,項目名稱:jdk8u-jdk,代碼行數:16,代碼來源:X509CertSelectorTest.java

示例3: X509CertSelector

import java.security.cert.X509CertSelector; //導入方法依賴的package包/類
/**
 * @tests java.security.cert.X509CertSelector#setAuthorityKeyIdentifier(byte[])
 */
@TestTargetNew(
    level = TestLevel.COMPLETE,
    notes = "",
    method = "setAuthorityKeyIdentifier",
    args = {byte[].class}
)
public void test_setAuthorityKeyIdentifierLB$() throws CertificateException {
    X509CertSelector selector = new X509CertSelector();

    byte[] akid1 = new byte[] { 1, 2, 3, 4, 5 }; // random value
    byte[] akid2 = new byte[] { 5, 4, 3, 2, 1 }; // random value
    TestCert cert1 = new TestCert(akid1);
    TestCert cert2 = new TestCert(akid2);

    selector.setAuthorityKeyIdentifier(null);
    assertTrue("The certificate should match the selection criteria.",
            selector.match(cert1));
    assertTrue("The certificate should match the selection criteria.",
            selector.match(cert2));
    assertNull(selector.getAuthorityKeyIdentifier());

    selector.setAuthorityKeyIdentifier(akid1);
    assertTrue("The certificate should not match the selection criteria.",
            selector.match(cert1));
    assertFalse("The certificate should not match the selection criteria.",
            selector.match(cert2));
    selector.setAuthorityKeyIdentifier(akid2);
    assertFalse("The certificate should not match the selection criteria.",
            selector.match(cert1));
    assertTrue("The certificate should not match the selection criteria.",
            selector.match(cert2));

    akid2[0]++;
    assertTrue("The certificate should match the selection criteria.",
            selector.match(cert2));
}
 
開發者ID:keplersj,項目名稱:In-the-Box-Fork,代碼行數:40,代碼來源:X509CertSelectorTest.java


注:本文中的java.security.cert.X509CertSelector.setAuthorityKeyIdentifier方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。