Searched refs:octetString (Results 1 - 3 of 3) sorted by relevance

/openjdk9/jdk/src/java.base/share/classes/sun/security/x509/
H A DKeyIdentifier.java43 private byte[] octetString; field in class:KeyIdentifier
48 * @param octetString the octet string identifying the key identifier.
50 public KeyIdentifier(byte[] octetString) { argument
51 this.octetString = octetString.clone();
60 octetString = val.getOctetString();
100 this.octetString = md.digest();
107 return octetString.clone();
117 s += encoder.encodeBuffer(octetString);
129 out.putOctetString(octetString);
[all...]
H A DSubjectKeyIdentifierExtension.java86 * @param octetString the octet string identifying the key identifier.
88 public SubjectKeyIdentifierExtension(byte[] octetString) argument
90 id = new KeyIdentifier(octetString);
/openjdk9/jdk/src/java.base/share/classes/sun/security/pkcs/
H A DContentInfo.java98 DerValue octetString = new DerValue(DerValue.tag_OctetString, bytes);
100 this.content = octetString;

Completed in 47 milliseconds