/external/openssh/ |
cipher-3des1.c | 59 const EVP_CIPHER * evp_ssh1_3des(void); 116 EVP_Cipher(&c->k1, dest, (u_char *)src, len); 117 EVP_Cipher(&c->k2, dest, dest, len); 118 EVP_Cipher(&c->k3, dest, dest, len); 120 if (EVP_Cipher(&c->k1, dest, (u_char *)src, len) == 0 || 121 EVP_Cipher(&c->k2, dest, dest, len) == 0 || 122 EVP_Cipher(&c->k3, dest, dest, len) == 0) 166 const EVP_CIPHER * 169 static EVP_CIPHER ssh1_3des; 171 memset(&ssh1_3des, 0, sizeof(EVP_CIPHER)); [all...] |
cipher.c | 54 extern const EVP_CIPHER *evp_ssh1_bf(void); 55 extern const EVP_CIPHER *evp_ssh1_3des(void); 57 extern const EVP_CIPHER *evp_aes_128_ctr(void); 67 const EVP_CIPHER *(*evptype)(void); 212 EVP_CIPHER *type; 214 const EVP_CIPHER *type; 269 if (EVP_Cipher(&cc->evp, discard, junk, 271 fatal("evp_crypt: EVP_Cipher failed during discard"); 283 if (EVP_Cipher(&cc->evp, dest, (u_char *)src, len) == 0) 284 fatal("evp_crypt: EVP_Cipher failed") [all...] |
/external/openssh/openbsd-compat/ |
openssl-compat.h | 62 extern const EVP_CIPHER *evp_rijndael(void); 69 extern const EVP_CIPHER *evp_acss(void); 96 # ifdef EVP_Cipher 97 # undef EVP_Cipher 100 # define EVP_Cipher(a,b,c,d) ssh_EVP_Cipher((a),(b),(c),(d)) 128 int ssh_EVP_CipherInit(EVP_CIPHER_CTX *, const EVP_CIPHER *, unsigned char *,
|
openssl-compat.c | 40 ssh_EVP_CipherInit(EVP_CIPHER_CTX *evp, const EVP_CIPHER *type, 50 EVP_Cipher(evp, dst, src, len);
|
/external/chromium_org/third_party/openssl/openssl/crypto/cmac/ |
cmac.c | 153 const EVP_CIPHER *cipher, ENGINE *impl) 200 if (!EVP_Cipher(&ctx->cctx, ctx->tbl, zero_iv, bl)) 243 if (!EVP_Cipher(&ctx->cctx, ctx->tbl, ctx->last_block,bl)) 249 if (!EVP_Cipher(&ctx->cctx, ctx->tbl, data, bl)) 289 if (!EVP_Cipher(&ctx->cctx, out, out, bl))
|
/external/openssl/crypto/cmac/ |
cmac.c | 153 const EVP_CIPHER *cipher, ENGINE *impl) 200 if (!EVP_Cipher(&ctx->cctx, ctx->tbl, zero_iv, bl)) 243 if (!EVP_Cipher(&ctx->cctx, ctx->tbl, ctx->last_block,bl)) 249 if (!EVP_Cipher(&ctx->cctx, ctx->tbl, data, bl)) 289 if (!EVP_Cipher(&ctx->cctx, out, out, bl))
|
/external/chromium_org/third_party/openssl/openssl/crypto/evp/ |
evp_lib.c | 123 int EVP_CIPHER_type(const EVP_CIPHER *ctx) 181 int EVP_CIPHER_block_size(const EVP_CIPHER *e) 191 int EVP_Cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) 196 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx) 201 unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher) 221 int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher) 231 int EVP_CIPHER_key_length(const EVP_CIPHER *cipher) 241 int EVP_CIPHER_nid(const EVP_CIPHER *cipher)
|
evp.h | 320 } /* EVP_CIPHER */; 389 * EVP_Cipher even appends/verifies MAC. 407 const EVP_CIPHER *cipher; 413 const EVP_CIPHER *cipher; 447 ASN1_TYPE *param, const EVP_CIPHER *cipher, 489 int EVP_CIPHER_nid(const EVP_CIPHER *cipher); 491 int EVP_CIPHER_block_size(const EVP_CIPHER *cipher); 492 int EVP_CIPHER_key_length(const EVP_CIPHER *cipher); 493 int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher); 494 unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher) [all...] |
/external/chromium_org/third_party/openssl/openssl/ssl/ |
d1_enc.c | 143 const EVP_CIPHER *enc; 223 printf("EVP_Cipher(ds=%p,rec->data=%p,rec->input=%p,l=%ld) ==>\n", 244 EVP_Cipher(ds,rec->data,rec->input,l);
|
s2_enc.c | 67 const EVP_CIPHER *c; 148 EVP_Cipher(ds,s->s2->mac_data,s->s2->mac_data,l);
|
s3_enc.c | 223 const EVP_CIPHER *c; 391 const EVP_CIPHER *c; 490 const EVP_CIPHER *enc; 544 EVP_Cipher(ds,rec->data,rec->input,l);
|
t1_enc.c | 382 * states when using EVP_CIPHER. The argument |is_read| is true iff this 393 const EVP_CIPHER *cipher = s->s3->tmp.new_sym_enc; 500 /* is_aead_cipher indicates whether the EVP_CIPHER implements an AEAD 558 const EVP_CIPHER *cipher = s->s3->tmp.new_sym_enc; 685 const EVP_CIPHER *c = NULL; 814 const EVP_CIPHER *enc; 1067 printf("EVP_Cipher(ds=%p,rec->data=%p,rec->input=%p,l=%ld) ==>\n", 1088 i = EVP_Cipher(ds,rec->data,rec->input,l); [all...] |
kssl.c | 815 const EVP_CIPHER * [all...] |
/external/openssl/crypto/evp/ |
evp_lib.c | 123 int EVP_CIPHER_type(const EVP_CIPHER *ctx) 181 int EVP_CIPHER_block_size(const EVP_CIPHER *e) 191 int EVP_Cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, const unsigned char *in, unsigned int inl) 196 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx) 201 unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher) 221 int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher) 231 int EVP_CIPHER_key_length(const EVP_CIPHER *cipher) 241 int EVP_CIPHER_nid(const EVP_CIPHER *cipher)
|
evp.h | 320 } /* EVP_CIPHER */; 389 * EVP_Cipher even appends/verifies MAC. 407 const EVP_CIPHER *cipher; 413 const EVP_CIPHER *cipher; 447 ASN1_TYPE *param, const EVP_CIPHER *cipher, 489 int EVP_CIPHER_nid(const EVP_CIPHER *cipher); 491 int EVP_CIPHER_block_size(const EVP_CIPHER *cipher); 492 int EVP_CIPHER_key_length(const EVP_CIPHER *cipher); 493 int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher); 494 unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher) [all...] |
/external/openssl/ssl/ |
d1_enc.c | 143 const EVP_CIPHER *enc; 223 printf("EVP_Cipher(ds=%p,rec->data=%p,rec->input=%p,l=%ld) ==>\n", 244 EVP_Cipher(ds,rec->data,rec->input,l);
|
s2_enc.c | 67 const EVP_CIPHER *c; 148 EVP_Cipher(ds,s->s2->mac_data,s->s2->mac_data,l);
|
s3_enc.c | 223 const EVP_CIPHER *c; 391 const EVP_CIPHER *c; 484 const EVP_CIPHER *enc; 538 EVP_Cipher(ds,rec->data,rec->input,l);
|
t1_enc.c | 331 const EVP_CIPHER *c; 581 const EVP_CIPHER *c; 685 const EVP_CIPHER *enc; 810 printf("EVP_Cipher(ds=%p,rec->data=%p,rec->input=%p,l=%ld) ==>\n", 831 i = EVP_Cipher(ds,rec->data,rec->input,l); [all...] |
kssl.c | 815 const EVP_CIPHER * [all...] |
/external/tcpdump/ |
print-esp.c | 75 const EVP_CIPHER *evp; 225 const EVP_CIPHER *evp; 483 EVP_Cipher(&ctx, p + ivlen, p + ivlen, ep - (p + ivlen));
|
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
evp.h | 320 } /* EVP_CIPHER */; 389 * EVP_Cipher even appends/verifies MAC. 407 const EVP_CIPHER *cipher; 413 const EVP_CIPHER *cipher; 447 ASN1_TYPE *param, const EVP_CIPHER *cipher, 489 int EVP_CIPHER_nid(const EVP_CIPHER *cipher); 491 int EVP_CIPHER_block_size(const EVP_CIPHER *cipher); 492 int EVP_CIPHER_key_length(const EVP_CIPHER *cipher); 493 int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher); 494 unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher) [all...] |
/external/openssl/include/openssl/ |
evp.h | 320 } /* EVP_CIPHER */; 389 * EVP_Cipher even appends/verifies MAC. 407 const EVP_CIPHER *cipher; 413 const EVP_CIPHER *cipher; 447 ASN1_TYPE *param, const EVP_CIPHER *cipher, 489 int EVP_CIPHER_nid(const EVP_CIPHER *cipher); 491 int EVP_CIPHER_block_size(const EVP_CIPHER *cipher); 492 int EVP_CIPHER_key_length(const EVP_CIPHER *cipher); 493 int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher); 494 unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher) [all...] |
/external/ipsec-tools/src/racoon/ |
crypto_openssl.c | 1229 evp_crypt(vchar_t *data, vchar_t *key, vchar_t *iv, const EVP_CIPHER *e, int enc) 1296 if (!EVP_Cipher(&ctx, (u_char *) res->v, (u_char *) data->v, data->l)) { 1308 evp_weakkey(vchar_t *key, const EVP_CIPHER *e) 1314 evp_keylen(int len, const EVP_CIPHER *e) 1668 static inline const EVP_CIPHER * [all...] |