Home
last modified time | relevance | path

Searched refs:pbkdf2_hmac_supported (Results 1 – 5 of 5) sorted by relevance

/external/python/cryptography/tests/hazmat/primitives/
Dtest_pbkdf2hmac_vectors.py17 only_if=lambda backend: backend.pbkdf2_hmac_supported(hashes.SHA1()),
/external/python/cryptography/src/cryptography/hazmat/primitives/kdf/
Dpbkdf2.py25 if not backend.pbkdf2_hmac_supported(algorithm):
/external/python/cryptography/src/cryptography/hazmat/backends/
Dinterfaces.py82 def pbkdf2_hmac_supported(self, algorithm): member in PBKDF2HMACBackend
/external/python/cryptography/docs/hazmat/backends/
Dinterfaces.rst182 .. method:: pbkdf2_hmac_supported(algorithm)
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Dbackend.py292 def pbkdf2_hmac_supported(self, algorithm): member in Backend