HomeSort by relevance Sort by last modified time
    Searched defs:HMAC (Results 1 - 13 of 13) sorted by null

  /external/libchrome/crypto/
hmac.cc 5 #include "crypto/hmac.h"
17 #include "third_party/boringssl/src/include/openssl/hmac.h"
21 HMAC::HMAC(HashAlgorithm hash_alg) : hash_alg_(hash_alg), initialized_(false) {
26 HMAC::~HMAC() {
32 size_t HMAC::DigestLength() const {
44 bool HMAC::Init(const unsigned char* key, size_t key_length) {
45 // Init must not be called more than once on the same HMAC object.
52 bool HMAC::Init(SymmetricKey* key)
    [all...]
hmac.h 5 // Utility class for calculating the HMAC for a given message. We currently
26 class CRYPTO_EXPORT HMAC {
34 explicit HMAC(HashAlgorithm hash_alg);
35 ~HMAC();
37 // Returns the length of digest that this HMAC will create.
65 // Calculates the HMAC for the message in |data| using the algorithm supplied
66 // to the constructor and the key supplied to the Init method. The HMAC is
71 // Verifies that the HMAC for the message in |data| equals the HMAC provided
81 // Verifies a truncated HMAC, behaving identical to Verify(), excep
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
hmac.py 0 """HMAC (Keyed-Hashing for Message Authentication) Python module.
3 Implements the HMAC algorithm as described by RFC 2104.
11 # The size of the digests returned by HMAC depends on the underlying
12 # hashing module used. Use digest_size from the instance of HMAC instead.
15 # A unique object passed by HMAC.copy() to the HMAC constructor, in order
16 # that the latter return very quickly. HMAC("") in contrast is quite
20 class HMAC:
21 """RFC 2104 HMAC class. Also complies with RFC 4231.
25 blocksize = 64 # 512-bit HMAC; can be changed in subclasses.
    [all...]
  /external/python/cpython2/Lib/
hmac.py 0 """HMAC (Keyed-Hashing for Message Authentication) Python module.
3 Implements the HMAC algorithm as described by RFC 2104.
14 # The size of the digests returned by HMAC depends on the underlying
15 # hashing module used. Use digest_size from the instance of HMAC instead.
18 # A unique object passed by HMAC.copy() to the HMAC constructor, in order
19 # that the latter return very quickly. HMAC("") in contrast is quite
23 class HMAC:
24 """RFC 2104 HMAC class. Also complies with RFC 4231.
28 blocksize = 64 # 512-bit HMAC; can be changed in subclasses
    [all...]
  /external/python/cpython3/Lib/
hmac.py 0 """HMAC (Keyed-Hashing for Message Authentication) Python module.
3 Implements the HMAC algorithm as described by RFC 2104.
13 # The size of the digests returned by HMAC depends on the underlying
14 # hashing module used. Use digest_size from the instance of HMAC instead.
19 class HMAC:
20 """RFC 2104 HMAC class. Also complies with RFC 4231.
24 blocksize = 64 # 512-bit HMAC; can be changed in subclasses.
27 """Create a new HMAC object.
45 _warnings.warn("HMAC() without an explicit digestmod argument "
88 return "hmac-" + self.inner.nam
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
hmac.py 0 """HMAC (Keyed-Hashing for Message Authentication) Python module.
3 Implements the HMAC algorithm as described by RFC 2104.
11 # The size of the digests returned by HMAC depends on the underlying
12 # hashing module used. Use digest_size from the instance of HMAC instead.
15 # A unique object passed by HMAC.copy() to the HMAC constructor, in order
16 # that the latter return very quickly. HMAC("") in contrast is quite
20 class HMAC:
21 """RFC 2104 HMAC class. Also complies with RFC 4231.
25 blocksize = 64 # 512-bit HMAC; can be changed in subclasses
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
hmac.py 0 """HMAC (Keyed-Hashing for Message Authentication) Python module.
3 Implements the HMAC algorithm as described by RFC 2104.
11 # The size of the digests returned by HMAC depends on the underlying
12 # hashing module used. Use digest_size from the instance of HMAC instead.
15 # A unique object passed by HMAC.copy() to the HMAC constructor, in order
16 # that the latter return very quickly. HMAC("") in contrast is quite
20 class HMAC:
21 """RFC 2104 HMAC class. Also complies with RFC 4231.
25 blocksize = 64 # 512-bit HMAC; can be changed in subclasses
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
hmac.py 0 """HMAC (Keyed-Hashing for Message Authentication) Python module.
3 Implements the HMAC algorithm as described by RFC 2104.
11 # The size of the digests returned by HMAC depends on the underlying
12 # hashing module used. Use digest_size from the instance of HMAC instead.
15 # A unique object passed by HMAC.copy() to the HMAC constructor, in order
16 # that the latter return very quickly. HMAC("") in contrast is quite
20 class HMAC:
21 """RFC 2104 HMAC class. Also complies with RFC 4231.
25 blocksize = 64 # 512-bit HMAC; can be changed in subclasses
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
hmac.py 0 """HMAC (Keyed-Hashing for Message Authentication) Python module.
3 Implements the HMAC algorithm as described by RFC 2104.
11 # The size of the digests returned by HMAC depends on the underlying
12 # hashing module used. Use digest_size from the instance of HMAC instead.
15 # A unique object passed by HMAC.copy() to the HMAC constructor, in order
16 # that the latter return very quickly. HMAC("") in contrast is quite
20 class HMAC:
21 """RFC 2104 HMAC class. Also complies with RFC 4231.
25 blocksize = 64 # 512-bit HMAC; can be changed in subclasses
    [all...]
  /external/boringssl/src/crypto/fipsmodule/hmac/
hmac.c 57 #include <openssl/hmac.h>
68 uint8_t *HMAC(const EVP_MD *evp_md, const void *key, size_t key_len,
  /external/mdnsresponder/mDNSCore/
mDNSEmbeddedAPI.h     [all...]
  /system/tpm/trunks/
tpm_generated.cc     [all...]
  /prebuilts/misc/common/nimbus-jose-jwt/
nimbus-jose-jwt-4.33.jar 

Completed in 542 milliseconds