Searched refs:keyId (Results 1 - 7 of 7) sorted by relevance

/openjdk9/jdk/src/java.xml.crypto/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMPGPData.java51 private final byte[] keyId; field in class:DOMPGPData
85 this.keyId = null;
92 * @param keyId a PGP public key id as defined in section 11.2 of
102 * @throws NullPointerException if <code>keyId</code> is <code>null</code>
108 public DOMPGPData(byte[] keyId, byte[] keyPacket, argument
111 if (keyId == null) {
112 throw new NullPointerException("keyId cannot be null");
115 if (keyId.length != 8) {
116 throw new IllegalArgumentException("keyId must be 8 bytes long");
125 this.keyId
[all...]
H A DDOMKeyInfoFactory.java77 public PGPData newPGPData(byte[] keyId) { argument
78 return newPGPData(keyId, null, null);
81 public PGPData newPGPData(byte[] keyId, byte[] keyPacket, argument
83 return new DOMPGPData(keyId, keyPacket, other);
/openjdk9/jdk/src/jdk.crypto.ucrypto/solaris/classes/com/oracle/security/ucrypto/
H A DNativeKey.java85 private final long keyId; field in class:NativeKey.RSAPrivate
106 this.keyId = pKey;
109 long value() { return keyId; }
121 private final long keyId; field in class:NativeKey.RSAPrivateCrt
154 this.keyId = pKey;
157 long value() { return keyId; }
177 private final long keyId; field in class:NativeKey.RSAPublic
198 this.keyId = pKey;
201 long value() { return keyId; }
/openjdk9/jdk/src/java.base/share/classes/sun/security/pkcs12/
H A DPKCS12KeyStore.java237 byte[] keyId; field in class:PKCS12KeyStore.Entry
261 CertEntry(X509Certificate cert, byte[] keyId, String alias) { argument
262 this(cert, keyId, alias, null, null);
265 CertEntry(X509Certificate cert, byte[] keyId, String alias, argument
270 this.keyId = keyId;
656 // set the keyId to current date
657 entry.keyId = ("Time " + (entry.date).getTime()).getBytes("UTF8");
717 // set the keyId to current date
718 entry.keyId
1572 getBagAttributes(String alias, byte[] keyId, Set<KeyStore.Entry.Attribute> attributes) argument
1577 getBagAttributes(String alias, byte[] keyId, ObjectIdentifier[] trustedUsage, Set<KeyStore.Entry.Attribute> attributes) argument
[all...]
/openjdk9/jdk/src/java.xml.crypto/share/classes/javax/xml/crypto/dsig/keyinfo/
H A DKeyInfoFactory.java395 * @param keyId a PGP public key identifier as defined in <a href=
399 * @throws NullPointerException if <code>keyId</code> is <code>null</code>
403 public abstract PGPData newPGPData(byte[] keyId); argument
410 * @param keyId a PGP public key identifier as defined in <a href=
421 * @throws NullPointerException if <code>keyId</code> is <code>null</code>
422 * @throws IllegalArgumentException if the <code>keyId</code> or
430 public abstract PGPData newPGPData(byte[] keyId, byte[] keyPacket, argument
/openjdk9/jdk/test/sun/security/x509/X509CertImpl/
H A DV3Certificate.java109 byte[] keyId = md.digest(publicKey.getEncoded());
191 KeyIdentifier kid = new KeyIdentifier(keyId);
197 = new SubjectKeyIdentifierExtension(keyId);
/openjdk9/jdk/src/java.base/share/classes/sun/security/x509/
H A DX509CRLImpl.java863 KeyIdentifier keyId = (KeyIdentifier)aki.get(
865 return keyId;

Completed in 64 milliseconds