Searched refs:hmac (Results 1 - 25 of 136) sorted by relevance

123456

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/hmac/
H A DMakefile5 DIR= hmac
20 LIBSRC=hmac.c
21 LIBOBJ=hmac.o
25 EXHEADER= hmac.h
77 hmac.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
78 hmac.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
79 hmac.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
80 hmac.o: ../../include/openssl/evp.h ../../include/openssl/hmac.h
81 hmac
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dhmac.c24 #include "hmac.h"
190 static void test(AVHMAC *hmac, const uint8_t *key, int keylen, argument
201 out = av_hmac_calc(hmac, data, datalen, key, keylen, buf, sizeof(buf));
219 AVHMAC *hmac = av_hmac_alloc(AV_HMAC_MD5); local
220 if (!hmac)
226 test(hmac, key1, 16, data1, sizeof(data1));
227 test(hmac, key2, sizeof(key2), data2, sizeof(data2));
228 test(hmac, key3, 16, data3, sizeof(data3));
229 test(hmac, key3, 80, data4, sizeof(data4));
230 test(hmac, key
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/hmac/
H A DMakefile5 DIR= hmac
20 LIBSRC=hmac.c hm_ameth.c hm_pmeth.c
21 LIBOBJ=hmac.o hm_ameth.o hm_pmeth.o
25 EXHEADER= hmac.h
95 hm_pmeth.o: ../../include/openssl/hmac.h ../../include/openssl/lhash.h
104 hmac.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
105 hmac.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
106 hmac.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
107 hmac.o: ../../include/openssl/evp.h ../../include/openssl/hmac
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/hmac/
H A DMakefile5 DIR= hmac
20 LIBSRC=hmac.c hm_ameth.c hm_pmeth.c
21 LIBOBJ=hmac.o hm_ameth.o hm_pmeth.o
25 EXHEADER= hmac.h
95 hm_pmeth.o: ../../include/openssl/hmac.h ../../include/openssl/lhash.h
104 hmac.o: ../../e_os.h ../../include/openssl/asn1.h ../../include/openssl/bio.h
105 hmac.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h
106 hmac.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h
107 hmac.o: ../../include/openssl/evp.h ../../include/openssl/hmac
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/pkcs12/
H A Dp12_mutl.c64 # include <openssl/hmac.h>
73 HMAC_CTX hmac; local
101 HMAC_CTX_init(&hmac);
102 if (!HMAC_Init_ex(&hmac, key, md_size, md_type, NULL)
103 || !HMAC_Update(&hmac, p12->authsafes->d.data->data,
105 || !HMAC_Final(&hmac, mac, maclen)) {
106 HMAC_CTX_cleanup(&hmac);
109 HMAC_CTX_cleanup(&hmac);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/pkcs12/
H A Dp12_mutl.c64 # include <openssl/hmac.h>
73 HMAC_CTX hmac; local
101 HMAC_CTX_init(&hmac);
102 if (!HMAC_Init_ex(&hmac, key, md_size, md_type, NULL)
103 || !HMAC_Update(&hmac, p12->authsafes->d.data->data,
105 || !HMAC_Final(&hmac, mac, maclen)) {
106 HMAC_CTX_cleanup(&hmac);
109 HMAC_CTX_cleanup(&hmac);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/src/openvpn/
H A Dcrypto_openssl.h34 #include <openssl/hmac.h>
H A Dcrypto.c199 if (ctx->hmac)
203 hmac_ctx_reset (ctx->hmac);
204 hmac_ctx_update (ctx->hmac, BPTR(&work), BLEN(&work));
205 output = buf_prepend (&work, hmac_ctx_size(ctx->hmac));
207 hmac_ctx_final (ctx->hmac, output);
247 if (ctx->hmac)
252 hmac_ctx_reset(ctx->hmac);
255 hmac_len = hmac_ctx_size (ctx->hmac);
261 hmac_ctx_update (ctx->hmac, BPTR (buf) + hmac_len, BLEN (buf) - hmac_len);
262 hmac_ctx_final (ctx->hmac, local_hma
[all...]
H A Dcrypto.h62 uint8_t hmac[MAX_HMAC_KEY_LENGTH]; member in struct:key
74 hmac_ctx_t *hmac; /**< Generic HMAC %context. */ member in struct:key_ctx
393 return key->encrypt.cipher || key->encrypt.hmac || key->decrypt.cipher || key->decrypt.hmac;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/pkcs12/
H A Dp12_mutl.c62 #include <openssl/hmac.h>
71 HMAC_CTX hmac; local
95 HMAC_CTX_init(&hmac);
96 HMAC_Init_ex(&hmac, key, EVP_MD_size(md_type), md_type, NULL);
97 HMAC_Update(&hmac, p12->authsafes->d.data->data,
99 HMAC_Final(&hmac, mac, maclen);
100 HMAC_CTX_cleanup(&hmac);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dsrtp.h32 struct AVHMAC *hmac; member in struct:SRTPContext
H A Dsrtp.c24 #include "libavutil/hmac.h"
36 if (s->hmac)
37 av_hmac_free(s->hmac);
38 s->hmac = NULL;
93 s->hmac = av_hmac_alloc(AV_HMAC_SHA1);
94 if (!s->aes || !s->hmac)
128 uint8_t iv[16] = { 0 }, hmac[20]; local
147 av_hmac_init(s->hmac, rtcp ? s->rtcp_auth : s->rtp_auth, sizeof(s->rtp_auth));
149 av_hmac_update(s->hmac, buf, len - hmac_size);
175 av_hmac_update(s->hmac, rocbu
241 uint8_t iv[16] = { 0 }, hmac[20]; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/samples/wsse/
H A Dwssedemo.c57 h use hmac
102 int hmac = 0; variable
130 hmac = 1;
190 { if (hmac)
207 if (hmac)
236 if (hmac)
255 if (hmac)
320 if (hmac)
352 if (hmac)
385 if (hmac)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/samples/wsse/
H A Dwssedemo.c57 h use hmac
102 int hmac = 0; variable
130 hmac = 1;
190 { if (hmac)
207 if (hmac)
236 if (hmac)
255 if (hmac)
320 if (hmac)
352 if (hmac)
385 if (hmac)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/plugin/
H A Dsmdevp.h54 #include <openssl/hmac.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/plugin/
H A Dsmdevp.h54 #include <openssl/hmac.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/engines/ccgost/
H A Dgost89.h73 unsigned int data_len, unsigned char *hmac);
80 unsigned char *hmac);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/engines/ccgost/
H A Dgost89.h73 unsigned int data_len, unsigned char *hmac);
80 unsigned char *hmac);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libgcrypt-1.5.0/tests/
H A DMakefile.am22 mpitests tsexp keygen pubkey hmac keygrip fips186-dsa aeswrap \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libgcrypt-1.5.0/tests/
H A DMakefile.am22 mpitests tsexp keygen pubkey hmac keygrip fips186-dsa aeswrap \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dpwdbased.h7 #include "hmac.h"
93 HMAC<T> hmac(password, passwordLen);
94 SecByteBlock buffer(hmac.DigestSize());
100 hmac.Update(salt, saltLen);
105 hmac.Update(&b, 1);
107 hmac.Final(buffer);
120 hmac.CalculateDigest(buffer, buffer, buffer.size());
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/tests/fate/
H A Dlibavutil.mak61 FATE_LIBAVUTIL += fate-hmac
62 fate-hmac: libavutil/hmac-test$(EXESUF)
63 fate-hmac: CMD = run libavutil/hmac-test
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/sunrpc/auth_gss/
H A Dgss_krb5_crypto.c644 struct xdr_netobj hmac; local
695 hmac.len = GSS_KRB5_MAX_CKSUM_LEN;
696 hmac.data = buf->tail[0].iov_base + buf->tail[0].iov_len;
703 * the hmac.
710 cksumkey, usage, &hmac);
823 /* Calculate our hmac over the plaintext data */
832 /* Get the packet's hmac value */
858 struct crypto_hash *hmac; local
867 hmac = crypto_alloc_hash(kctx->gk5e->cksum_name, 0, CRYPTO_ALG_ASYNC);
868 if (IS_ERR(hmac)) {
924 struct crypto_hash *hmac; local
[all...]
H A Dgss_krb5_mech.c81 .name = "rc4-hmac",
83 .cksum_name = "hmac(md5)",
102 .name = "des3-hmac-sha1",
104 .cksum_name = "hmac(sha1)",
125 .cksum_name = "hmac(sha1)",
148 .cksum_name = "hmac(sha1)",
429 struct crypto_hash *hmac; local
440 hmac = crypto_alloc_hash(ctx->gk5e->cksum_name, 0, CRYPTO_ALG_ASYNC);
441 if (IS_ERR(hmac)) {
443 __func__, PTR_ERR(hmac), ct
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/dist/
H A Ds_tags21 ../hmac/*.[ch] \

Completed in 487 milliseconds

123456