HomeSort by relevance Sort by last modified time
    Searched refs:EVP_CIPHER (Results 1 - 25 of 57) sorted by null

1 2 3

  /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_ede3(void);
81 OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede_cbc(void);
82 OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede3_cbc(void);
84 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_ecb(void);
85 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_cbc(void)
    [all...]
cmac.h 61 const EVP_CIPHER *cipher, ENGINE *engine);
pem.h 160 FILE *fp, type *x, const EVP_CIPHER *enc, unsigned char *kstr, int klen, \
171 FILE *fp, type *x, const EVP_CIPHER *enc, unsigned char *kstr, int klen, \
213 BIO *bp, type *x, const EVP_CIPHER *enc, unsigned char *kstr, int klen, \
224 BIO *bp, type *x, const EVP_CIPHER *enc, unsigned char *kstr, int klen, \
282 OPENSSL_EXPORT int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \
297 OPENSSL_EXPORT int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
339 OPENSSL_EXPORT int PEM_ASN1_write_bio(i2d_of_void *i2d,const char *name,BIO *bp, void *x, const EVP_CIPHER *enc,unsigned char *kstr,int klen, pem_password_cb *cb, void *u);
342 OPENSSL_EXPORT int PEM_X509_INFO_write_bio(BIO *bp,X509_INFO *xi, EVP_CIPHER *enc, unsigned char *kstr, int klen, pem_password_cb *cd, void *u);
347 OPENSSL_EXPORT int PEM_ASN1_write(i2d_of_void *i2d,const char *name,FILE *fp, void *x,const EVP_CIPHER *enc,unsigned char *kstr, int klen,pem_password_cb *callback, void *u);
401 OPENSSL_EXPORT int PEM_write_bio_PKCS8PrivateKey(BIO *, EVP_PKEY *, const EVP_CIPHER *, char *, int, pem_password_cb *, void *)
    [all...]
pkcs8.h 85 OPENSSL_EXPORT X509_SIG *PKCS8_encrypt(int pbe_nid, const EVP_CIPHER *cipher,
95 CBB *out, int pbe_nid, const EVP_CIPHER *cipher, const char *pass,
  /external/boringssl/src/crypto/cipher_extra/
e_null.c 79 static const EVP_CIPHER n_cipher = {
85 const EVP_CIPHER *EVP_enc_null(void) { return &n_cipher; }
e_rc4.c 81 static const EVP_CIPHER rc4 = {
87 const EVP_CIPHER *EVP_rc4(void) { return &rc4; }
cipher_extra.c 70 const EVP_CIPHER *EVP_get_cipherbynid(int nid) {
91 const EVP_CIPHER *EVP_get_cipherbyname(const char *name) {
cipher_test.cc 73 static const EVP_CIPHER *GetCipher(const std::string &name) {
152 static void TestOperation(FileTest *t, const EVP_CIPHER *cipher, bool encrypt,
192 // Note: the deprecated |EVP_CIPHER|-based AEAD API is sensitive to whether
216 const EVP_CIPHER *cipher = GetCipher(cipher_str);
317 const EVP_CIPHER *cipher;
derive_key.c 67 int EVP_BytesToKey(const EVP_CIPHER *type, const EVP_MD *md,
  /external/openssh/
cipher-bf1.c 40 const EVP_CIPHER * evp_ssh1_bf(void);
89 const EVP_CIPHER *
92 static EVP_CIPHER ssh1_bf;
94 memcpy(&ssh1_bf, EVP_bf_cbc(), sizeof(EVP_CIPHER));
cipher-ctr.c 126 const EVP_CIPHER *
129 static EVP_CIPHER aes_ctr;
131 memset(&aes_ctr, 0, sizeof(EVP_CIPHER));
cipher-3des1.c 50 const EVP_CIPHER * evp_ssh1_3des(void);
98 if (EVP_Cipher(&c->k1, dest, (u_char *)src, len) == 0 ||
99 EVP_Cipher(&c->k2, dest, dest, len) == 0 ||
100 EVP_Cipher(&c->k3, dest, dest, len) == 0)
142 const EVP_CIPHER *
145 static EVP_CIPHER ssh1_3des;
cipher-aes.c 142 const EVP_CIPHER *
145 static EVP_CIPHER rijndal_cbc;
147 memset(&rijndal_cbc, 0, sizeof(EVP_CIPHER));
  /external/boringssl/src/crypto/fipsmodule/cipher/
e_des.c 91 DEFINE_METHOD_FUNCTION(EVP_CIPHER, EVP_des_cbc) {
92 memset(out, 0, sizeof(EVP_CIPHER));
118 DEFINE_METHOD_FUNCTION(EVP_CIPHER, EVP_des_ecb) {
119 memset(out, 0, sizeof(EVP_CIPHER));
159 DEFINE_METHOD_FUNCTION(EVP_CIPHER, EVP_des_ede3_cbc) {
160 memset(out, 0, sizeof(EVP_CIPHER));
183 DEFINE_METHOD_FUNCTION(EVP_CIPHER, EVP_des_ede_cbc) {
184 memset(out, 0, sizeof(EVP_CIPHER));
211 DEFINE_METHOD_FUNCTION(EVP_CIPHER, EVP_des_ede) {
212 memset(out, 0, sizeof(EVP_CIPHER));
    [all...]
e_aes.c 534 DEFINE_LOCAL_DATA(EVP_CIPHER, aes_128_cbc_generic) {
535 memset(out, 0, sizeof(EVP_CIPHER));
547 DEFINE_LOCAL_DATA(EVP_CIPHER, aes_128_ctr_generic) {
548 memset(out, 0, sizeof(EVP_CIPHER));
560 DEFINE_LOCAL_DATA(EVP_CIPHER, aes_128_ecb_generic) {
561 memset(out, 0, sizeof(EVP_CIPHER));
572 DEFINE_LOCAL_DATA(EVP_CIPHER, aes_128_ofb_generic) {
573 memset(out, 0, sizeof(EVP_CIPHER));
585 DEFINE_LOCAL_DATA(EVP_CIPHER, aes_128_gcm_generic) {
586 memset(out, 0, sizeof(EVP_CIPHER));
    [all...]
cipher.c 133 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
147 // attempted to avoid this if the same ENGINE and EVP_CIPHER could be
230 int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
235 int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
469 int EVP_Cipher(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in,
491 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx) {
575 int EVP_CIPHER_nid(const EVP_CIPHER *cipher) { return cipher->nid; }
577 unsigned EVP_CIPHER_block_size(const EVP_CIPHER *cipher) {
581 unsigned EVP_CIPHER_key_length(const EVP_CIPHER *cipher) {
585 unsigned EVP_CIPHER_iv_length(const EVP_CIPHER *cipher)
    [all...]
  /external/boringssl/src/decrepit/cfb/
cfb.c 53 static const EVP_CIPHER aes_128_cfb128 = {
60 const EVP_CIPHER *EVP_aes_128_cfb128(void) { return &aes_128_cfb128; }
  /external/boringssl/src/crypto/pem/
pem_pk8.c 69 int nid, const EVP_CIPHER *enc,
72 int nid, const EVP_CIPHER *enc,
89 int PEM_write_bio_PKCS8PrivateKey(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
96 int i2d_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
111 const EVP_CIPHER *enc, char *kstr, int klen,
196 int i2d_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc,
216 int PEM_write_PKCS8PrivateKey(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc,
224 const EVP_CIPHER *enc, char *kstr, int klen,
  /external/boringssl/src/crypto/pkcs8/
internal.h 97 const EVP_CIPHER *(*cipher_func)(void);
118 const EVP_CIPHER *cipher, unsigned iterations,
p5_pbev2.c 88 const EVP_CIPHER *(*cipher_func)(void);
117 static const EVP_CIPHER *cbs_to_cipher(const CBS *cbs) {
142 static int pkcs5_pbe2_cipher_init(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
161 const EVP_CIPHER *cipher, unsigned iterations,
230 const EVP_CIPHER *cipher = cbs_to_cipher(&enc_obj);
  /external/openssh/openbsd-compat/
openssl-compat.h 51 const EVP_CIPHER *evp_aes_128_ctr(void);
  /external/boringssl/src/fipstools/
cavp_test_util.h 30 const EVP_CIPHER *GetCipher(const std::string &name);
32 bool CipherOperation(const EVP_CIPHER *cipher, std::vector<uint8_t> *out,
cavp_aes_test.cc 31 const EVP_CIPHER *cipher;
43 const EVP_CIPHER *cipher, std::vector<uint8_t> *out,
150 const EVP_CIPHER *cipher = ctx->cipher;
208 const EVP_CIPHER *cipher = GetCipher(argv[2]);
  /external/boringssl/src/decrepit/obj/
obj_decrepit.c 30 static void cipher_callback(const EVP_CIPHER *cipher, const char *name,
  /external/ipsec-tools/src/racoon/
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));

Completed in 394 milliseconds

1 2 3