/external/openssl/crypto/evp/ |
D | e_old.c | 73 const EVP_CIPHER *EVP_bf_cfb(void); 74 const EVP_CIPHER *EVP_bf_cfb(void) { return EVP_bf_cfb64(); } in EVP_bf_cfb() 79 const EVP_CIPHER *EVP_des_cfb(void); 80 const EVP_CIPHER *EVP_des_cfb(void) { return EVP_des_cfb64(); } in EVP_des_cfb() 82 const EVP_CIPHER *EVP_des_ede3_cfb(void); 83 const EVP_CIPHER *EVP_des_ede3_cfb(void) { return EVP_des_ede3_cfb64(); } in EVP_des_ede3_cfb() 85 const EVP_CIPHER *EVP_des_ede_cfb(void); 86 const EVP_CIPHER *EVP_des_ede_cfb(void) { return EVP_des_ede_cfb64(); } in EVP_des_ede_cfb() 91 const EVP_CIPHER *EVP_idea_cfb(void); 92 const EVP_CIPHER *EVP_idea_cfb(void) { return EVP_idea_cfb64(); } in EVP_idea_cfb() [all …]
|
D | evp.h | 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); 498 const EVP_CIPHER * EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx); 573 int EVP_BytesToKey(const EVP_CIPHER *type,const EVP_MD *md, [all …]
|
D | names.c | 65 int EVP_add_cipher(const EVP_CIPHER *c) in EVP_add_cipher() 106 const EVP_CIPHER *EVP_get_cipherbyname(const char *name) in EVP_get_cipherbyname() 108 const EVP_CIPHER *cp; in EVP_get_cipherbyname() 110 cp=(const EVP_CIPHER *)OBJ_NAME_get(name,OBJ_NAME_TYPE_CIPHER_METH); in EVP_get_cipherbyname() 143 void (*fn)(const EVP_CIPHER *ciph, 153 dc->fn((const EVP_CIPHER *)nm->data, nm->name, NULL, dc->arg); in do_all_cipher_fn() 156 void EVP_CIPHER_do_all(void (*fn)(const EVP_CIPHER *ciph, in EVP_CIPHER_do_all() 165 void EVP_CIPHER_do_all_sorted(void (*fn)(const EVP_CIPHER *ciph, in EVP_CIPHER_do_all_sorted()
|
D | e_rc4.c | 83 static const EVP_CIPHER r4_cipher= 98 static const EVP_CIPHER r4_40_cipher= 113 const EVP_CIPHER *EVP_rc4(void) in EVP_rc4() 118 const EVP_CIPHER *EVP_rc4_40(void) in EVP_rc4_40()
|
D | evp_lib.c | 123 int EVP_CIPHER_type(const EVP_CIPHER *ctx) in EVP_CIPHER_type() 181 int EVP_CIPHER_block_size(const EVP_CIPHER *e) in EVP_CIPHER_block_size() 196 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx) in EVP_CIPHER_CTX_cipher() 201 unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher) in EVP_CIPHER_flags() 221 int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher) in EVP_CIPHER_iv_length() 231 int EVP_CIPHER_key_length(const EVP_CIPHER *cipher) in EVP_CIPHER_key_length() 241 int EVP_CIPHER_nid(const EVP_CIPHER *cipher) in EVP_CIPHER_nid()
|
D | e_rc2.c | 97 static const EVP_CIPHER r2_64_cbc_cipher= 112 static const EVP_CIPHER r2_40_cbc_cipher= 127 const EVP_CIPHER *EVP_rc2_64_cbc(void) in EVP_rc2_64_cbc() 132 const EVP_CIPHER *EVP_rc2_40_cbc(void) in EVP_rc2_40_cbc()
|
D | e_null.c | 70 static const EVP_CIPHER n_cipher= 85 const EVP_CIPHER *EVP_enc_null(void) in EVP_enc_null()
|
D | e_aes_cbc_hmac_sha1.c | 347 static EVP_CIPHER aesni_128_cbc_hmac_sha1_cipher = 366 static EVP_CIPHER aesni_256_cbc_hmac_sha1_cipher = 385 const EVP_CIPHER *EVP_aes_128_cbc_hmac_sha1(void) in EVP_aes_128_cbc_hmac_sha1() 391 const EVP_CIPHER *EVP_aes_256_cbc_hmac_sha1(void) in EVP_aes_256_cbc_hmac_sha1() 397 const EVP_CIPHER *EVP_aes_128_cbc_hmac_sha1(void) in EVP_aes_128_cbc_hmac_sha1() 401 const EVP_CIPHER *EVP_aes_256_cbc_hmac_sha1(void) in EVP_aes_256_cbc_hmac_sha1()
|
D | evp_enc.c | 95 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit() 103 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, in EVP_CipherInit_ex() 151 const EVP_CIPHER *c = ENGINE_get_cipher(impl, cipher->nid); in EVP_CipherInit_ex() 283 int EVP_EncryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_EncryptInit() 289 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl, in EVP_EncryptInit_ex() 295 int EVP_DecryptInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_DecryptInit() 301 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, in EVP_DecryptInit_ex()
|
D | e_xcbc_d.c | 84 static const EVP_CIPHER d_xcbc_cipher= 99 const EVP_CIPHER *EVP_desx_cbc(void) in EVP_desx_cbc()
|
/external/openssl/include/openssl/ |
D | evp.h | 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); 498 const EVP_CIPHER * EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx); 573 int EVP_BytesToKey(const EVP_CIPHER *type,const EVP_MD *md, [all …]
|
D | pem.h | 195 EVP_CIPHER *dec; /* date encryption cipher */ 241 int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \ 249 int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \ 277 int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \ 284 int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \ 342 int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \ 358 int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \ 420 const EVP_CIPHER *enc,unsigned char *kstr,int klen, 424 int PEM_X509_INFO_write_bio(BIO *bp,X509_INFO *xi, EVP_CIPHER *enc, 434 void *x,const EVP_CIPHER *enc,unsigned char *kstr, [all …]
|
/external/openssl/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() 183 int i2d_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc, in i2d_PKCS8PrivateKey_fp() 204 int PEM_write_PKCS8PrivateKey(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc, in PEM_write_PKCS8PrivateKey() 210 static int do_pk8pkey_fp(FILE *fp, EVP_PKEY *x, int isder, int nid, const EVP_CIPHER *enc, in do_pk8pkey_fp()
|
D | pem.h | 195 EVP_CIPHER *dec; /* date encryption cipher */ 241 int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \ 249 int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \ 277 int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \ 284 int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \ 342 int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \ 358 int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \ 420 const EVP_CIPHER *enc,unsigned char *kstr,int klen, 424 int PEM_X509_INFO_write_bio(BIO *bp,X509_INFO *xi, EVP_CIPHER *enc, 434 void *x,const EVP_CIPHER *enc,unsigned char *kstr, [all …]
|
/external/openssh/ |
D | cipher-bf1.c | 45 const EVP_CIPHER * evp_ssh1_bf(void); 94 const EVP_CIPHER * 97 static EVP_CIPHER ssh1_bf; in evp_ssh1_bf() 99 memcpy(&ssh1_bf, EVP_bf_cbc(), sizeof(EVP_CIPHER)); in evp_ssh1_bf()
|
D | cipher-ctr.c | 36 const EVP_CIPHER *evp_aes_128_ctr(void); 128 const EVP_CIPHER * 131 static EVP_CIPHER aes_ctr; in evp_aes_128_ctr() 133 memset(&aes_ctr, 0, sizeof(EVP_CIPHER)); in evp_aes_128_ctr()
|
D | cipher-acss.c | 68 const EVP_CIPHER * 71 static EVP_CIPHER acss_cipher; in evp_acss() 73 memset(&acss_cipher, 0, sizeof(EVP_CIPHER)); in evp_acss()
|
D | cipher-aes.c | 49 const EVP_CIPHER * evp_rijndael(void); 145 const EVP_CIPHER * 148 static EVP_CIPHER rijndal_cbc; in evp_rijndael() 150 memset(&rijndal_cbc, 0, sizeof(EVP_CIPHER)); in evp_rijndael()
|
D | cipher-3des1.c | 59 const EVP_CIPHER * evp_ssh1_3des(void); 166 const EVP_CIPHER * 169 static EVP_CIPHER ssh1_3des; in evp_ssh1_3des() 171 memset(&ssh1_3des, 0, sizeof(EVP_CIPHER)); in evp_ssh1_3des()
|
D | 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; in cipher_init() 214 const EVP_CIPHER *type; in cipher_init()
|
/external/openssl/crypto/engine/ |
D | README | 15 However, "EVP_CIPHER" underlies the motivation and design of ENGINE_TABLE so 16 I'll mention a bit about that first. EVP_CIPHER (and most of this applies 25 const EVP_CIPHER *cipher = EVP_des_cbc(); 39 The important point about this is that EVP_CIPHER definitions and structures are 42 counted. One an EVP_CIPHER is exposed to the caller, neither it nor anything it 45 However existing API usage cannot be made to understand when an EVP_CIPHER 48 The other problem with the existing API w.r.t. to hooking EVP_CIPHER support 51 they are effectively the same thing, an "EVP_CIPHER" pointer. The problem with 67 continue with this approach for EVP_CIPHER support (even if it *was* possible) 73 for EVP_CIPHER, and EVP_MD. [all …]
|
D | eng_openssl.c | 113 static int openssl_ciphers(ENGINE *e, const EVP_CIPHER **cipher, 249 static const EVP_CIPHER test_r4_cipher= 263 static const EVP_CIPHER test_r4_40_cipher= 277 static int openssl_ciphers(ENGINE *e, const EVP_CIPHER **cipher, in openssl_ciphers()
|
D | tb_cipher.c | 119 const EVP_CIPHER *ENGINE_get_cipher(ENGINE *e, int nid) in ENGINE_get_cipher() 121 const EVP_CIPHER *ret; in ENGINE_get_cipher()
|
/external/openssh/openbsd-compat/ |
D | openssl-compat.h | 62 extern const EVP_CIPHER *evp_rijndael(void); 69 extern const EVP_CIPHER *evp_acss(void); 128 int ssh_EVP_CipherInit(EVP_CIPHER_CTX *, const EVP_CIPHER *, unsigned char *,
|
/external/chromium/crypto/ |
D | encryptor_openssl.cc | 19 const EVP_CIPHER* GetCipherForKey(SymmetricKey* key) { in GetCipherForKey() 89 const EVP_CIPHER* cipher = GetCipherForKey(key_); in Crypt()
|