HomeSort by relevance Sort by last modified time
    Searched refs:EVP_Cipher (Results 1 - 15 of 15) sorted by null

  /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/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/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.
408 const EVP_CIPHER *cipher;
414 const EVP_CIPHER *cipher;
448 ASN1_TYPE *param, const EVP_CIPHER *cipher,
490 int EVP_CIPHER_nid(const EVP_CIPHER *cipher);
492 int EVP_CIPHER_block_size(const EVP_CIPHER *cipher);
493 int EVP_CIPHER_key_length(const EVP_CIPHER *cipher);
494 int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher);
495 unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher)
    [all...]
  /external/openssl/ssl/
d1_enc.c 135 const EVP_CIPHER *enc;
216 printf("EVP_Cipher(ds=%p,rec->data=%p,rec->input=%p,l=%ld) ==>\n",
237 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;
475 const EVP_CIPHER *enc;
533 EVP_Cipher(ds,rec->data,rec->input,l);
t1_enc.c 331 const EVP_CIPHER *c;
581 const EVP_CIPHER *c;
676 const EVP_CIPHER *enc;
801 printf("EVP_Cipher(ds=%p,rec->data=%p,rec->input=%p,l=%ld) ==>\n",
828 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/openssl/include/openssl/
evp.h 320 } /* EVP_CIPHER */;
389 * EVP_Cipher even appends/verifies MAC.
408 const EVP_CIPHER *cipher;
414 const EVP_CIPHER *cipher;
448 ASN1_TYPE *param, const EVP_CIPHER *cipher,
490 int EVP_CIPHER_nid(const EVP_CIPHER *cipher);
492 int EVP_CIPHER_block_size(const EVP_CIPHER *cipher);
493 int EVP_CIPHER_key_length(const EVP_CIPHER *cipher);
494 int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher);
495 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...]

Completed in 352 milliseconds