/external/python/cryptography/src/cryptography/hazmat/primitives/kdf/ |
D | hkdf.py | 32 self._algorithm = algorithm 35 salt = b"\x00" * self._algorithm.digest_size 43 self._hkdf_expand = HKDFExpand(self._algorithm, length, info, backend) 46 h = hmac.HMAC(self._salt, self._algorithm, backend=self._backend) 69 self._algorithm = algorithm 95 while self._algorithm.digest_size * (len(output) - 1) < self._length: 96 h = hmac.HMAC(key_material, self._algorithm, backend=self._backend)
|
D | concatkdf.py | 61 self._algorithm = algorithm 76 return hashes.Hash(self._algorithm, self._backend) 97 self._algorithm = algorithm 119 return hmac.HMAC(self._salt, self._algorithm, self._backend)
|
D | kbkdf.py | 95 self._algorithm = algorithm 124 rounds = -(-self._length // self._algorithm.digest_size) 137 h = hmac.HMAC(key_material, self._algorithm, backend=self._backend)
|
D | pbkdf2.py | 38 self._algorithm = algorithm 52 self._algorithm,
|
D | x963kdf.py | 39 self._algorithm = algorithm 61 h = hashes.Hash(self._algorithm, self._backend)
|
/external/python/asn1crypto/asn1crypto/ |
D | keys.py | 716 _algorithm = None variable in PrivateKeyInfo 777 container._algorithm = algorithm 888 if self._algorithm is None: 889 self._algorithm = self['private_key_algorithm']['algorithm'].native 890 return self._algorithm 1072 _algorithm = None variable in PublicKeyInfo 1206 if self._algorithm is None: 1207 self._algorithm = self['algorithm']['algorithm'].native 1208 return self._algorithm
|
/external/python/cryptography/src/cryptography/hazmat/primitives/ |
D | cmac.py | 29 self._algorithm = algorithm 33 self._ctx = self._backend.create_cmac_ctx(self._algorithm) 63 self._algorithm, backend=self._backend, ctx=self._ctx.copy()
|
D | hmac.py | 30 self._algorithm = algorithm
|
D | hashes.py | 82 self._algorithm = algorithm
|
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/ |
D | rsa.py | 97 padding._mgf._algorithm 101 oaep_md = backend._evp_md_non_null_from_algorithm(padding._algorithm) 214 padding._mgf._algorithm 309 self._algorithm = algorithm 310 self._hash_ctx = hashes.Hash(self._algorithm, self._backend) 319 self._algorithm, 338 self._algorithm = algorithm 339 self._hash_ctx = hashes.Hash(self._algorithm, self._backend) 348 self._algorithm,
|
D | cmac.py | 28 self._algorithm = algorithm 77 return _CMACContext(self._backend, self._algorithm, ctx=copied_ctx)
|
D | dsa.py | 56 self._algorithm = algorithm 58 self._hash_ctx = hashes.Hash(self._algorithm, self._backend) 76 self._algorithm = algorithm 77 self._hash_ctx = hashes.Hash(self._algorithm, self._backend)
|
D | utils.py | 40 algorithm = algorithm._algorithm
|
D | hashes.py | 16 self._algorithm = algorithm
|
D | hmac.py | 20 self._algorithm = algorithm
|
D | ec.py | 235 self._backend, data, signature_algorithm._algorithm 335 self._backend, data, signature_algorithm._algorithm
|
D | backend.py | 796 return self.hash_supported(padding._mgf._algorithm) 799 self._oaep_hash_supported(padding._mgf._algorithm) 800 and self._oaep_hash_supported(padding._algorithm) 1706 builder._response._algorithm
|
/external/python/cryptography/src/cryptography/hazmat/primitives/asymmetric/ |
D | padding.py | 59 self._algorithm = algorithm 70 self._algorithm = algorithm
|
D | utils.py | 38 self._algorithm = algorithm
|
D | ec.py | 319 self._algorithm = algorithm
|
/external/python/cryptography/src/cryptography/hazmat/primitives/twofactor/ |
D | hotp.py | 45 self._algorithm = algorithm 58 ctx = hmac.HMAC(self._key, self._algorithm, self._backend)
|
D | utils.py | 16 ("algorithm", hotp._algorithm.name.upper()),
|
/external/python/cryptography/src/cryptography/x509/ |
D | ocsp.py | 147 self._algorithm = algorithm
|
/external/python/cryptography/tests/hazmat/primitives/ |
D | test_rsa.py | 1484 assert mgf._algorithm == algorithm
|
/external/libabigail/tests/data/test-read-dwarf/ |
D | test12-pr18844.so.abi | 26614 …<var-decl name='_algorithm' type-id='type-id-3608' visibility='default' filepath='src/mongo/db/rep…
|