OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getDEREncoded
(Results
1 - 22
of
22
) sorted by null
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1Encodable.java
61
public byte[]
getDEREncoded
()
DERExternal.java
127
baos.write(directReference.
getDEREncoded
());
131
baos.write(indirectReference.
getDEREncoded
());
135
baos.write(dataValueDescriptor.
getDEREncoded
());
138
baos.write(obj.
getDEREncoded
());
DERApplicationSpecific.java
49
byte[] data = object.getDERObject().
getDEREncoded
();
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCEDHPrivateKey.java
123
return info.
getDEREncoded
();
128
return info.
getDEREncoded
();
JCEDHPublicKey.java
121
return info.
getDEREncoded
();
126
return info.
getDEREncoded
();
JDKDSAPublicKey.java
103
return new SubjectPublicKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa), new DERInteger(y)).
getDEREncoded
();
106
return new SubjectPublicKeyInfo(new AlgorithmIdentifier(X9ObjectIdentifiers.id_dsa, new DSAParameter(dsaSpec.getP(), dsaSpec.getQ(), dsaSpec.getG()).getDERObject()), new DERInteger(y)).
getDEREncoded
();
JCERSAPrivateKey.java
84
return info.
getDEREncoded
();
JCERSAPublicKey.java
97
return info.
getDEREncoded
();
X509SignatureUtil.java
43
sigParams.init(params.getDERObject().
getDEREncoded
());
JDKDSAPrivateKey.java
94
return info.
getDEREncoded
();
JCERSAPrivateCrtKey.java
132
return info.
getDEREncoded
();
X509CRLEntryObject.java
111
return new X500Principal(names[i].getName().getDERObject().
getDEREncoded
());
JCEECPrivateKey.java
343
return info.
getDEREncoded
();
JCEECPublicKey.java
406
return info.
getDEREncoded
();
X509CRLObject.java
74
this.sigAlgParams = ((ASN1Encodable)c.getSignatureAlgorithm().getParameters()).
getDEREncoded
();
X509CertificateObject.java
271
return c.getSignatureAlgorithm().getParameters().getDERObject().
getDEREncoded
();
JDKPKCS12KeyStore.java
[
all
...]
/frameworks/base/core/java/android/webkit/
CertTool.java
60
byte[] signed = request.toASN1Object().
getDEREncoded
();
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/signers/
RSADigestSigner.java
230
return dInfo.
getDEREncoded
();
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x500/style/
IETFUtils.java
193
vBuf.append("#" + bytesToString(Hex.encode(value.getDERObject().
getDEREncoded
())));
/external/bouncycastle/src/main/java/org/bouncycastle/jce/
PKCS10CertificationRequest.java
592
sigParams.init(params.getDERObject().
getDEREncoded
());
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
X509Name.java
435
values.addElement("#" + bytesToString(Hex.encode(value.getDERObject().
getDEREncoded
())));
[
all
...]
Completed in 1087 milliseconds