Home
last modified time | relevance | path

Searched defs:HashType (Results 1 – 25 of 88) sorted by relevance

1234

/aosp_15_r20/external/tink/go/testutil/
H A Dtestutil.go353 func NewECDSAParams(hashType commonpb.HashType, curve commonpb.EllipticCurveType, encoding ecdsapb.…
386 func NewRandomECDSAPrivateKey(hashType commonpb.HashType, curve commonpb.EllipticCurveType) *ecdsap…
395 func NewRandomECDSAPublicKey(hashType commonpb.HashType, curve commonpb.EllipticCurveType) *ecdsapb…
478 func NewAESGCMHKDFKey(keyVersion, keySize, derivedKeySize uint32, hkdfHashType commonpb.HashType, c…
492 func NewAESGCMHKDFKeyData(keySize, derivedKeySize uint32, hkdfHashType commonpb.HashType, ciphertex…
501 func NewAESGCMHKDFKeyFormat(keySize, derivedKeySize uint32, hkdfHashType commonpb.HashType, ciphert…
513 …HMACKey(keyVersion, keySize uint32, hkdfHashType commonpb.HashType, derivedKeySize uint32, hashTyp…
531 …AESCTRHMACKeyFormat(keySize uint32, hkdfHashType commonpb.HashType, derivedKeySize uint32, hashTyp…
547 func NewHMACParams(hashType commonpb.HashType, tagSize uint32) *hmacpb.HmacParams {
555 func NewHMACKey(hashType commonpb.HashType, tagSize uint32) *hmacpb.HmacKey {
[all …]
/aosp_15_r20/external/tink/python/tink/signature/
H A D_signature_key_templates.py43 hash_type: common_pb2.HashType,
61 hash_type: common_pb2.HashType, modulus_size: int,
78 sig_hash: common_pb2.HashType, mgf1_hash: common_pb2.HashType,
149 hash_type: common_pb2.HashType,
162 hash_type: common_pb2.HashType, modulus_size: int,
173 sig_hash: common_pb2.HashType, mgf1_hash: common_pb2.HashType,
/aosp_15_r20/external/tink/python/tink/streaming_aead/
H A D_streaming_aead_key_templates.py42 aes_key_size: int, hash_type: common_pb2.HashType, derived_key_size: int,
60 aes_key_size: int, hkdf_hash_type: common_pb2.HashType,
61 derived_key_size: int, mac_hash_type: common_pb2.HashType, tag_size: int,
141 aes_key_size: int, hash_type: common_pb2.HashType, derived_key_size: int,
153 aes_key_size: int, hkdf_hash_type: common_pb2.HashType,
154 derived_key_size: int, mac_hash_type: common_pb2.HashType, tag_size: int,
/aosp_15_r20/external/tink/go/streamingaead/
H A Dstreamingaead_key_templates.go120 func newAESGCMHKDFKeyTemplate(mainKeySize uint32, hkdfHashType commonpb.HashType, derivedKeySize, c…
141 …RHMACKeyTemplate(mainKeySize uint32, hkdfHashType commonpb.HashType, derivedKeySize uint32, tagAlg…
/aosp_15_r20/external/tink/go/signature/
H A Dsignature_key_templates.go150 func createECDSAKeyTemplate(hashType commonpb.HashType, curve commonpb.EllipticCurveType, encoding …
184 func create_RSA_SSA_PKCS1_Template(prefixType tinkpb.OutputPrefixType, hashType commonpb.HashType, …
203 func create_RSA_SSA_PSS_Template(prefixType tinkpb.OutputPrefixType, hashType commonpb.HashType, sa…
H A Drsa.go31 func validateRSAPubKeyParams(h commonpb.HashType, modSizeBits int, pubExponent []byte) error {
45 func hashName(h commonpb.HashType) string {
/aosp_15_r20/external/tink/python/tink/prf/
H A D_prf_key_templates.py49 key_size: int, hash_type: common_pb2.HashType) -> tink_pb2.KeyTemplate:
64 key_size: int, hash_type: common_pb2.HashType) -> tink_pb2.KeyTemplate:
/aosp_15_r20/external/tink/python/tink/mac/
H A D_mac_key_templates.py32 hash_type: common_pb2.HashType) -> tink_pb2.KeyTemplate:
73 hash_type: common_pb2.HashType) -> tink_pb2.KeyTemplate:
/aosp_15_r20/external/tink/go/prf/
H A Dprf_key_templates.go62 func createHMACPRFKeyTemplate(keySize uint32, hashType commonpb.HashType) *tinkpb.KeyTemplate {
82 func createHKDFPRFKeyTemplate(keySize uint32, hashType commonpb.HashType, salt []byte) *tinkpb.KeyT…
/aosp_15_r20/external/tink/python/tink/hybrid/
H A D_hybrid_key_templates.py34 ec_point_format: common_pb2.EcPointFormat, hash_type: common_pb2.HashType,
141 ec_point_format: common_pb2.EcPointFormat, hash_type: common_pb2.HashType,
/aosp_15_r20/external/tink/java_src/src/main/java/com/google/crypto/tink/prf/
H A DHmacPrfParameters.java39 public static final class HashType { class in HmacPrfParameters
48 private HashType(String name) { in HashType() method in HmacPrfParameters.HashType
H A DHkdfPrfParameters.java40 public static final class HashType { class in HkdfPrfParameters
49 private HashType(String name) { in HashType() method in HkdfPrfParameters.HashType
/aosp_15_r20/external/tink/java_src/src/main/java/com/google/crypto/tink/streamingaead/
H A DAesGcmHkdfStreamingParameters.java33 public static final class HashType { class in AesGcmHkdfStreamingParameters
40 private HashType(String name) { in HashType() method in AesGcmHkdfStreamingParameters.HashType
H A DAesCtrHmacStreamingParameters.java34 public static final class HashType { class in AesCtrHmacStreamingParameters
41 private HashType(String name) { in HashType() method in AesCtrHmacStreamingParameters.HashType
/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/prf/
H A DHmacPrfProtoSerializationTest.java58 public static final class HashType { class in HmacPrfProtoSerializationTest
62 public HashType( in HashType() method in HmacPrfProtoSerializationTest.HashType
H A DHkdfPrfProtoSerializationTest.java60 public static final class HashType { class in HkdfPrfProtoSerializationTest
64 public HashType( in HashType() method in HkdfPrfProtoSerializationTest.HashType
/aosp_15_r20/external/tink/java_src/src/main/java/com/google/crypto/tink/signature/
H A DRsaSsaPkcs1Parameters.java65 public static final class HashType { class in RsaSsaPkcs1Parameters
72 private HashType(String name) { in HashType() method in RsaSsaPkcs1Parameters.HashType
H A DEcdsaParameters.java123 public static final class HashType { class in EcdsaParameters
130 private HashType(String name) { in HashType() method in EcdsaParameters.HashType
H A DRsaSsaPssParameters.java60 public static final class HashType { class in RsaSsaPssParameters
67 private HashType(String name) { in HashType() method in RsaSsaPssParameters.HashType
/aosp_15_r20/external/private-join-and-compute/java/com/google/privacy/private_join_and_compute/encryption/commutative/
H A DEcCommutativeCipherBase.java32 public enum HashType { enum in EcCommutativeCipherBase
39 private HashType(int hashBitLength) { in HashType() method in EcCommutativeCipherBase.HashType
/aosp_15_r20/external/tink/java_src/src/main/java/com/google/crypto/tink/mac/
H A DHmacParameters.java62 public static final class HashType { class in HmacParameters
71 private HashType(String name) { in HashType() method in HmacParameters.HashType
/aosp_15_r20/external/tink/python/tink/aead/
H A D_aead_key_templates.py100 hash_type: common_pb2.HashType,
254 hash_type: common_pb2.HashType,
/aosp_15_r20/external/tink/java_src/src/main/java/com/google/crypto/tink/aead/
H A DAesCtrHmacAeadParameters.java55 public static final class HashType { class in AesCtrHmacAeadParameters
64 private HashType(String name) { in HashType() method in AesCtrHmacAeadParameters.HashType
/aosp_15_r20/external/tink/java_src/src/main/java/com/google/crypto/tink/hybrid/
H A DEciesParameters.java94 public static final class HashType { class in EciesParameters
103 private HashType(String name) { in HashType() method in EciesParameters.HashType
/aosp_15_r20/external/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h259 IndexedInstrProf::HashT HashType; variable
267 InstrProfLookupTrait(IndexedInstrProf::HashT HashType, unsigned FormatVersion) in InstrProfLookupTrait()

1234