Searched refs:EVP_CIPHER (Results 1 - 25 of 142) sorted by relevance

123456

/macosx-10.10/OpenSSL098-52/src/crypto/evp/
H A De_old.c73 const EVP_CIPHER *EVP_bf_cfb(void);
74 const EVP_CIPHER *EVP_bf_cfb(void) { return EVP_bf_cfb64(); }
79 const EVP_CIPHER *EVP_des_cfb(void);
80 const EVP_CIPHER *EVP_des_cfb(void) { return EVP_des_cfb64(); }
82 const EVP_CIPHER *EVP_des_ede3_cfb(void);
83 const EVP_CIPHER *EVP_des_ede3_cfb(void) { return EVP_des_ede3_cfb64(); }
85 const EVP_CIPHER *EVP_des_ede_cfb(void);
86 const EVP_CIPHER *EVP_des_ede_cfb(void) { return EVP_des_ede_cfb64(); }
92 const EVP_CIPHER *EVP_rc2_cfb(void);
93 const EVP_CIPHER *EVP_rc2_cf
[all...]
H A Devp.h349 } /* EVP_CIPHER */;
396 const EVP_CIPHER *cipher;
402 const EVP_CIPHER *cipher;
436 ASN1_TYPE *param, const EVP_CIPHER *cipher,
489 int EVP_CIPHER_nid(const EVP_CIPHER *cipher);
491 int EVP_CIPHER_block_size(const EVP_CIPHER *cipher);
492 int EVP_CIPHER_key_length(const EVP_CIPHER *cipher);
493 int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher);
494 unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher);
497 const EVP_CIPHER * EVP_CIPHER_CTX_ciphe
[all...]
H A De_null.c68 static const EVP_CIPHER n_cipher=
83 const EVP_CIPHER *EVP_enc_null(void)
H A De_rc4.c83 static const EVP_CIPHER r4_cipher=
98 static const EVP_CIPHER r4_40_cipher=
113 const EVP_CIPHER *EVP_rc4(void)
118 const EVP_CIPHER *EVP_rc4_40(void)
H A Dnames.c65 int EVP_add_cipher(const EVP_CIPHER *c)
104 const EVP_CIPHER *EVP_get_cipherbyname(const char *name)
106 const EVP_CIPHER *cp;
108 cp=(const EVP_CIPHER *)OBJ_NAME_get(name,OBJ_NAME_TYPE_CIPHER_METH);
H A Devp_lib.c123 int EVP_CIPHER_type(const EVP_CIPHER *ctx)
181 int EVP_CIPHER_block_size(const EVP_CIPHER *e)
191 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx)
196 unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher)
211 int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher)
216 int EVP_CIPHER_key_length(const EVP_CIPHER *cipher)
H A De_xcbc_d.c83 static const EVP_CIPHER d_xcbc_cipher=
98 const EVP_CIPHER *EVP_desx_cbc(void)
/macosx-10.10/OpenSSH-189/osslshim/ossl/
H A Dossl-evp-cc.h117 const EVP_CIPHER *EVP_cc_bf_cbc(void);
118 const EVP_CIPHER *EVP_cc_bf_ecb(void);
120 const EVP_CIPHER *EVP_cc_cast5_cbc(void);
121 const EVP_CIPHER *EVP_cc_cast5_ecb(void);
123 const EVP_CIPHER *EVP_cc_rc2_cbc(void);
124 const EVP_CIPHER *EVP_cc_rc2_40_cbc(void);
125 const EVP_CIPHER *EVP_cc_rc2_64_cbc(void);
127 const EVP_CIPHER *EVP_cc_rc4(void);
128 const EVP_CIPHER *EVP_cc_rc4_40(void);
130 const EVP_CIPHER *EVP_cc_des_cb
[all...]
H A Dossl-evp.h205 typedef struct ossl_CIPHER EVP_CIPHER; typedef in typeref:struct:ossl_CIPHER
220 * cipher is used in (use EVP_CIPHER.._mode() to extract the
258 const EVP_CIPHER * cipher;
299 const EVP_CIPHER * cipher;
330 const EVP_CIPHER *EVP_aes_128_cbc(void);
331 const EVP_CIPHER *EVP_aes_128_ecb(void);
332 const EVP_CIPHER *EVP_aes_192_cbc(void);
333 const EVP_CIPHER *EVP_aes_192_ecb(void);
334 const EVP_CIPHER *EVP_aes_256_cbc(void);
335 const EVP_CIPHER *EVP_aes_256_ec
[all...]
H A Dossl-pem.h62 int PEM_write_bio_RSAPrivateKey(BIO *bp, RSA *x, const EVP_CIPHER *enc,
65 int PEM_write_bio_DSAPrivateKey(BIO *bp, DSA *x, const EVP_CIPHER *enc,
76 int PEM_write_RSAPrivateKey(FILE *fp, RSA *rsa, const EVP_CIPHER *enc, unsigned char *kstr,
78 int PEM_write_DSAPrivateKey(FILE *fp, DSA *dsa, const EVP_CIPHER *enc, unsigned char *kstr,
H A Dossl-evp-cc.c359 * @return the DES-EDE3-ECB EVP_CIPHER pointer.
363 const EVP_CIPHER *
367 static const EVP_CIPHER c =
394 * @return the DES-EDE3-CBC EVP_CIPHER pointer.
398 const EVP_CIPHER *
402 static const EVP_CIPHER c =
474 * @return the DES-ECB EVP_CIPHER pointer.
478 const EVP_CIPHER *
482 static const EVP_CIPHER c =
509 * @return the DES-CBC EVP_CIPHER pointe
[all...]
H A Dossl-evp.c648 EVP_CIPHER_nid(const EVP_CIPHER *c)
662 EVP_CIPHER_block_size(const EVP_CIPHER *c)
676 EVP_CIPHER_key_length(const EVP_CIPHER *c)
690 EVP_CIPHER_iv_length(const EVP_CIPHER *c)
765 * Return the EVP_CIPHER for a EVP_CIPHER_CTX context.
769 * @return the EVP_CIPHER pointer.
771 const EVP_CIPHER *
890 EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *c, ENGINE *engine,
950 EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *c, const void *key,
1144 * @return the null EVP_CIPHER pointe
[all...]
/macosx-10.10/ruby-106/ruby/ext/openssl/
H A Dossl_cipher.h17 const EVP_CIPHER *GetCipherPtr(VALUE);
18 VALUE ossl_cipher_new(const EVP_CIPHER *);
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Devp-cc.h78 const EVP_CIPHER * EVP_cc_rc2_cbc(void);
79 const EVP_CIPHER * EVP_cc_rc2_40_cbc(void);
80 const EVP_CIPHER * EVP_cc_rc2_64_cbc(void);
82 const EVP_CIPHER * EVP_cc_rc4(void);
83 const EVP_CIPHER * EVP_cc_rc4_40(void);
85 const EVP_CIPHER * EVP_cc_des_cbc(void);
86 const EVP_CIPHER * EVP_cc_des_ede3_cbc(void);
88 const EVP_CIPHER * EVP_cc_aes_128_cbc(void);
89 const EVP_CIPHER * EVP_cc_aes_192_cbc(void);
90 const EVP_CIPHER * EVP_cc_aes_256_cb
[all...]
H A Devp-hcrypto.h78 const EVP_CIPHER * EVP_hcrypto_rc4(void);
79 const EVP_CIPHER * EVP_hcrypto_rc4_40(void);
81 const EVP_CIPHER * EVP_hcrypto_rc2_cbc(void);
82 const EVP_CIPHER * EVP_hcrypto_rc2_40_cbc(void);
83 const EVP_CIPHER * EVP_hcrypto_rc2_64_cbc(void);
85 const EVP_CIPHER * EVP_hcrypto_des_cbc(void);
86 const EVP_CIPHER * EVP_hcrypto_des_ede3_cbc(void);
88 const EVP_CIPHER * EVP_hcrypto_aes_128_cbc(void);
89 const EVP_CIPHER * EVP_hcrypto_aes_192_cbc(void);
90 const EVP_CIPHER * EVP_hcrypto_aes_256_cb
[all...]
H A Devp.h118 typedef struct hc_CIPHER EVP_CIPHER; typedef in typeref:struct:hc_CIPHER
133 * cipher is used in (use EVP_CIPHER.._mode() to extract the
159 const EVP_CIPHER *cipher;
233 const EVP_CIPHER * EVP_aes_128_cbc(void);
234 const EVP_CIPHER * EVP_aes_192_cbc(void);
235 const EVP_CIPHER * EVP_aes_256_cbc(void);
236 const EVP_CIPHER * EVP_aes_128_cfb8(void);
237 const EVP_CIPHER * EVP_aes_192_cfb8(void);
238 const EVP_CIPHER * EVP_aes_256_cfb8(void);
239 HC_DEPRECATED_CRYPTO const EVP_CIPHER * EVP_des_cb
[all...]
H A Devp-hcrypto.c96 * @return the AES-128 EVP_CIPHER pointer.
101 const EVP_CIPHER *
104 static const EVP_CIPHER aes_128_cbc = {
126 * @return the AES-192 EVP_CIPHER pointer.
131 const EVP_CIPHER *
134 static const EVP_CIPHER aes_192_cbc = {
155 * @return the AES-256 EVP_CIPHER pointer.
160 const EVP_CIPHER *
163 static const EVP_CIPHER aes_256_cbc = {
184 * @return the AES-128 EVP_CIPHER pointe
[all...]
H A Devp-cc.c172 * @return the DES-EDE3-CBC EVP_CIPHER pointer.
177 const EVP_CIPHER *
181 static const EVP_CIPHER des_ede3_cbc = {
221 * @return the DES-CBC EVP_CIPHER pointer.
226 const EVP_CIPHER *
230 static const EVP_CIPHER des_ede3_cbc = {
270 * @return the AES-128-CBC EVP_CIPHER pointer.
275 const EVP_CIPHER *
279 static const EVP_CIPHER c = {
303 * @return the AES-192-CBC EVP_CIPHER pointe
[all...]
H A Devp.c521 EVP_CIPHER_block_size(const EVP_CIPHER *c)
537 EVP_CIPHER_key_length(const EVP_CIPHER *c)
553 EVP_CIPHER_iv_length(const EVP_CIPHER *c)
633 * Return the EVP_CIPHER for a EVP_CIPHER_CTX context.
637 * @return the EVP_CIPHER pointer.
642 const EVP_CIPHER *
776 EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *c, ENGINE *engine,
1009 * @return the null EVP_CIPHER pointer.
1014 const EVP_CIPHER *
1017 static const EVP_CIPHER enc_nul
[all...]
/macosx-10.10/OpenSSL098-52/src/include/openssl/
H A Devp.h349 } /* EVP_CIPHER */;
396 const EVP_CIPHER *cipher;
402 const EVP_CIPHER *cipher;
436 ASN1_TYPE *param, const EVP_CIPHER *cipher,
489 int EVP_CIPHER_nid(const EVP_CIPHER *cipher);
491 int EVP_CIPHER_block_size(const EVP_CIPHER *cipher);
492 int EVP_CIPHER_key_length(const EVP_CIPHER *cipher);
493 int EVP_CIPHER_iv_length(const EVP_CIPHER *cipher);
494 unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher);
497 const EVP_CIPHER * EVP_CIPHER_CTX_ciphe
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/openssl/
H A Devp.h345 } EVP_CIPHER; typedef in typeref:struct:evp_cipher_st
349 const EVP_CIPHER *cipher;
355 const EVP_CIPHER *cipher;
421 ASN1_TYPE *param, EVP_CIPHER *cipher,
503 int EVP_BytesToKey(const EVP_CIPHER *type,EVP_MD *md,unsigned char *salt,
507 void EVP_EncryptInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *type,
513 void EVP_DecryptInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *type,
519 void EVP_CipherInit(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *type,
531 int EVP_OpenInit(EVP_CIPHER_CTX *ctx,EVP_CIPHER *type,unsigned char *ek,
535 int EVP_SealInit(EVP_CIPHER_CTX *ctx, EVP_CIPHER *typ
[all...]
/macosx-10.10/OpenSSH-189/openssh/
H A Dcipher-bf1.c49 const EVP_CIPHER * evp_ssh1_bf(void);
98 const EVP_CIPHER *
101 static EVP_CIPHER ssh1_bf;
103 memcpy(&ssh1_bf, EVP_bf_cbc(), sizeof(EVP_CIPHER));
/macosx-10.10/OpenSSL098-52/src/ssl/
H A Dkssl_lcl.h78 EVP_CIPHER *kssl_map_enc(krb5_enctype enctype);
/macosx-10.10/OpenSSL098-52/src/crypto/pkcs7/
H A Dpk7_enc.c71 PKCS7_cipher(PKCS7 *p7,EVP_CIPHER *cipher);
/macosx-10.10/OpenSSL098-52/src/crypto/engine/
H A Dtb_cipher.c119 const EVP_CIPHER *ENGINE_get_cipher(ENGINE *e, int nid)
121 const EVP_CIPHER *ret;

Completed in 291 milliseconds

123456