Home
last modified time | relevance | path

Searched refs:algID (Results 1 – 16 of 16) sorted by relevance

/external/ms-tpm-20-ref/TPMCmd/tpm/src/support/
DAlgorithmCap.c45 TPM_ALG_ID algID; member
171 TPM_ALG_ID algID, // IN: the starting algorithm ID in AlgorithmCapGetImplemented() argument
194 if(s_algorithms[i].algID < algID) in AlgorithmCapGetImplemented()
200 algList->algProperties[algList->count].alg = s_algorithms[i].algID; in AlgorithmCapGetImplemented()
233 SET_BIT(s_algorithms[index].algID, *implemented); in AlgorithmGetImplementedVector()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
DBCRSAPrivateKey.java45 AlgorithmIdentifier algID, in BCRSAPrivateKey() argument
48 this.algorithmIdentifier = algID; in BCRSAPrivateKey()
49 this.algorithmIdentifierEnc = getEncoding(algID); in BCRSAPrivateKey()
72 BCRSAPrivateKey(AlgorithmIdentifier algID, org.bouncycastle.asn1.pkcs.RSAPrivateKey key) in BCRSAPrivateKey() argument
74 this.algorithmIdentifier = algID; in BCRSAPrivateKey()
75 this.algorithmIdentifierEnc = getEncoding(algID); in BCRSAPrivateKey()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jcajce/provider/asymmetric/rsa/
DBCRSAPrivateKey.java49 AlgorithmIdentifier algID, in BCRSAPrivateKey() argument
52 this.algorithmIdentifier = algID; in BCRSAPrivateKey()
53 this.algorithmIdentifierEnc = getEncoding(algID); in BCRSAPrivateKey()
76 …BCRSAPrivateKey(AlgorithmIdentifier algID, com.android.internal.org.bouncycastle.asn1.pkcs.RSAPriv… in BCRSAPrivateKey() argument
78 this.algorithmIdentifier = algID; in BCRSAPrivateKey()
79 this.algorithmIdentifierEnc = getEncoding(algID); in BCRSAPrivateKey()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/provider/asymmetric/rsa/
DBCRSAPrivateKey.java49 AlgorithmIdentifier algID, in BCRSAPrivateKey() argument
52 this.algorithmIdentifier = algID; in BCRSAPrivateKey()
53 this.algorithmIdentifierEnc = getEncoding(algID); in BCRSAPrivateKey()
76 …BCRSAPrivateKey(AlgorithmIdentifier algID, com.android.org.bouncycastle.asn1.pkcs.RSAPrivateKey ke… in BCRSAPrivateKey() argument
78 this.algorithmIdentifier = algID; in BCRSAPrivateKey()
79 this.algorithmIdentifierEnc = getEncoding(algID); in BCRSAPrivateKey()
/external/ms-tpm-20-ref/TPMCmd/tpm/include/prototypes/
DAlgorithmCap_fp.h52 TPM_ALG_ID algID, // IN: the starting algorithm ID
DCryptUtil_fp.h138 TPM_ALG_ID algID // IN: algorithm ID
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
DPublicKeyFactory.java156 AlgorithmIdentifier algID = keyInfo.getAlgorithm(); in createKey() local
158 …icKeyInfoConverter converter = (SubjectPublicKeyInfoConverter)converters.get(algID.getAlgorithm()); in createKey()
161 …throw new IOException("algorithm identifier in public key not recognised: " + algID.getAlgorithm()… in createKey()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/util/
DPublicKeyFactory.java158 AlgorithmIdentifier algID = keyInfo.getAlgorithm(); in createKey() local
160 …icKeyInfoConverter converter = (SubjectPublicKeyInfoConverter)converters.get(algID.getAlgorithm()); in createKey()
163 …throw new IOException("algorithm identifier in public key not recognised: " + algID.getAlgorithm()… in createKey()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/util/
DPublicKeyFactory.java158 AlgorithmIdentifier algID = keyInfo.getAlgorithm(); in createKey() local
160 …icKeyInfoConverter converter = (SubjectPublicKeyInfoConverter)converters.get(algID.getAlgorithm()); in createKey()
163 …throw new IOException("algorithm identifier in public key not recognised: " + algID.getAlgorithm()… in createKey()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DJCEECPublicKey.java185 AlgorithmIdentifier algID = info.getAlgorithm(); in populateFromPubKeyInfo() local
234 X962Parameters params = X962Parameters.getInstance(algID.getParameters()); in populateFromPubKeyInfo()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jce/provider/
DJCEECPublicKey.java189 AlgorithmIdentifier algID = info.getAlgorithm(); in populateFromPubKeyInfo() local
238 X962Parameters params = X962Parameters.getInstance(algID.getParameters()); in populateFromPubKeyInfo()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/jce/provider/
DJCEECPublicKey.java189 AlgorithmIdentifier algID = info.getAlgorithm(); in populateFromPubKeyInfo() local
238 X962Parameters params = X962Parameters.getInstance(algID.getParameters()); in populateFromPubKeyInfo()
/external/boringssl/src/ssl/test/runner/
Dhandshake_messages.go1045 var algID uint16
1046 if !algIDs.readU16(&algID) {
1049 if _, ok := seen[algID]; ok {
1052 seen[algID] = struct{}{}
1053 m.compressedCertAlgs = append(m.compressedCertAlgs, algID)
1995 algID uint16 member
2008 certificate.addU16(m.algID)
2021 if !reader.readU16(&m.algID) ||
Dhandshake_client.go1003 alg, ok := c.config.CertCompressionAlgs[compressedCertMsg.algID]
1006 …t.Errorf("tls: received certificate compressed with unknown algorithm %x", compressedCertMsg.algID)
1012 …turn fmt.Errorf("tls: failed to decompress certificate with algorithm %x", compressedCertMsg.algID)
1024 …ted := c.config.Bugs.ExpectedCompressedCert; expected != 0 && expected != compressedCertMsg.algID {
1025 … certificate compressed with algorithm %x, but message used %x", expected, compressedCertMsg.algID)
Dhandshake_server.go946 algID: id,
/external/ms-tpm-20-ref/TPMCmd/tpm/src/crypt/
DCryptUtil.c491 TPM_ALG_ID algID // IN: algorithm ID in CryptIsAsymAlgorithm() argument
494 switch(algID) in CryptIsAsymAlgorithm()