HomeSort by relevance Sort by last modified time
    Searched defs:hmac (Results 26 - 37 of 37) sorted by null

12

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
smtplib.py 48 import hmac namespace
563 response = user + " " + hmac.HMAC(password, challenge).hexdigest()
imaplib.py 523 import hmac namespace
524 return self.user + " " + hmac.HMAC(self.password, challenge).hexdigest()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
smtplib.py 48 import hmac namespace
563 response = user + " " + hmac.HMAC(password, challenge).hexdigest()
imaplib.py 523 import hmac namespace
524 return self.user + " " + hmac.HMAC(self.password, challenge).hexdigest()
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
stun.cc 195 // Adjust the length parameter in stun message to calculate HMAC.
210 char hmac[kStunMessageIntegritySize]; local
214 hmac, sizeof(hmac));
215 ASSERT(ret == sizeof(hmac));
216 if (ret != sizeof(hmac))
219 // Comparing the calculated HMAC with the one present in the message.
221 hmac, sizeof(hmac)) == 0);
237 // Calculate the HMAC for the message
244 char hmac[kStunMessageIntegritySize]; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
t1_enc.c 144 #include <openssl/hmac.h>
554 /* Needed for "composite" AEADs, such as RC4-HMAC-MD5 */
954 EVP_MD_CTX hmac, *mac_ctx; local
983 EVP_MD_CTX_copy(&hmac,hash);
984 mac_ctx = &hmac;
1042 EVP_MD_CTX_cleanup(&hmac);
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
KnownHosts.java 24 import ch.ethz.ssh2.crypto.digest.HMAC;
184 HMAC hmac = new HMAC(sha1, salt, salt.length); local
186 hmac.update(StringEncoder.GetBytes(hostname));
188 byte[] dig = new byte[hmac.getDigestLength()];
190 hmac.digest(dig);
  /external/openssl/ssl/
t1_enc.c 144 #include <openssl/hmac.h>
554 /* Needed for "composite" AEADs, such as RC4-HMAC-MD5 */
954 EVP_MD_CTX hmac, *mac_ctx; local
983 EVP_MD_CTX_copy(&hmac,hash);
984 mac_ctx = &hmac;
1042 EVP_MD_CTX_cleanup(&hmac);
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 52 import hmac namespace
530 self.challenge['algorithm'] = self.challenge.get('algorithm', 'HMAC-SHA-1')
531 if self.challenge['algorithm'] not in ['HMAC-SHA-1', 'HMAC-MD5']:
536 if self.challenge['algorithm'] == 'HMAC-MD5':
558 request_digest = hmac.new(self.key, request_digest, self.hashmod).hexdigest().lower()
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 52 import hmac namespace
530 self.challenge['algorithm'] = self.challenge.get('algorithm', 'HMAC-SHA-1')
531 if self.challenge['algorithm'] not in ['HMAC-SHA-1', 'HMAC-MD5']:
536 if self.challenge['algorithm'] == 'HMAC-MD5':
558 request_digest = hmac.new(self.key, request_digest, self.hashmod).hexdigest().lower()
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
speed.c 144 #include <openssl/hmac.h>
251 "md2","mdc2","md4","md5","hmac(md5)","sha1","rmd160","rc4",
387 unsigned char hmac[MD5_DIGEST_LENGTH]; local
798 if (strcmp(*argv,"hmac") == 0) doit[D_HMAC]=1;
1024 BIO_printf(bio_err,"hmac ");
    [all...]
  /external/openssl/apps/
speed.c 144 #include <openssl/hmac.h>
251 "md2","mdc2","md4","md5","hmac(md5)","sha1","rmd160","rc4",
387 unsigned char hmac[MD5_DIGEST_LENGTH]; local
798 if (strcmp(*argv,"hmac") == 0) doit[D_HMAC]=1;
1024 BIO_printf(bio_err,"hmac ");
    [all...]

Completed in 6028 milliseconds

12