Searched defs:ek (Results 1 - 25 of 38) sorted by relevance

12

/external/wpa_supplicant_8/hostapd/src/crypto/
H A Ddes_i.h13 u32 ek[3][32]; member in struct:des3_key_s
17 void des_key_setup(const u8 *key, u32 *ek, u32 *dk);
18 void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt);
H A Dcrypto_internal-cipher.c35 u32 ek[32]; member in struct:crypto_cipher::__anon28210::__anon28214
91 des_key_setup(key, ctx->u.des.ek, ctx->u.des.dk);
151 des_block_encrypt(ctx->u.des.cbc, ctx->u.des.ek,
H A Ddes-internal.c403 u32 ek[32], work[2]; local
414 deskey(pkey, 0, ek);
418 desfunc(work, ek);
423 os_memset(ek, 0, sizeof(ek));
427 void des_key_setup(const u8 *key, u32 *ek, u32 *dk) argument
429 deskey(key, 0, ek);
434 void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt) argument
439 desfunc(work, ek);
458 deskey(key, 0, dkey->ek[
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Ddes_i.h13 u32 ek[3][32]; member in struct:des3_key_s
17 void des_key_setup(const u8 *key, u32 *ek, u32 *dk);
18 void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt);
H A Dcrypto_internal-cipher.c35 u32 ek[32]; member in struct:crypto_cipher::__anon28440::__anon28444
91 des_key_setup(key, ctx->u.des.ek, ctx->u.des.dk);
151 des_block_encrypt(ctx->u.des.cbc, ctx->u.des.ek,
H A Ddes-internal.c403 u32 ek[32], work[2]; local
414 deskey(pkey, 0, ek);
418 desfunc(work, ek);
423 os_memset(ek, 0, sizeof(ek));
427 void des_key_setup(const u8 *key, u32 *ek, u32 *dk) argument
429 deskey(key, 0, ek);
434 void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt) argument
439 desfunc(work, ek);
458 deskey(key, 0, dkey->ek[
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Ddes_i.h13 u32 ek[3][32]; member in struct:des3_key_s
17 void des_key_setup(const u8 *key, u32 *ek, u32 *dk);
18 void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt);
H A Dcrypto_internal-cipher.c35 u32 ek[32]; member in struct:crypto_cipher::__anon28672::__anon28676
91 des_key_setup(key, ctx->u.des.ek, ctx->u.des.dk);
151 des_block_encrypt(ctx->u.des.cbc, ctx->u.des.ek,
H A Ddes-internal.c403 u32 ek[32], work[2]; local
414 deskey(pkey, 0, ek);
418 desfunc(work, ek);
423 os_memset(ek, 0, sizeof(ek));
427 void des_key_setup(const u8 *key, u32 *ek, u32 *dk) argument
429 deskey(key, 0, ek);
434 void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt) argument
439 desfunc(work, ek);
458 deskey(key, 0, dkey->ek[
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/evp/
H A Dp_dec.c69 int EVP_PKEY_decrypt_old(unsigned char *key, const unsigned char *ek, int ekl, argument
83 ret=RSA_private_decrypt(ekl,ek,key,priv->pkey.rsa,RSA_PKCS1_PADDING);
H A Dp_enc.c69 int EVP_PKEY_encrypt_old(unsigned char *ek, const unsigned char *key, int key_len, argument
82 ret=RSA_public_encrypt(key_len,key,ek,pubk->pkey.rsa,RSA_PKCS1_PADDING);
H A Dp_open.c70 const unsigned char *ek, int ekl, const unsigned char *iv,
98 i=EVP_PKEY_decrypt_old(key,ek,ekl,priv);
69 EVP_OpenInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, const unsigned char *ek, int ekl, const unsigned char *iv, EVP_PKEY *priv) argument
H A Dp_seal.c69 int EVP_SealInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, unsigned char **ek, argument
90 ekl[i]=EVP_PKEY_encrypt_old(ek[i],key,EVP_CIPHER_CTX_key_length(ctx),
/external/openssl/crypto/evp/
H A Dp_dec.c69 int EVP_PKEY_decrypt_old(unsigned char *key, const unsigned char *ek, int ekl, argument
83 ret=RSA_private_decrypt(ekl,ek,key,priv->pkey.rsa,RSA_PKCS1_PADDING);
H A Dp_enc.c69 int EVP_PKEY_encrypt_old(unsigned char *ek, const unsigned char *key, int key_len, argument
82 ret=RSA_public_encrypt(key_len,key,ek,pubk->pkey.rsa,RSA_PKCS1_PADDING);
H A Dp_open.c70 const unsigned char *ek, int ekl, const unsigned char *iv,
98 i=EVP_PKEY_decrypt_old(key,ek,ekl,priv);
69 EVP_OpenInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, const unsigned char *ek, int ekl, const unsigned char *iv, EVP_PKEY *priv) argument
H A Dp_seal.c69 int EVP_SealInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type, unsigned char **ek, argument
90 ekl[i]=EVP_PKEY_encrypt_old(ek[i],key,EVP_CIPHER_CTX_key_length(ctx),
/external/openssh/
H A Drijndael.h43 u32 ek[4*(MAXNR + 1)]; /* encrypt key schedule */ member in struct:__anon23459
/external/chromium_org/third_party/openssl/openssl/crypto/pem/
H A Dpem_seal.c71 unsigned char **ek, int *ekl, unsigned char *iv, EVP_PKEY **pubk,
103 ret=EVP_SealInit(&ctx->cipher,type,ek,ekl,iv,pubk,npubk);
109 j=EVP_EncodeBlock((unsigned char *)s,ek[i],
112 memcpy(ek[i],s,j+1);
70 PEM_SealInit(PEM_ENCODE_SEAL_CTX *ctx, EVP_CIPHER *type, EVP_MD *md_type, unsigned char **ek, int *ekl, unsigned char *iv, EVP_PKEY **pubk, int npubk) argument
/external/openssl/crypto/pem/
H A Dpem_seal.c71 unsigned char **ek, int *ekl, unsigned char *iv, EVP_PKEY **pubk,
103 ret=EVP_SealInit(&ctx->cipher,type,ek,ekl,iv,pubk,npubk);
109 j=EVP_EncodeBlock((unsigned char *)s,ek[i],
112 memcpy(ek[i],s,j+1);
70 PEM_SealInit(PEM_ENCODE_SEAL_CTX *ctx, EVP_CIPHER *type, EVP_MD *md_type, unsigned char **ek, int *ekl, unsigned char *iv, EVP_PKEY **pubk, int npubk) argument
/external/chromium_org/third_party/openssl/openssl/ssl/
H A Ds2_srvr.c366 int is_export,i,n,keya,ek; local
465 ek=8;
468 ek=5;
476 || (is_export && ((i != ek) || (s->s2->tmp.clear+(unsigned int)i !=
481 i=ek;
495 || (is_export && ((i != ek) || (s->s2->tmp.clear+i !=
/external/eigen/Eigen/src/Eigen2Support/
H A DSVD.h377 Scalar ek = e[k]/scale; local
389 Scalar g = sk*ek;
/external/openssl/ssl/
H A Ds2_srvr.c366 int is_export,i,n,keya,ek; local
465 ek=8;
468 ek=5;
476 || (is_export && ((i != ek) || (s->s2->tmp.clear+(unsigned int)i !=
481 i=ek;
495 || (is_export && ((i != ek) || (s->s2->tmp.clear+i !=
/external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/
H A Dpk7_doit.c146 unsigned char *ek = NULL; local
172 ek = OPENSSL_malloc(eklen);
174 if (ek == NULL)
180 if (EVP_PKEY_encrypt(pctx, ek, &eklen, key, keylen) <= 0)
183 ASN1_STRING_set0(ri->enc_key, ek, eklen);
184 ek = NULL;
193 if (ek)
194 OPENSSL_free(ek);
204 unsigned char *ek = NULL; local
227 ek
433 unsigned char *ek = NULL, *tkey = NULL; local
[all...]
/external/openssl/crypto/pkcs7/
H A Dpk7_doit.c146 unsigned char *ek = NULL; local
172 ek = OPENSSL_malloc(eklen);
174 if (ek == NULL)
180 if (EVP_PKEY_encrypt(pctx, ek, &eklen, key, keylen) <= 0)
183 ASN1_STRING_set0(ri->enc_key, ek, eklen);
184 ek = NULL;
193 if (ek)
194 OPENSSL_free(ek);
204 unsigned char *ek = NULL; local
227 ek
433 unsigned char *ek = NULL, *tkey = NULL; local
[all...]

Completed in 3353 milliseconds

12