Searched refs:derValue (Results 1 - 21 of 21) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX400Address.java352 * @param derValue the encoded DER X400Address.
355 public X400Address(DerValue derValue) throws IOException { argument
356 nameValue = derValue.toByteArray();
373 DerValue derValue = new DerValue(nameValue);
374 out.putDerValue(derValue);
H A DOIDName.java48 * @param derValue the encoded DER OIDName.
51 public OIDName(DerValue derValue) throws IOException { argument
52 oid = derValue.getOID();
H A DAccessDescription.java62 public AccessDescription(DerValue derValue) throws IOException { argument
63 DerInputStream derIn = derValue.getData();
H A DDNSName.java61 * @param derValue the encoded DER DNSName.
64 public DNSName(DerValue derValue) throws IOException { argument
65 name = derValue.getIA5String();
H A DEDIPartyName.java79 * @param derValue the encoded DER EDIPartyName.
82 public EDIPartyName(DerValue derValue) throws IOException { argument
83 DerInputStream in = new DerInputStream(derValue.toByteArray());
H A DRFC822Name.java50 * @param derValue the encoded DER RFC822Name.
53 public RFC822Name(DerValue derValue) throws IOException { argument
54 name = derValue.getIA5String();
H A DOtherName.java85 * @param derValue the encoded DER OtherName.
88 public OtherName(DerValue derValue) throws IOException { argument
89 DerInputStream in = derValue.toDerInputStream();
H A DURIName.java92 * @param derValue the encoded DER URIName.
95 public URIName(DerValue derValue) throws IOException { argument
96 this(derValue.getIA5String());
H A DIPAddressName.java78 * @params derValue the encoded DER IPAddressName.
81 public IPAddressName(DerValue derValue) throws IOException { argument
82 this(derValue.getOctetString());
H A DX509CRLEntryImpl.java133 public X509CRLEntryImpl(DerValue derValue) throws CRLException { argument
135 parse(derValue);
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAPublicKeyImpl.java108 DerValue derValue = in.getDerValue();
109 if (derValue.tag != DerValue.tag_Sequence) {
112 DerInputStream data = derValue.data;
115 if (derValue.data.available() != 0) {
H A DRSAPrivateCrtKeyImpl.java185 DerValue derValue = in.getDerValue();
186 if (derValue.tag != DerValue.tag_Sequence) {
189 DerInputStream data = derValue.data;
202 if (derValue.data.available() != 0) {
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DSigningCertificateInfo.java109 DerValue derValue = new DerValue(bytes);
110 if (derValue.tag != DerValue.tag_Sequence) {
115 DerValue[] certs = derValue.data.getSequence(1);
122 if (derValue.data.available() > 0) {
123 DerValue[] policies = derValue.data.getSequence(1);
/openjdk7/jdk/src/share/classes/sun/security/timestamp/
H A DTSResponse.java326 DerValue derValue = new DerValue(tsReply);
327 if (derValue.tag != DerValue.tag_Sequence) {
333 DerValue status = derValue.data.getDerValue();
359 if (derValue.data.available() > 0) {
360 DerValue timestampToken = derValue.data.getDerValue();
/openjdk7/jdk/src/share/classes/sun/security/ec/
H A DECPrivateKeyImpl.java123 DerValue derValue = in.getDerValue();
124 if (derValue.tag != DerValue.tag_Sequence) {
127 DerInputStream data = derValue.data;
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/internal/www/protocol/https/
H A DDelegateHttpsURLConnection.java183 DerValue derValue = subject.findMostSpecificAttribute
185 if (derValue != null) {
187 String name = derValue.getAsString();
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DTimestampedSigner.java272 DerValue[] derValue = der.getSequence(5);
276 for (int i = 0; i < derValue.length; i++) {
277 description = new AccessDescription(derValue[i]);
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DHostnameChecker.java196 DerValue derValue = subjectName.findMostSpecificAttribute
198 if (derValue != null) {
200 if (isMatched(expectedName, derValue.getAsString())) {
/openjdk7/jdk/src/share/native/sun/security/krb5/
H A Dnativeccache.c425 jobject derValue, ticket; local
439 derValue = (*env)->NewObject(env, derValueClass, derValueConstructor, ary);
446 ticket = (*env)->NewObject(env, ticketClass, ticketConstructor, derValue);
448 (*env)->DeleteLocalRef(env, derValue);
451 (*env)->DeleteLocalRef(env, derValue);
/openjdk7/jdk/src/windows/native/sun/security/krb5/
H A DNativeCreds.c874 jobject derValue, ticket; local
889 derValue = (*env)->NewObject(env, derValueClass, derValueConstructor, ary);
896 ticket = (*env)->NewObject(env, ticketClass, ticketConstructor, derValue);
898 (*env)->DeleteLocalRef(env, derValue);
901 (*env)->DeleteLocalRef(env, derValue);
/openjdk7/jdk/test/javax/xml/crypto/dsig/
H A DKeySelectors.java256 DerValue derValue = new DerValue(extension);
257 DerValue derValue2 = new DerValue(derValue.getOctetString());

Completed in 80 milliseconds