Home
last modified time | relevance | path

Searched refs:algParams (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/ec/
DECPrivateKeyImpl.java144 AlgorithmParameters algParams = this.algid.getParameters(); in parseKeyBits() local
145 if (algParams == null) { in parseKeyBits()
149 params = algParams.getParameterSpec(ECParameterSpec.class); in parseKeyBits()
DECPublicKeyImpl.java97 AlgorithmParameters algParams = this.algid.getParameters(); in parseKeyBits() local
98 params = algParams.getParameterSpec(ECParameterSpec.class); in parseKeyBits()
/libcore/ojluni/src/main/java/sun/security/x509/
DAlgorithmId.java70 private AlgorithmParameters algParams; field in AlgorithmId
106 algParams = algparams; in AlgorithmId()
122 algParams = AlgorithmParameters.getInstance(algidString); in decodeParams()
128 algParams = AlgorithmParameters.getInstance(algidString, in decodeParams()
135 algParams = null; in decodeParams()
140 algParams.init(params.toByteArray()); in decodeParams()
166 if (algParams != null) { in derEncode()
167 params = new DerValue(algParams.getEncoded()); in derEncode()
264 return algParams; in getParameters()
334 } else if (algParams != null) { in paramsToString()
[all …]
/libcore/ojluni/src/main/java/javax/crypto/
DEncryptedPrivateKeyInfo.java172 public EncryptedPrivateKeyInfo(AlgorithmParameters algParams, in EncryptedPrivateKeyInfo() argument
175 if (algParams == null) { in EncryptedPrivateKeyInfo()
178 this.algid = AlgorithmId.get(algParams); in EncryptedPrivateKeyInfo()