Searched defs:algId (Results 1 - 19 of 19) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DEncryptedPrivateKeyInfo.java17 private AlgorithmIdentifier algId; field in class:EncryptedPrivateKeyInfo
25 algId = AlgorithmIdentifier.getInstance(e.nextElement());
30 AlgorithmIdentifier algId,
33 this.algId = algId;
54 return algId;
81 v.add(algId);
29 EncryptedPrivateKeyInfo( AlgorithmIdentifier algId, byte[] encoding) argument
H A DEncryptionScheme.java13 private AlgorithmIdentifier algId; field in class:EncryptionScheme
19 this.algId = new AlgorithmIdentifier(objectId, parameters);
25 this.algId = AlgorithmIdentifier.getInstance(seq);
44 return algId.getAlgorithm();
49 return algId.getParameters();
54 return algId.toASN1Primitive();
H A DKeyDerivationFunc.java13 private AlgorithmIdentifier algId; field in class:KeyDerivationFunc
19 this.algId = new AlgorithmIdentifier(objectId, parameters);
25 this.algId = AlgorithmIdentifier.getInstance(seq);
44 return algId.getAlgorithm();
49 return algId.getParameters();
54 return algId.toASN1Primitive();
H A DPrivateKeyInfo.java26 private AlgorithmIdentifier algId; field in class:PrivateKeyInfo
52 AlgorithmIdentifier algId,
56 this(algId, privateKey, null);
60 AlgorithmIdentifier algId,
66 this.algId = algId;
85 algId = AlgorithmIdentifier.getInstance(e.nextElement());
96 return algId;
103 return algId;
154 v.add(algId);
51 PrivateKeyInfo( AlgorithmIdentifier algId, ASN1Encodable privateKey) argument
59 PrivateKeyInfo( AlgorithmIdentifier algId, ASN1Encodable privateKey, ASN1Set attributes) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DDigestInfo.java26 private AlgorithmIdentifier algId; field in class:DigestInfo
51 AlgorithmIdentifier algId,
55 this.algId = algId;
63 algId = AlgorithmIdentifier.getInstance(e.nextElement());
69 return algId;
81 v.add(algId);
50 DigestInfo( AlgorithmIdentifier algId, byte[] digest) argument
H A DSubjectPublicKeyInfo.java25 private AlgorithmIdentifier algId; field in class:SubjectPublicKeyInfo
51 AlgorithmIdentifier algId,
56 this.algId = algId;
60 AlgorithmIdentifier algId,
64 this.algId = algId;
81 this.algId = AlgorithmIdentifier.getInstance(e.nextElement());
87 return algId;
96 return algId;
50 SubjectPublicKeyInfo( AlgorithmIdentifier algId, ASN1Encodable publicKey) argument
59 SubjectPublicKeyInfo( AlgorithmIdentifier algId, byte[] publicKey) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
H A DKeyUtil.java11 public static byte[] getEncodedSubjectPublicKeyInfo(AlgorithmIdentifier algId, ASN1Encodable keyData) argument
15 return getEncodedSubjectPublicKeyInfo(new SubjectPublicKeyInfo(algId, keyData));
23 public static byte[] getEncodedSubjectPublicKeyInfo(AlgorithmIdentifier algId, byte[] keyData) argument
27 return getEncodedSubjectPublicKeyInfo(new SubjectPublicKeyInfo(algId, keyData));
47 public static byte[] getEncodedPrivateKeyInfo(AlgorithmIdentifier algId, ASN1Encodable privKey) argument
51 PrivateKeyInfo info = new PrivateKeyInfo(algId, privKey.toASN1Primitive());
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSSignedHelper.java146 AlgorithmIdentifier fixAlgID(AlgorithmIdentifier algId) argument
148 if (algId.getParameters() == null)
150 return new AlgorithmIdentifier(algId.getAlgorithm(), DERNull.INSTANCE);
153 return algId;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/signers/
H A DRSADigestSigner.java31 private final AlgorithmIdentifier algId; field in class:RSADigestSigner
74 this.algId = new AlgorithmIdentifier(digestOid, DERNull.INSTANCE);
242 DigestInfo dInfo = new DigestInfo(algId, hash);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
H A DDigestSignatureSpi.java51 private AlgorithmIdentifier algId; field in class:DigestSignatureSpi
60 this.algId = null;
71 this.algId = new AlgorithmIdentifier(objId, DERNull.INSTANCE);
245 if (algId == null)
251 DigestInfo dInfo = new DigestInfo(algId, hash);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/
H A DPKCS12KeyStoreSpi.java608 AlgorithmIdentifier algId,
614 ASN1ObjectIdentifier algorithm = algId.getAlgorithm();
619 PKCS12PBEParams pbeParams = PKCS12PBEParams.getInstance(algId.getParameters());
636 Cipher cipher = createCipher(Cipher.UNWRAP_MODE, password, algId);
683 AlgorithmIdentifier algId,
689 ASN1ObjectIdentifier algorithm = algId.getAlgorithm();
694 PKCS12PBEParams pbeParams = PKCS12PBEParams.getInstance(algId.getParameters());
718 Cipher cipher = createCipher(mode, password, algId);
733 private Cipher createCipher(int mode, char[] password, AlgorithmIdentifier algId) argument
736 PBES2Parameters alg = PBES2Parameters.getInstance(algId
607 unwrapKey( AlgorithmIdentifier algId, byte[] data, char[] password, boolean wrongPKCS12Zero) argument
681 cryptData( boolean forEncryption, AlgorithmIdentifier algId, char[] password, boolean wrongPKCS12Zero, byte[] data) argument
[all...]
/external/tpm2/
H A DCryptUtil.c483 TPM_ALG_ID algId, // IN: the hash algorithm to use
490 TEST_HASH(algId);
491 return _cpri__HashBlock(algId, blockSize, block, retSize, ret);
482 CryptHashBlock( TPM_ALG_ID algId, UINT16 blockSize, BYTE *block, UINT16 retSize, BYTE *ret ) argument
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 429 milliseconds