Searched refs:HMAC (Results 1 - 25 of 44) sorted by relevance

12

/macosx-10.10/CPAN-56/Modules/Digest-HMAC-1.03/
H A DMakefile1 NAME = Digest-HMAC
/macosx-10.10/ruby-106/ruby/test/openssl/
H A Dtest_hmac.rb8 @h1 = OpenSSL::HMAC.new(@key, @digest.new)
9 @h2 = OpenSSL::HMAC.new(@key, "MD5")
20 assert_equal(OpenSSL::HMAC.digest(@digest.new, @key, @data), @h1.digest, "digest")
21 assert_equal(OpenSSL::HMAC.hexdigest(@digest.new, @key, @data), @h1.hexdigest, "hexdigest")
23 assert_equal(OpenSSL::HMAC.digest("MD5", @key, @data), @h2.digest, "digest")
24 assert_equal(OpenSSL::HMAC.hexdigest("MD5", @key, @data), @h2.hexdigest, "hexdigest")
/macosx-10.10/WebCore-7600.1.25/crypto/
H A DCryptoAlgorithmIdentifier.h46 HMAC, member in class:WebCore::CryptoAlgorithmIdentifier
H A DCryptoKey.h44 HMAC, member in class:WebCore::CryptoKeyClass
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Dhmac.h48 #define HMAC hc_HMAC macro
79 void * HMAC(const EVP_MD *evp_md, const void *key, size_t key_len,
H A Dpkcs5.c120 HMAC(md, password, password_len, data, datalen,
125 HMAC(md, password, password_len, tmpcksum, checksumsize,
H A Dhmac.c149 HMAC(const EVP_MD *md, function
/macosx-10.10/OpenSSH-189/osslshim/ossl/
H A Dossl-hmac.h71 #define HMAC ossl_HMAC macro
101 void *HMAC(const EVP_MD *evp_md, const void *key, size_t key_len,
H A Dossl-hmac.c174 HMAC(const EVP_MD *md, function
/macosx-10.10/OpenSSL098-52/src/crypto/hmac/
H A Dhmac.h64 #error HMAC is disabled.
99 unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len,
H A Dhmactest.c68 printf("No HMAC support\n");
145 p=pt(HMAC(EVP_md5(),
152 printf("error calculating HMAC on %d entry'\n",i);
H A Dhmac.c157 unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len, function
/macosx-10.10/OpenSSL098-52/src/include/openssl/
H A Dhmac.h64 #error HMAC is disabled.
99 unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len,
/macosx-10.10/WebCore-7600.1.25/crypto/keys/
H A DCryptoKeyHMAC.h47 virtual CryptoKeyClass keyClass() const override { return CryptoKeyClass::HMAC; }
65 return key.keyClass() == CryptoKeyClass::HMAC;
H A DCryptoKeyHMAC.cpp39 : CryptoKey(CryptoAlgorithmIdentifier::HMAC, CryptoKeyType::Secret, extractable, usage)
/macosx-10.10/ruby-106/ruby/ext/digest/lib/digest/
H A Dhmac.rb13 warn "use of the experimetal library 'digest/hmac' is discouraged; require 'openssl' and use OpenSSL::HMAC instead." if $VERBOSE
20 # An experimental implementation of HMAC keyed-hashing algorithm
26 # 1.9 series without being noticed. Please use OpenSSL::HMAC in the
34 # puts Digest::HMAC.hexdigest("data", "hash key", Digest::SHA1)
37 # hmac = Digest::HMAC.new("foo", Digest::RMD160)
46 class HMAC < Digest::Class class in class:Digest
48 # Creates a Digest::HMAC instance.
144 assert_equal(h[:hexdigest], Digest::HMAC.hexdigest(h[:data], h[:key], d))
152 hmac = Digest::HMAC.new(h[:key], d)
164 hmac = Digest::HMAC
[all...]
/macosx-10.10/WebCore-7600.1.25/crypto/algorithms/
H A DCryptoAlgorithmHMAC.h41 static const CryptoAlgorithmIdentifier s_identifier = CryptoAlgorithmIdentifier::HMAC;
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSCryptoAlgorithmDictionary.cpp325 case CryptoAlgorithmIdentifier::HMAC:
365 case CryptoAlgorithmIdentifier::HMAC:
400 case CryptoAlgorithmIdentifier::HMAC:
436 case CryptoAlgorithmIdentifier::HMAC:
467 case CryptoAlgorithmIdentifier::HMAC:
504 case CryptoAlgorithmIdentifier::HMAC:
535 case CryptoAlgorithmIdentifier::HMAC:
565 case CryptoAlgorithmIdentifier::HMAC:
600 case CryptoAlgorithmIdentifier::HMAC:
632 case CryptoAlgorithmIdentifier::HMAC
[all...]
/macosx-10.10/ruby-106/ruby/ext/openssl/
H A Dossl_hmac.c20 ossl_raise(rb_eRuntimeError, "HMAC wasn't initialized"); \
63 * HMAC.new(key, digest) -> hmac
190 * HMAC.digest(digest, key, data) -> aString
201 buf = HMAC(GetDigestPtr(digest), RSTRING_PTR(key), RSTRING_LENINT(key),
209 * HMAC.digest(digest, key, data) -> aString
223 buf = HMAC(GetDigestPtr(digest), RSTRING_PTR(key), RSTRING_LENINT(key),
245 cHMAC = rb_define_class_under(mOSSL, "HMAC", rb_cObject);
264 # warning >>> OpenSSL is compiled without HMAC support <<<
268 rb_warning("HMAC will NOT be avaible: OpenSSL is compiled without HMAC
[all...]
/macosx-10.10/OpenSSL098-52/src/fips/hmac/
H A DMakefile69 if [ -f $(Q)/HMAC.req ]; then $(TOP)/util/shlib_wrap.sh $(TOP)/test/fips_hmactest < $(Q)/HMAC.req > $(A)/HMAC.rsp; fi
H A Dfips_hmac.c87 "HMAC: digest not allowed in FIPS mode");
167 unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len, function
/macosx-10.10/OpenSSL098-52/src/test/
H A Dhmactest.c68 printf("No HMAC support\n");
145 p=pt(HMAC(EVP_md5(),
152 printf("error calculating HMAC on %d entry'\n",i);
H A Dfips_test_suite.c251 /* HMAC-SHA1: generate hash of known digest value and compare to known
266 if (!HMAC(EVP_sha1(),key,sizeof(key)-1,iv,sizeof(iv)-1,out,&outlen)) return 0;
272 /* HMAC-SHA224: generate hash of known digest value and compare to known
287 if (!HMAC(EVP_sha224(),key,sizeof(key)-1,iv,sizeof(iv)-1,out,&outlen)) return 0;
293 /* HMAC-SHA256: generate hash of known digest value and compare to known
308 if (!HMAC(EVP_sha256(),key,sizeof(key)-1,iv,sizeof(iv)-1,out,&outlen)) return 0;
314 /* HMAC-SHA384: generate hash of known digest value and compare to known
330 if (!HMAC(EVP_sha384(),key,sizeof(key)-1,iv,sizeof(iv)-1,out,&outlen)) return 0;
336 /* HMAC-SHA512: generate hash of known digest value and compare to known
353 if (!HMAC(EVP_sha51
[all...]
/macosx-10.10/OpenSSL098-52/src/fips/
H A Dinstall.com37 $ FDIRS := ,RAND,SHA,DES,AES,DSA,RSA,DH,HMAC
H A Dfips_test_suite.c251 /* HMAC-SHA1: generate hash of known digest value and compare to known
266 if (!HMAC(EVP_sha1(),key,sizeof(key)-1,iv,sizeof(iv)-1,out,&outlen)) return 0;
272 /* HMAC-SHA224: generate hash of known digest value and compare to known
287 if (!HMAC(EVP_sha224(),key,sizeof(key)-1,iv,sizeof(iv)-1,out,&outlen)) return 0;
293 /* HMAC-SHA256: generate hash of known digest value and compare to known
308 if (!HMAC(EVP_sha256(),key,sizeof(key)-1,iv,sizeof(iv)-1,out,&outlen)) return 0;
314 /* HMAC-SHA384: generate hash of known digest value and compare to known
330 if (!HMAC(EVP_sha384(),key,sizeof(key)-1,iv,sizeof(iv)-1,out,&outlen)) return 0;
336 /* HMAC-SHA512: generate hash of known digest value and compare to known
353 if (!HMAC(EVP_sha51
[all...]

Completed in 386 milliseconds

12