OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EVP_Cipher
(Results
1 - 5
of
5
) sorted by null
/external/boringssl/src/crypto/cmac/
cmac.c
84
const
EVP_CIPHER
*cipher;
146
const
EVP_CIPHER
*cipher, ENGINE *engine) {
152
!
EVP_Cipher
(&ctx->cipher_ctx, scratch, kZeroIV, AES_BLOCK_SIZE) ||
195
if (!
EVP_Cipher
(&ctx->cipher_ctx, scratch, ctx->block, AES_BLOCK_SIZE)) {
202
if (!
EVP_Cipher
(&ctx->cipher_ctx, scratch, in, AES_BLOCK_SIZE)) {
238
return
EVP_Cipher
(&ctx->cipher_ctx, out, out, AES_BLOCK_SIZE);
/external/tcpdump/
print-esp.c
113
const
EVP_CIPHER
*evp;
166
EVP_Cipher
(&ctx, buf, buf, len);
258
const
EVP_CIPHER
*evp;
690
EVP_Cipher
(&ctx, p + ivlen, p + ivlen, ep - (p + ivlen));
/external/boringssl/src/include/openssl/
cipher.h
72
* The following functions return |
EVP_CIPHER
| objects that implement the named
75
OPENSSL_EXPORT const
EVP_CIPHER
*EVP_rc4(void);
77
OPENSSL_EXPORT const
EVP_CIPHER
*EVP_des_cbc(void);
78
OPENSSL_EXPORT const
EVP_CIPHER
*EVP_des_ecb(void);
79
OPENSSL_EXPORT const
EVP_CIPHER
*EVP_des_ede(void);
80
OPENSSL_EXPORT const
EVP_CIPHER
*EVP_des_ede_cbc(void);
81
OPENSSL_EXPORT const
EVP_CIPHER
*EVP_des_ede3_cbc(void);
83
OPENSSL_EXPORT const
EVP_CIPHER
*EVP_aes_128_ecb(void);
84
OPENSSL_EXPORT const
EVP_CIPHER
*EVP_aes_128_cbc(void);
85
OPENSSL_EXPORT const
EVP_CIPHER
*EVP_aes_128_ctr(void)
[
all
...]
/external/boringssl/src/crypto/cipher/
cipher.c
69
const
EVP_CIPHER
*EVP_get_cipherbynid(int nid) {
147
int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const
EVP_CIPHER
*cipher,
161
* attempted to avoid this if the same ENGINE and
EVP_CIPHER
could be
244
int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const
EVP_CIPHER
*cipher,
249
int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const
EVP_CIPHER
*cipher,
483
int
EVP_Cipher
(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in,
505
const
EVP_CIPHER
*EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx) {
585
int EVP_CIPHER_nid(const
EVP_CIPHER
*cipher) { return cipher->nid; }
587
unsigned EVP_CIPHER_block_size(const
EVP_CIPHER
*cipher) {
591
unsigned EVP_CIPHER_key_length(const
EVP_CIPHER
*cipher)
[
all
...]
/external/ipsec-tools/src/racoon/
crypto_openssl.c
1243
evp_crypt(vchar_t *data, vchar_t *key, vchar_t *iv, const
EVP_CIPHER
*e, int enc)
1314
if (!
EVP_Cipher
(&ctx, (u_char *) res->v, (u_char *) data->v, data->l)) {
1326
evp_weakkey(vchar_t *key, const
EVP_CIPHER
*e)
1332
evp_keylen(int len, const
EVP_CIPHER
*e)
[
all
...]
Completed in 100 milliseconds