Home
last modified time | relevance | path

Searched refs:_salt (Results 1 – 6 of 6) sorted by relevance

/external/python/cryptography/src/cryptography/hazmat/primitives/kdf/
Dpbkdf2.py41 self._salt = salt
54 self._salt,
Dscrypt.py49 self._salt = salt
62 key_material, self._salt, self._length, self._n, self._r, self._p
Dhkdf.py39 self._salt = salt
46 h = hmac.HMAC(self._salt, self._algorithm, backend=self._backend)
Dconcatkdf.py108 self._salt = salt
119 return hmac.HMAC(self._salt, self._algorithm, self._backend)
/external/openthread/tests/scripts/thread-cert/
Dnet_crypto.py95 _salt = b'Thread' variable in CryptoMaterialCreator
118 s = struct.pack(">L", sequence_counter) + self._salt
/external/rust/beto-rust/nearby/crypto/crypto_provider_stubs/src/
Dlib.rs80 fn new(_salt: Option<&[u8]>, _ikm: &[u8]) -> Self { in new()