HomeSort by relevance Sort by last modified time
    Searched refs:Algorithm (Results 26 - 50 of 93) sorted by null

12 3 4

  /hardware/interfaces/keymaster/3.0/vts/functional/
keymaster_tags.h 26 * and then to assign Algorithm::RSA to algorithm element of its union. But because the user
56 * auto param = Authorization(TAG_ALGORITM, Algorithm::RSA);
150 DECLARE_TYPED_TAG(ALGORITHM);
217 MAKE_TAG_ENUM_VALUE_ACCESSOR(TAG_ALGORITHM, f.algorithm)
353 inline const char* stringify(Algorithm algorithm) {
354 switch (algorithm) {
355 case Algorithm::RSA:
357 case Algorithm::EC
    [all...]
key_param_output.cpp 46 ::std::ostream& operator<<(::std::ostream& os, Algorithm value) {
81 case Tag::ALGORITHM:
82 return os << param.f.algorithm;
keymaster_hidl_hal_test.cpp 139 case Tag::ALGORITHM:
140 return a.f.algorithm == b.f.algorithm;
    [all...]
  /external/curl/tests/
stunnel.pem 64 Signature Algorithm: sha1WithRSAEncryption
71 Public Key Algorithm: rsaEncryption
107 Signature Algorithm: sha1WithRSAEncryption
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiCHAP.c 29 length of the hash value for the hashing algorithm chosen.
162 UINTN Algorithm;
250 Algorithm = IScsiNetNtoi (Value);
251 if (Algorithm != ISCSI_CHAP_ALGORITHM_MD5) {
253 // Unsupported algorithm is chosen by target.
  /hardware/interfaces/keymaster/3.0/
types.hal 42 ALGORITHM = TagType:ENUM | 2, /** Algorithm. */
53 /** Algorithm-specific. */
156 enum Algorithm : uint32_t {
189 * provide all possible combinations of algorithm and padding, only the
379 Algorithm algorithm;
  /prebuilts/go/darwin-x86/src/crypto/x509/
x509.go 52 algo := getPublicKeyAlgorithmFromOID(pki.Algorithm.Algorithm)
54 return nil, errors.New("x509: unknown public key algorithm")
69 publicKeyAlgorithm.Algorithm = oidPublicKeyRSA
81 publicKeyAlgorithm.Algorithm = oidPublicKeyECDSA
156 Algorithm pkix.AlgorithmIdentifier
246 // RFC 3279 2.2.3 ECDSA Signature Algorithm
268 // RFC 5758 3.2 ECDSA Signature Algorithm
358 Algorithm: hashOID,
364 Algorithm: oidMGF1
    [all...]
verify_test.go 318 if expected := "algorithm unimplemented"; !strings.Contains(err.Error(), expected) {
543 // algorithm in the certificate contains a nonsense OID.
    [all...]
  /prebuilts/go/linux-x86/src/crypto/x509/
x509.go 52 algo := getPublicKeyAlgorithmFromOID(pki.Algorithm.Algorithm)
54 return nil, errors.New("x509: unknown public key algorithm")
69 publicKeyAlgorithm.Algorithm = oidPublicKeyRSA
81 publicKeyAlgorithm.Algorithm = oidPublicKeyECDSA
156 Algorithm pkix.AlgorithmIdentifier
246 // RFC 3279 2.2.3 ECDSA Signature Algorithm
268 // RFC 5758 3.2 ECDSA Signature Algorithm
358 Algorithm: hashOID,
364 Algorithm: oidMGF1
    [all...]
verify_test.go 318 if expected := "algorithm unimplemented"; !strings.Contains(err.Error(), expected) {
543 // algorithm in the certificate contains a nonsense OID.
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/des/
const.go 6 // Triple Data Encryption Algorithm (TDEA) as defined
  /prebuilts/go/linux-x86/src/crypto/des/
const.go 6 // Triple Data Encryption Algorithm (TDEA) as defined
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
BlockIoCrypto.h 47 // GUID of the algorithm.
49 EFI_GUID Algorithm;
51 // Specifies KeySizein bits used with this Algorithm.
55 // Specifies bitmask of block sizes supported by this algorithm.
232 The configuration table index will refer to the combination ofKeyOwnerGuid, Algorithm, and
241 CryptoKey specifies algorithm-specific key material to use within parameters of selected crypto
  /external/libchrome/crypto/
symmetric_key_unittest.cc 69 crypto::SymmetricKey::Algorithm algorithm; member in struct:PBKDF2TestVector
85 test_data.algorithm, test_data.password, test_data.salt,
  /external/lzma/CS/7zip/
ICoder.cs 129 /// Specifies number of algorithm.
131 Algorithm,
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
Decompress.c 2 Decompressor. Algorithm Ported from OPSD code (Decomp.asm) for Efi and Tiano
3 compress algorithm.
21 // Decompression algorithm begins here
927 IN UINTN Algorithm
935 switch (Algorithm) {
  /prebuilts/go/darwin-x86/src/crypto/x509/pkix/
pkix.go 18 Algorithm asn1.ObjectIdentifier
  /prebuilts/go/linux-x86/src/crypto/x509/pkix/
pkix.go 18 Algorithm asn1.ObjectIdentifier
  /system/security/keystore/
keymaster_enforcement.cpp 78 auto algorithm = auth_set.GetTagValue(TAG_ALGORITHM); local
79 return algorithm.isOk() &&
80 (algorithm.value() == Algorithm::RSA || algorithm.value() == Algorithm::EC);
304 case Tag::ALGORITHM:
319 /* Algorithm specific parameters not used for access control. */
keystore_client_impl.cpp 65 // The encryption algorithm is AES-256-CBC with PKCS #7 padding and a random
66 // IV. The authentication algorithm is HMAC-SHA256 and is computed over the
451 auto algorithm = NullOrOr(hardware_enforced_characteristics.GetTagValue(TAG_ALGORITHM), local
453 if (!algorithm.isOk() || algorithm.value() != Algorithm::AES) {
454 ALOGW("Found encryption key with invalid algorithm.");
492 auto algorithm = NullOrOr(hardware_enforced_characteristics.GetTagValue(TAG_ALGORITHM), local
494 if (!algorithm.isOk() || algorithm.value() != Algorithm::HMAC)
    [all...]
key_store_service.cpp 24 #include <algorithm>
377 params.push_back(TAG_ALGORITHM, Algorithm::EC);
388 params.push_back(TAG_ALGORITHM, Algorithm::RSA);
455 params.push_back(TAG_ALGORITHM, Algorithm::RSA);
458 params.push_back(TAG_ALGORITHM, Algorithm::EC);
1804 auto algorithm = getKeyAlgoritmFromKeyCharacteristics(characteristics); local
    [all...]
  /system/vold/
Keymaster.cpp 228 .Authorization(TAG_ALGORITHM, Algorithm::RSA)
  /external/avb/
avbtool 61 class Algorithm(object):
62 """Contains details about an algorithm.
94 'NONE': Algorithm(
101 'SHA256_RSA2048': Algorithm(
115 'SHA256_RSA4096': Algorithm(
129 'SHA256_RSA8192': Algorithm(
143 'SHA512_RSA2048': Algorithm(
157 'SHA512_RSA4096': Algorithm(
171 'SHA512_RSA8192': Algorithm(
274 Euclidian algorithm
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/asn1/
asn1_test.go 528 Algorithm ObjectIdentifier
545 Algorithm AlgorithmIdentifier
632 SignatureAlgorithm: AlgorithmIdentifier{Algorithm: ObjectIdentifier{1, 2, 840, 113549, 1, 1, 5}},
654 Algorithm: AlgorithmIdentifier{Algorithm: ObjectIdentifier{1, 2, 840, 113549, 1, 1, 1}},
669 SignatureAlgorithm: AlgorithmIdentifier{Algorithm: ObjectIdentifier{1, 2, 840, 113549, 1, 1, 5}},
    [all...]
  /prebuilts/go/linux-x86/src/encoding/asn1/
asn1_test.go 528 Algorithm ObjectIdentifier
545 Algorithm AlgorithmIdentifier
632 SignatureAlgorithm: AlgorithmIdentifier{Algorithm: ObjectIdentifier{1, 2, 840, 113549, 1, 1, 5}},
654 Algorithm: AlgorithmIdentifier{Algorithm: ObjectIdentifier{1, 2, 840, 113549, 1, 1, 1}},
669 SignatureAlgorithm: AlgorithmIdentifier{Algorithm: ObjectIdentifier{1, 2, 840, 113549, 1, 1, 5}},
    [all...]

Completed in 535 milliseconds

12 3 4