Searched refs:expected_key (Results 1 – 11 of 11) sorted by relevance
/external/python/cryptography/src/cryptography/hazmat/primitives/kdf/ |
D | hkdf.py | 49 def verify(self, key_material, expected_key): argument 50 if not constant_time.bytes_eq(self.derive(key_material), expected_key): 108 def verify(self, key_material, expected_key): argument 109 if not constant_time.bytes_eq(self.derive(key_material), expected_key):
|
D | concatkdf.py | 81 def verify(self, key_material, expected_key): argument 82 if not constant_time.bytes_eq(self.derive(key_material), expected_key): 122 def verify(self, key_material, expected_key): argument 123 if not constant_time.bytes_eq(self.derive(key_material), expected_key):
|
D | pbkdf2.py | 53 def verify(self, key_material, expected_key): argument 55 if not constant_time.bytes_eq(derived_key, expected_key):
|
D | scrypt.py | 60 def verify(self, key_material, expected_key): argument 62 if not constant_time.bytes_eq(derived_key, expected_key):
|
D | x963kdf.py | 66 def verify(self, key_material, expected_key): argument 67 if not constant_time.bytes_eq(self.derive(key_material), expected_key):
|
D | kbkdf.py | 143 def verify(self, key_material, expected_key): argument 144 if not constant_time.bytes_eq(self.derive(key_material), expected_key):
|
D | __init__.py | 22 def verify(self, key_material, expected_key): argument
|
/external/python/cryptography/docs/hazmat/primitives/ |
D | key-derivation-functions.rst | 110 .. method:: verify(key_material, expected_key) 114 :param bytes expected_key: The expected result of deriving a new key, 127 ``key_material`` generates the same key as the ``expected_key``, and 212 .. method:: verify(key_material, expected_key) 216 :param bytes expected_key: The expected result of deriving a new key, 229 ``key_material`` generates the same key as the ``expected_key``, and 300 .. method:: verify(key_material, expected_key) 304 :param bytes expected_key: The expected result of deriving a new key, 319 ``key_material`` generates the same key as the ``expected_key``, and 388 .. method:: verify(key_material, expected_key) [all …]
|
/external/python/apitools/apitools/base/py/testing/ |
D | mock.py | 75 expected_key, expected_request = expected_call 89 if expected_key != received_key: 95 expected_key=expected_key, 108 key=expected_key,
|
/external/v8/src/objects/ |
D | value-serializer.cc | 2031 Handle<String> expected_key = transitions.ExpectedTransitionKey(); in ReadJSObjectProperties() local 2032 if (!expected_key.is_null() && ReadExpectedString(expected_key)) { in ReadJSObjectProperties() 2033 key = expected_key; in ReadJSObjectProperties()
|
/external/protobuf/src/google/protobuf/ |
D | map_test.cc | 2282 int expected_key = 0; in TEST() local 2291 if (is_key) expected_key = static_cast<int>(c); in TEST() 2303 ASSERT_EQ(expected_key, message.map_int32_int32().begin()->first); in TEST()
|