Searched defs:keyId (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMPGPData.java49 private final byte[] keyId; field in class:DOMPGPData
88 this.keyId = null;
95 * @param keyId a PGP public key id as defined in section 11.2 of
105 * @throws NullPointerException if <code>keyId</code> is <code>null</code>
111 public DOMPGPData(byte[] keyId, byte[] keyPacket, List other) { argument
112 if (keyId == null) {
113 throw new NullPointerException("keyId cannot be null");
116 if (keyId.length != 8) {
117 throw new IllegalArgumentException("keyId must be 8 bytes long");
131 this.keyId
[all...]
H A DDOMKeyInfoFactory.java66 public PGPData newPGPData(byte[] keyId) { argument
67 return newPGPData(keyId, null, null);
70 public PGPData newPGPData(byte[] keyId, byte[] keyPacket, List other) { argument
71 return new DOMPGPData(keyId, keyPacket, other);
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/keyinfo/
H A DKeyInfoFactory.java353 * @param keyId a PGP public key identifier as defined in <a href=
357 * @throws NullPointerException if <code>keyId</code> is <code>null</code>
361 public abstract PGPData newPGPData(byte[] keyId); argument
368 * @param keyId a PGP public key identifier as defined in <a href=
379 * @throws NullPointerException if <code>keyId</code> is <code>null</code>
380 * @throws IllegalArgumentException if the <code>keyId</code> or
388 public abstract PGPData newPGPData(byte[] keyId, byte[] keyPacket, argument
/openjdk7/jdk/src/share/classes/sun/security/pkcs12/
H A DPKCS12KeyStore.java179 byte[] keyId; field in class:PKCS12KeyStore.KeyEntry
186 final byte[] keyId; field in class:PKCS12KeyStore.CertEntry
188 CertEntry(X509Certificate cert, byte[] keyId, String alias) { argument
190 this.keyId = keyId;
426 // set the keyId to current date
427 entry.keyId = ("Time " + (entry.date).getTime()).getBytes("UTF8");
483 // set the keyId to current date
484 entry.keyId = ("Time " + (entry.date).getTime()).getBytes("UTF8");
941 private byte[] getBagAttributes(String alias, byte[] keyId) argument
[all...]

Completed in 32 milliseconds