/external/boringssl/src/include/openssl/ |
D | cipher.h | 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); 86 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_ofb(void); [all …]
|
D | pem.h | 188 EVP_CIPHER *dec; /* date encryption cipher */ 234 OPENSSL_EXPORT int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \ 242 OPENSSL_EXPORT int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \ 270 OPENSSL_EXPORT int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \ 277 OPENSSL_EXPORT int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \ 335 OPENSSL_EXPORT int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \ 350 OPENSSL_EXPORT int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \ 392 …N1_write_bio(i2d_of_void *i2d,const char *name,BIO *bp, void *x, const EVP_CIPHER *enc,unsigned ch… 395 OPENSSL_EXPORT int PEM_X509_INFO_write_bio(BIO *bp,X509_INFO *xi, EVP_CIPHER *enc, unsigned char *k… 400 …M_ASN1_write(i2d_of_void *i2d,const char *name,FILE *fp, void *x,const EVP_CIPHER *enc,unsigned ch… [all …]
|
D | pkcs8.h | 88 const EVP_CIPHER *cipher, 124 OPENSSL_EXPORT X509_SIG *PKCS8_encrypt(int pbe_nid, const EVP_CIPHER *cipher,
|
D | cmac.h | 57 const EVP_CIPHER *cipher, ENGINE *engine);
|
D | base.h | 215 typedef struct evp_cipher_st EVP_CIPHER; typedef
|
/external/boringssl/src/crypto/cipher/ |
D | e_des.c | 90 static const EVP_CIPHER des_cbc = { 96 const EVP_CIPHER *EVP_des_cbc(void) { return &des_cbc; } in EVP_des_cbc() 115 static const EVP_CIPHER des_ecb = { 121 const EVP_CIPHER *EVP_des_ecb(void) { return &des_ecb; } in EVP_des_ecb() 154 static const EVP_CIPHER des_ede3_cbc = { 160 const EVP_CIPHER *EVP_des_ede3_cbc(void) { return &des_ede3_cbc; } in EVP_des_ede3_cbc() 175 static const EVP_CIPHER des_ede_cbc = { 181 const EVP_CIPHER *EVP_des_ede_cbc(void) { return &des_ede_cbc; } in EVP_des_ede_cbc() 201 static const EVP_CIPHER des_ede_ecb = { 207 const EVP_CIPHER *EVP_des_ede(void) { return &des_ede_ecb; } in EVP_des_ede()
|
D | cipher.c | 69 const EVP_CIPHER *EVP_get_cipherbynid(int nid) { in EVP_get_cipherbynid() 147 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit_ex() 244 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit_ex() 249 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_DecryptInit_ex() 505 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx) { in EVP_CIPHER_CTX_cipher() 585 int EVP_CIPHER_nid(const EVP_CIPHER *cipher) { return cipher->nid; } in EVP_CIPHER_nid() 587 unsigned EVP_CIPHER_block_size(const EVP_CIPHER *cipher) { in EVP_CIPHER_block_size() 591 unsigned EVP_CIPHER_key_length(const EVP_CIPHER *cipher) { in EVP_CIPHER_key_length() 595 unsigned EVP_CIPHER_iv_length(const EVP_CIPHER *cipher) { in EVP_CIPHER_iv_length() 599 uint32_t EVP_CIPHER_flags(const EVP_CIPHER *cipher) { in EVP_CIPHER_flags() [all …]
|
D | e_aes.c | 727 static const EVP_CIPHER aes_128_cbc = { 733 static const EVP_CIPHER aes_128_ctr = { 739 static const EVP_CIPHER aes_128_ecb = { 745 static const EVP_CIPHER aes_128_ofb = { 751 static const EVP_CIPHER aes_128_gcm = { 761 static const EVP_CIPHER aes_192_cbc = { 767 static const EVP_CIPHER aes_192_ctr = { 773 static const EVP_CIPHER aes_192_ecb = { 779 static const EVP_CIPHER aes_192_gcm = { 789 static const EVP_CIPHER aes_256_cbc = { [all …]
|
D | e_null.c | 79 static const EVP_CIPHER n_cipher = { 85 const EVP_CIPHER *EVP_enc_null(void) { return &n_cipher; } in EVP_enc_null()
|
D | e_rc4.c | 81 static const EVP_CIPHER rc4 = { 87 const EVP_CIPHER *EVP_rc4(void) { return &rc4; } in EVP_rc4()
|
D | cipher_test.cc | 68 static const EVP_CIPHER *GetCipher(const std::string &name) { in GetCipher() 110 const EVP_CIPHER *cipher, in TestOperation() 221 const EVP_CIPHER *cipher = GetCipher(cipher_str); in TestCipher()
|
D | e_rc2.c | 409 static const EVP_CIPHER rc2_40_cbc = { 423 const EVP_CIPHER *EVP_rc2_40_cbc(void) { in EVP_rc2_40_cbc() 427 static const EVP_CIPHER rc2_cbc = { 441 const EVP_CIPHER *EVP_rc2_cbc(void) { in EVP_rc2_cbc()
|
D | derive_key.c | 69 int EVP_BytesToKey(const EVP_CIPHER *type, const EVP_MD *md, in EVP_BytesToKey()
|
/external/boringssl/src/crypto/pem/ |
D | pem_pk8.c | 70 int nid, const EVP_CIPHER *enc, 74 int nid, const EVP_CIPHER *enc, 91 int PEM_write_bio_PKCS8PrivateKey(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc, in PEM_write_bio_PKCS8PrivateKey() 98 int i2d_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc, in i2d_PKCS8PrivateKey_bio() 112 static int do_pk8pkey(BIO *bp, EVP_PKEY *x, int isder, int nid, const EVP_CIPHER *enc, in do_pk8pkey() 185 int i2d_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc, in i2d_PKCS8PrivateKey_fp() 206 int PEM_write_PKCS8PrivateKey(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc, in PEM_write_PKCS8PrivateKey() 212 static int do_pk8pkey_fp(FILE *fp, EVP_PKEY *x, int isder, int nid, const EVP_CIPHER *enc, in do_pk8pkey_fp()
|
D | pem_pkey.c | 144 int PEM_write_bio_PrivateKey(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc, in PEM_write_bio_PrivateKey() 248 int PEM_write_PrivateKey(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc, in PEM_write_PrivateKey()
|
D | pem_lib.c | 266 void *x, const EVP_CIPHER *enc, unsigned char *kstr, in PEM_ASN1_write() 285 void *x, const EVP_CIPHER *enc, unsigned char *kstr, in PEM_ASN1_write_bio() 435 static const EVP_CIPHER* cipher_by_name(const char *name) { in cipher_by_name() 456 const EVP_CIPHER *enc=NULL; in PEM_get_EVP_CIPHER_INFO()
|
/external/boringssl/src/crypto/pkcs8/ |
D | p5_pbev2.c | 116 X509_ALGOR *PKCS5_pbe2_set_iv(const EVP_CIPHER *cipher, int iter, in PKCS5_pbe2_set_iv() 219 X509_ALGOR *PKCS5_pbe2_set(const EVP_CIPHER *cipher, int iter, in PKCS5_pbe2_set() 393 const EVP_CIPHER *unused, const EVP_MD *unused2, in PKCS5_v2_PBE_keyivgen() 420 const EVP_CIPHER *cipher = in PKCS5_v2_PBE_keyivgen()
|
D | internal.h | 76 const EVP_CIPHER *cipher, const EVP_MD *md, int enc);
|
D | pkcs8.c | 220 const EVP_CIPHER *cipher, const EVP_MD *md, in pkcs12_pbe_keyivgen() 270 const EVP_CIPHER *cipher, const EVP_MD *md, 275 const EVP_CIPHER* (*cipher_func)(void); 358 const EVP_CIPHER *cipher; in pbe_cipher_init() 534 X509_SIG *PKCS8_encrypt(int pbe_nid, const EVP_CIPHER *cipher, const char *pass, in PKCS8_encrypt() 553 X509_SIG *PKCS8_encrypt_pbe(int pbe_nid, const EVP_CIPHER *cipher, in PKCS8_encrypt_pbe()
|
/external/ipsec-tools/src/racoon/ |
D | crypto_openssl.h | 82 const EVP_CIPHER *e, int enc)); 83 extern int evp_weakkey __P((vchar_t *key, const EVP_CIPHER *e)); 84 extern int evp_keylen __P((int len, const EVP_CIPHER *e));
|
/external/boringssl/src/crypto/cmac/ |
D | cmac.c | 84 const EVP_CIPHER *cipher; in AES_CMAC() 146 const EVP_CIPHER *cipher, ENGINE *engine) { in CMAC_Init()
|
/external/conscrypt/src/main/java/org/conscrypt/ |
D | OpenSSLCipher.java | 451 public static abstract class EVP_CIPHER extends OpenSSLCipher { class in OpenSSLCipher 470 public EVP_CIPHER(Mode mode, Padding padding) { in EVP_CIPHER() method in OpenSSLCipher.EVP_CIPHER 629 public static class AES extends EVP_CIPHER { 731 public static class DESEDE extends EVP_CIPHER { 805 public static class ARC4 extends EVP_CIPHER {
|
/external/boringssl/src/decrepit/xts/ |
D | xts.c | 250 static const EVP_CIPHER aes_256_xts = { 258 const EVP_CIPHER *EVP_aes_256_xts(void) { return &aes_256_xts; } in EVP_aes_256_xts()
|
/external/tcpdump/ |
D | print-esp.c | 113 const EVP_CIPHER *evp; 258 const EVP_CIPHER *evp; in espprint_decode_encalgo()
|
/external/wpa_supplicant_8/src/crypto/ |
D | crypto_openssl.c | 237 static const EVP_CIPHER * aes_get_evp_cipher(size_t keylen) in aes_get_evp_cipher() 257 const EVP_CIPHER *type; in aes_encrypt_init() 309 const EVP_CIPHER *type; in aes_decrypt_init() 495 const EVP_CIPHER *cipher; in crypto_cipher_init()
|