HomeSort by relevance Sort by last modified time
    Searched refs:HashAlgorithm (Results 1 - 25 of 26) sorted by null

1 2

  /external/conscrypt/platform/src/main/java/org/conscrypt/ct/
DigitallySigned.java 30 public enum HashAlgorithm {
39 private static HashAlgorithm[] values = values();
40 public static HashAlgorithm valueOf(int ord) {
65 private final HashAlgorithm hashAlgorithm;
69 public DigitallySigned(HashAlgorithm hashAlgorithm,
72 this.hashAlgorithm = hashAlgorithm;
77 public DigitallySigned(int hashAlgorithm,
    [all...]
  /external/libchrome/crypto/
signature_verifier.h 31 enum HashAlgorithm {
82 bool VerifyInitRSAPSS(HashAlgorithm hash_alg,
83 HashAlgorithm mask_hash_alg,
124 HashAlgorithm hash_alg_;
125 HashAlgorithm mask_hash_alg_;
hmac.h 29 enum HashAlgorithm {
34 explicit HMAC(HashAlgorithm hash_alg);
88 HashAlgorithm hash_alg_;
signature_creator.h 34 enum HashAlgorithm {
42 // instance outlives the created SignatureCreator. Uses the HashAlgorithm
45 HashAlgorithm hash_alg);
50 HashAlgorithm hash_alg,
signature_creator_nss.cc 21 SECOidTag ToNSSSigOid(SignatureCreator::HashAlgorithm hash_alg) {
31 SECOidTag ToNSSHashOid(SignatureCreator::HashAlgorithm hash_alg) {
52 HashAlgorithm hash_alg) {
71 HashAlgorithm hash_alg,
signature_verifier_nss.cc 23 HASH_HashType ToNSSHashType(SignatureVerifier::HashAlgorithm hash_alg) {
125 bool SignatureVerifier::VerifyInitRSAPSS(HashAlgorithm hash_alg,
126 HashAlgorithm mask_hash_alg,
hmac_nss.cc 24 HMAC::HMAC(HashAlgorithm hash_alg)
signature_creator_unittest.cc 106 key.get(), crypto::SignatureCreator::HashAlgorithm::SHA256,
  /device/linaro/bootloader/edk2/SecurityPkg/Hash2DxeCrypto/
Hash2DxeCrypto.c 140 @param[in] HashAlgorithm Points to the EFI_GUID which identifies the algorithm to use.
145 @retval EFI_UNSUPPORTED The algorithm specified by HashAlgorithm is not supported by this driver
146 or HashAlgorithm is null.
153 IN CONST EFI_GUID *HashAlgorithm,
162 @param[in] HashAlgorithm Points to the EFI_GUID which identifies the algorithm to use.
166 returned by GetHashSize() for the specified HashAlgorithm.
171 @retval EFI_UNSUPPORTED The algorithm specified by HashAlgorithm is not supported by this driver
172 or HashAlgorithm is Null.
181 IN CONST EFI_GUID *HashAlgorithm,
192 @param[in] HashAlgorithm Points to the EFI_GUID which identifies the algorithm to use.
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Hash2.h 71 @param[in] HashAlgorithm Points to the EFI_GUID which identifies the algorithm to use.
76 @retval EFI_UNSUPPORTED The algorithm specified by HashAlgorithm is not supported by this driver
77 or HashAlgorithm is null.
84 IN CONST EFI_GUID *HashAlgorithm,
93 @param[in] HashAlgorithm Points to the EFI_GUID which identifies the algorithm to use.
97 returned by GetHashSize() for the specified HashAlgorithm.
102 @retval EFI_UNSUPPORTED The algorithm specified by HashAlgorithm is not supported by this driver
103 or HashAlgorithm is Null.
112 IN CONST EFI_GUID *HashAlgorithm,
123 @param[in] HashAlgorithm Points to the EFI_GUID which identifies the algorithm to use.
    [all...]
Hash.h 104 @param[in] HashAlgorithm Points to the EFI_GUID which identifies the algorithm to use.
108 @retval EFI_INVALID_PARAMETER HashSize is NULL or HashAlgorithm is NULL.
109 @retval EFI_UNSUPPORTED The algorithm specified by HashAlgorithm is not supported
117 IN CONST EFI_GUID *HashAlgorithm,
125 @param[in] HashAlgorithm Points to the EFI_GUID which identifies the algorithm to use.
138 @retval EFI_INVALID_PARAMETER Message or Hash, HashAlgorithm is NULL or MessageSize is 0.
140 @retval EFI_UNSUPPORTED The algorithm specified by HashAlgorithm is not supported by this
148 IN CONST EFI_GUID *HashAlgorithm,
SmartCardEdge.h 559 @param[in] HashAlgorithm Hash algorithm used to hash the, one of:
569 HashAlgorithm.
580 @retval EFI_INVALID_PARAMETER HashAlgorithm is NULL.
581 @retval EFI_INVALID_PARAMETER HashAlgorithm is not valid.
599 IN EFI_GUID *HashAlgorithm,
617 @param[in] HashAlgorithm Hash algorithm used to hash the, one of:
640 @retval EFI_INVALID_PARAMETER HashAlgorithm is NULL.
641 @retval EFI_INVALID_PARAMETER HashAlgorithm is not valid.
662 IN EFI_GUID *HashAlgorithm,
  /device/linaro/bootloader/edk2/MdePkg/Include/Guid/
WinCertificate.h 113 EFI_GUID HashAlgorithm;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Hash/
Hash.h 92 IN CONST EFI_GUID *HashAlgorithm,
102 HashAlgorithm - Points to the EFI_GUID which identifies the algorithm to use.
108 EFI_UNSUPPORTED - The algorithm specified by HashAlgorithm is not supported
117 IN CONST EFI_GUID *HashAlgorithm,
130 HashAlgorithm - Points to the EFI_GUID which identifies the algorithm to use.
141 EFI_UNSUPPORTED - The algorithm specified by HashAlgorithm is not supported by this
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/
UefiMultiPhase.h 174 @param HashAlgorithm This is the hashing algorithm which was
192 EFI_GUID HashAlgorithm;
  /external/syslinux/gpxe/src/include/gpxe/efi/Uefi/
UefiMultiPhase.h 160 EFI_GUID HashAlgorithm;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winsafer.h 56 ALG_ID HashAlgorithm;
112 ALG_ID HashAlgorithm;
wincrypt.h     [all...]
  /external/conscrypt/platform/src/test/java/org/conscrypt/ct/
SerializationTest.java 43 assertEquals(DigitallySigned.HashAlgorithm.SHA256,
92 assertEquals(DigitallySigned.HashAlgorithm.SHA256, dst.getHashAlgorithm());
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/
CryptTs.c 41 /// hashAlgorithm AlgorithmIdentifier,
45 X509_ALGOR *HashAlgorithm;
54 ASN1_SIMPLE (TS_MESSAGE_IMPRINT, HashAlgorithm, X509_ALGOR),
276 HashAlgo = X509_ALGOR_dup (Imprint->HashAlgorithm);
  /system/core/fs_mgr/
fs_mgr_avb.cpp 130 enum HashAlgorithm {
136 HashAlgorithm hash_alg_;
  /external/r8/deps/
commons-compress-1.12.jar 
  /prebuilts/tools/common/m2/repository/org/apache/commons/commons-compress/1.12/
commons-compress-1.12.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
wdm.h     [all...]
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.50/
bcprov-jdk15on-1.50.jar 

Completed in 1890 milliseconds

1 2