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

  /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/hmac/
hmac.c 57 #include <openssl/hmac.h>
65 uint8_t *HMAC(const EVP_MD *evp_md, const void *key, size_t key_len,
  /external/mdnsresponder/mDNSCore/
mDNSEmbeddedAPI.h     [all...]

Completed in 260 milliseconds