Searched refs:impl (Results 26 - 50 of 111) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/hmac/
H A Dhmac.c65 const EVP_MD *md, ENGINE *impl)
85 EVP_DigestInit_ex(&ctx->md_ctx,md, impl);
105 EVP_DigestInit_ex(&ctx->i_ctx,md, impl);
110 EVP_DigestInit_ex(&ctx->o_ctx,md, impl);
64 HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, const EVP_MD *md, ENGINE *impl) argument
H A Dhmac.h96 const EVP_MD *md, ENGINE *impl);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/evp/
H A Devp_enc.c93 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, argument
123 if(impl)
125 if (!ENGINE_init(impl))
133 impl = ENGINE_get_cipher_engine(cipher->nid);
134 if(impl)
137 const EVP_CIPHER *c = ENGINE_get_cipher(impl, cipher->nid);
152 ctx->engine = impl;
259 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl, argument
262 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1);
271 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/kernel/
H A Dus3_cpufreq.c202 unsigned long manuf, impl, ver; local
210 impl = ((ver >> 32) & 0xffff);
213 (impl == CHEETAH_IMPL ||
214 impl == CHEETAH_PLUS_IMPL ||
215 impl == JAGUAR_IMPL ||
216 impl == PANTHER_IMPL)) {
H A Dcpu.c301 printk(KERN_ERR "CPU: Unknown chip, impl[0x%x] vers[0x%x]\n",
307 printk(KERN_ERR "FPU: Unknown chip, impl[0x%x] vers[0x%x]\n",
367 int manuf, impl; local
372 impl = ((ver >> 32) & 0xffff);
373 set_cpu_and_fpu(manuf, impl, impl);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/hmac/
H A Dhmac.c69 const EVP_MD *md, ENGINE *impl)
87 if ((impl || ctx->i_ctx.engine)
96 if (!impl && !ctx->i_ctx.engine)
118 if (!EVP_DigestInit_ex(&ctx->md_ctx, md, impl))
139 if (!EVP_DigestInit_ex(&ctx->i_ctx, md, impl))
146 if (!EVP_DigestInit_ex(&ctx->o_ctx, md, impl))
68 HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, const EVP_MD *md, ENGINE *impl) argument
H A Dhmac.h95 const EVP_MD *md, ENGINE *impl);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/hmac/
H A Dhmac.c69 const EVP_MD *md, ENGINE *impl)
87 if ((impl || ctx->i_ctx.engine)
96 if (!impl && !ctx->i_ctx.engine)
118 if (!EVP_DigestInit_ex(&ctx->md_ctx, md, impl))
139 if (!EVP_DigestInit_ex(&ctx->i_ctx, md, impl))
146 if (!EVP_DigestInit_ex(&ctx->o_ctx, md, impl))
68 HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, const EVP_MD *md, ENGINE *impl) argument
H A Dhmac.h95 const EVP_MD *md, ENGINE *impl);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/
H A Dex_data.c171 static const CRYPTO_EX_DATA_IMPL *impl = NULL; variable
173 /* To call "impl" functions, use this macro rather than referring to 'impl' directly, eg.
175 #define EX_IMPL(a) impl->cb_##a
199 /* Internal function that checks whether "impl" is set and if not, sets it to
204 if(!impl)
205 impl = &impl_default;
210 #define IMPL_CHECK if(!impl) impl_check();
216 return impl;
222 if(!impl)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/
H A Dex_data.c168 static const CRYPTO_EX_DATA_IMPL *impl = NULL; variable
171 * To call "impl" functions, use this macro rather than referring to 'impl'
174 #define EX_IMPL(a) impl->cb_##a
196 * Internal function that checks whether "impl" is set and if not, sets it to
202 if (!impl)
203 impl = &impl_default;
211 #define IMPL_CHECK if(!impl) impl_check();
216 IMPL_CHECK return impl;
223 if (!impl) {
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/
H A Dex_data.c168 static const CRYPTO_EX_DATA_IMPL *impl = NULL; variable
171 * To call "impl" functions, use this macro rather than referring to 'impl'
174 #define EX_IMPL(a) impl->cb_##a
196 * Internal function that checks whether "impl" is set and if not, sets it to
202 if (!impl)
203 impl = &impl_default;
211 #define IMPL_CHECK if(!impl) impl_check();
216 IMPL_CHECK return impl;
223 if (!impl) {
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/cmac/
H A Dcmac.c152 const EVP_CIPHER *cipher, ENGINE *impl)
158 if ((impl || ctx->cctx.engine)
175 if (!impl && !ctx->cctx.engine)
180 if (!key && !cipher && !impl && keylen == 0) {
191 if (cipher && !EVP_EncryptInit_ex(&ctx->cctx, cipher, impl, NULL, NULL))
151 CMAC_Init(CMAC_CTX *ctx, const void *key, size_t keylen, const EVP_CIPHER *cipher, ENGINE *impl) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/cmac/
H A Dcmac.c152 const EVP_CIPHER *cipher, ENGINE *impl)
158 if ((impl || ctx->cctx.engine)
175 if (!impl && !ctx->cctx.engine)
180 if (!key && !cipher && !impl && keylen == 0) {
191 if (cipher && !EVP_EncryptInit_ex(&ctx->cctx, cipher, impl, NULL, NULL))
151 CMAC_Init(CMAC_CTX *ctx, const void *key, size_t keylen, const EVP_CIPHER *cipher, ENGINE *impl) argument
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/model/
H A DEntityModel.java19 import com.sleepycat.persist.impl.Format;
20 import com.sleepycat.persist.impl.PersistCatalog;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/evp/
H A Devp_enc.c103 ENGINE *impl, const unsigned char *key,
140 if (impl) {
141 if (!ENGINE_init(impl)) {
147 impl = ENGINE_get_cipher_engine(cipher->nid);
148 if (impl) {
150 const EVP_CIPHER *c = ENGINE_get_cipher(impl, cipher->nid);
166 ctx->engine = impl;
299 ENGINE *impl, const unsigned char *key,
302 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1);
312 ENGINE *impl, cons
102 EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, const unsigned char *key, const unsigned char *iv, int enc) argument
298 EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, const unsigned char *key, const unsigned char *iv) argument
311 EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, const unsigned char *key, const unsigned char *iv) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/evp/
H A Devp_enc.c103 ENGINE *impl, const unsigned char *key,
140 if (impl) {
141 if (!ENGINE_init(impl)) {
147 impl = ENGINE_get_cipher_engine(cipher->nid);
148 if (impl) {
150 const EVP_CIPHER *c = ENGINE_get_cipher(impl, cipher->nid);
166 ctx->engine = impl;
299 ENGINE *impl, const unsigned char *key,
302 return EVP_CipherInit_ex(ctx, cipher, impl, key, iv, 1);
312 ENGINE *impl, cons
102 EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, const unsigned char *key, const unsigned char *iv, int enc) argument
298 EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, const unsigned char *key, const unsigned char *iv) argument
311 EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, const unsigned char *key, const unsigned char *iv) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DConverterReader.java9 package com.sleepycat.persist.impl;
H A DPersistComparator.java9 package com.sleepycat.persist.impl;
H A DPersistKeyAssigner.java9 package com.sleepycat.persist.impl;
H A DReadOnlyCatalog.java9 package com.sleepycat.persist.impl;
H A DStoredModel.java9 package com.sleepycat.persist.impl;
H A DVisitedObjects.java9 package com.sleepycat.persist.impl;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/raw/
H A DRawStore.java17 import com.sleepycat.persist.impl.Store;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/apps/
H A Ddgst.c106 ENGINE *e = NULL, *impl = NULL; local
291 impl = e;
366 if (!init_gen_str(bio_err, &mac_ctx, mac_name, impl, 0))
400 sigkey = EVP_PKEY_new_mac_key(EVP_PKEY_HMAC, impl,
416 r = EVP_DigestVerifyInit(mctx, &pctx, md, impl, sigkey);
418 r = EVP_DigestSignInit(mctx, &pctx, md, impl, sigkey);
446 if (!EVP_DigestInit_ex(mctx, md, impl)) {

Completed in 1242 milliseconds

12345