Searched refs:EVP_CIPHER_CTX (Results 76 - 100 of 480) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl/crypto/evp/
H A De_idea.c68 static int idea_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
76 static int idea_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
98 static int idea_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
H A Devp_enc.c80 void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx)
82 memset(ctx, 0, sizeof(EVP_CIPHER_CTX));
86 EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void)
88 EVP_CIPHER_CTX *ctx = OPENSSL_malloc(sizeof *ctx);
94 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
102 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
267 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
276 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
284 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
292 int EVP_EncryptInit(EVP_CIPHER_CTX *ct
[all...]
H A Devp.h317 int (*init) (EVP_CIPHER_CTX *ctx, const unsigned char *key,
320 int (*do_cipher) (EVP_CIPHER_CTX *ctx, unsigned char *out,
323 int (*cleanup) (EVP_CIPHER_CTX *);
327 int (*set_asn1_parameters) (EVP_CIPHER_CTX *, ASN1_TYPE *);
329 int (*get_asn1_parameters) (EVP_CIPHER_CTX *, ASN1_TYPE *);
331 int (*ctrl) (EVP_CIPHER_CTX *, int type, int arg, void *ptr);
466 } /* EVP_CIPHER_CTX */ ;
485 typedef int (EVP_PBE_KEYGEN) (EVP_CIPHER_CTX *ctx, const char *pass,
537 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx);
538 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ct
[all...]
H A De_des.c94 static int des_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
96 static int des_ctrl(EVP_CIPHER_CTX *c, int type, int arg, void *ptr);
103 static int des_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
112 static int des_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
128 static int des_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
150 static int des_cfb64_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
170 static int des_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
198 static int des_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
226 static int des_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
253 static int des_ctrl(EVP_CIPHER_CTX *
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source4/heimdal/lib/hcrypto/
H A Devp-hcrypto.c55 aes_init(EVP_CIPHER_CTX *ctx,
69 aes_do_cipher(EVP_CIPHER_CTX *ctx,
80 aes_cleanup(EVP_CIPHER_CTX *ctx)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl-1.0.0q/crypto/evp/
H A De_idea.c68 static int idea_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
75 static int idea_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
98 static int idea_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
H A Devp.h307 int (*init)(EVP_CIPHER_CTX *ctx, const unsigned char *key,
309 int (*do_cipher)(EVP_CIPHER_CTX *ctx, unsigned char *out,
311 int (*cleanup)(EVP_CIPHER_CTX *); /* cleanup ctx */
313 int (*set_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Populate a ASN1_TYPE with parameters */
314 int (*get_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Get parameters from a ASN1_TYPE */
315 int (*ctrl)(EVP_CIPHER_CTX *, int type, int arg, void *ptr); /* Miscellaneous operations */
387 } /* EVP_CIPHER_CTX */;
403 typedef int (EVP_PBE_KEYGEN)(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
454 const EVP_CIPHER * EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx);
455 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ct
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/openssl/crypto/evp/
H A Devp_enc.c80 void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx)
82 memset(ctx, 0, sizeof(EVP_CIPHER_CTX));
86 EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void)
88 EVP_CIPHER_CTX *ctx = OPENSSL_malloc(sizeof *ctx);
94 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
102 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
267 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
276 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
284 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
292 int EVP_EncryptInit(EVP_CIPHER_CTX *ct
[all...]
H A Devp.h317 int (*init) (EVP_CIPHER_CTX *ctx, const unsigned char *key,
320 int (*do_cipher) (EVP_CIPHER_CTX *ctx, unsigned char *out,
323 int (*cleanup) (EVP_CIPHER_CTX *);
327 int (*set_asn1_parameters) (EVP_CIPHER_CTX *, ASN1_TYPE *);
329 int (*get_asn1_parameters) (EVP_CIPHER_CTX *, ASN1_TYPE *);
331 int (*ctrl) (EVP_CIPHER_CTX *, int type, int arg, void *ptr);
466 } /* EVP_CIPHER_CTX */ ;
485 typedef int (EVP_PBE_KEYGEN) (EVP_CIPHER_CTX *ctx, const char *pass,
537 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx);
538 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ct
[all...]
H A De_des.c94 static int des_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
96 static int des_ctrl(EVP_CIPHER_CTX *c, int type, int arg, void *ptr);
103 static int des_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
112 static int des_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
128 static int des_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
150 static int des_cfb64_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
170 static int des_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
198 static int des_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
226 static int des_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
253 static int des_ctrl(EVP_CIPHER_CTX *
[all...]
H A De_camellia.c66 static int camellia_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
118 static int cmll_t4_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
181 static int cmll_t4_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
185 static int cmll_t4_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
189 static int cmll_t4_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
193 static int cmll_t4_cfb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
197 static int cmll_t4_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
201 static int cmll_t4_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
205 static int cmll_t4_ctr_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
256 static int camellia_init_key(EVP_CIPHER_CTX *ct
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl/crypto/evp/
H A Devp_enc.c80 void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx)
82 memset(ctx, 0, sizeof(EVP_CIPHER_CTX));
86 EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void)
88 EVP_CIPHER_CTX *ctx = OPENSSL_malloc(sizeof *ctx);
94 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
102 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
267 int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl,
276 int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
284 int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl)
292 int EVP_EncryptInit(EVP_CIPHER_CTX *ct
[all...]
H A Devp.h317 int (*init) (EVP_CIPHER_CTX *ctx, const unsigned char *key,
320 int (*do_cipher) (EVP_CIPHER_CTX *ctx, unsigned char *out,
323 int (*cleanup) (EVP_CIPHER_CTX *);
327 int (*set_asn1_parameters) (EVP_CIPHER_CTX *, ASN1_TYPE *);
329 int (*get_asn1_parameters) (EVP_CIPHER_CTX *, ASN1_TYPE *);
331 int (*ctrl) (EVP_CIPHER_CTX *, int type, int arg, void *ptr);
466 } /* EVP_CIPHER_CTX */ ;
485 typedef int (EVP_PBE_KEYGEN) (EVP_CIPHER_CTX *ctx, const char *pass,
537 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx);
538 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ct
[all...]
H A De_des.c94 static int des_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
96 static int des_ctrl(EVP_CIPHER_CTX *c, int type, int arg, void *ptr);
103 static int des_ecb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
112 static int des_ofb_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
128 static int des_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
150 static int des_cfb64_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
170 static int des_cfb1_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
198 static int des_cfb8_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
226 static int des_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
253 static int des_ctrl(EVP_CIPHER_CTX *
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/openssl/include/openssl/
H A Devp.h317 int (*init) (EVP_CIPHER_CTX *ctx, const unsigned char *key,
320 int (*do_cipher) (EVP_CIPHER_CTX *ctx, unsigned char *out,
323 int (*cleanup) (EVP_CIPHER_CTX *);
327 int (*set_asn1_parameters) (EVP_CIPHER_CTX *, ASN1_TYPE *);
329 int (*get_asn1_parameters) (EVP_CIPHER_CTX *, ASN1_TYPE *);
331 int (*ctrl) (EVP_CIPHER_CTX *, int type, int arg, void *ptr);
466 } /* EVP_CIPHER_CTX */ ;
485 typedef int (EVP_PBE_KEYGEN) (EVP_CIPHER_CTX *ctx, const char *pass,
537 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx);
538 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ct
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/openssl-1.0.0q/include/openssl/
H A Devp.h307 int (*init)(EVP_CIPHER_CTX *ctx, const unsigned char *key,
309 int (*do_cipher)(EVP_CIPHER_CTX *ctx, unsigned char *out,
311 int (*cleanup)(EVP_CIPHER_CTX *); /* cleanup ctx */
313 int (*set_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Populate a ASN1_TYPE with parameters */
314 int (*get_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Get parameters from a ASN1_TYPE */
315 int (*ctrl)(EVP_CIPHER_CTX *, int type, int arg, void *ptr); /* Miscellaneous operations */
387 } /* EVP_CIPHER_CTX */;
403 typedef int (EVP_PBE_KEYGEN)(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
454 const EVP_CIPHER * EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx);
455 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ct
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/openssl-1.0.0q/crypto/evp/
H A Devp.h307 int (*init)(EVP_CIPHER_CTX *ctx, const unsigned char *key,
309 int (*do_cipher)(EVP_CIPHER_CTX *ctx, unsigned char *out,
311 int (*cleanup)(EVP_CIPHER_CTX *); /* cleanup ctx */
313 int (*set_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Populate a ASN1_TYPE with parameters */
314 int (*get_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Get parameters from a ASN1_TYPE */
315 int (*ctrl)(EVP_CIPHER_CTX *, int type, int arg, void *ptr); /* Miscellaneous operations */
387 } /* EVP_CIPHER_CTX */;
403 typedef int (EVP_PBE_KEYGEN)(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
454 const EVP_CIPHER * EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx);
455 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ct
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl-1.0.0q/include/openssl/
H A Devp.h307 int (*init)(EVP_CIPHER_CTX *ctx, const unsigned char *key,
309 int (*do_cipher)(EVP_CIPHER_CTX *ctx, unsigned char *out,
311 int (*cleanup)(EVP_CIPHER_CTX *); /* cleanup ctx */
313 int (*set_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Populate a ASN1_TYPE with parameters */
314 int (*get_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Get parameters from a ASN1_TYPE */
315 int (*ctrl)(EVP_CIPHER_CTX *, int type, int arg, void *ptr); /* Miscellaneous operations */
387 } /* EVP_CIPHER_CTX */;
403 typedef int (EVP_PBE_KEYGEN)(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
454 const EVP_CIPHER * EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx);
455 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ct
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl/include/openssl/
H A Devp.h317 int (*init) (EVP_CIPHER_CTX *ctx, const unsigned char *key,
320 int (*do_cipher) (EVP_CIPHER_CTX *ctx, unsigned char *out,
323 int (*cleanup) (EVP_CIPHER_CTX *);
327 int (*set_asn1_parameters) (EVP_CIPHER_CTX *, ASN1_TYPE *);
329 int (*get_asn1_parameters) (EVP_CIPHER_CTX *, ASN1_TYPE *);
331 int (*ctrl) (EVP_CIPHER_CTX *, int type, int arg, void *ptr);
466 } /* EVP_CIPHER_CTX */ ;
485 typedef int (EVP_PBE_KEYGEN) (EVP_CIPHER_CTX *ctx, const char *pass,
537 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx);
538 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ct
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl-1.0.0q/crypto/evp/
H A Devp.h307 int (*init)(EVP_CIPHER_CTX *ctx, const unsigned char *key,
309 int (*do_cipher)(EVP_CIPHER_CTX *ctx, unsigned char *out,
311 int (*cleanup)(EVP_CIPHER_CTX *); /* cleanup ctx */
313 int (*set_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Populate a ASN1_TYPE with parameters */
314 int (*get_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Get parameters from a ASN1_TYPE */
315 int (*ctrl)(EVP_CIPHER_CTX *, int type, int arg, void *ptr); /* Miscellaneous operations */
387 } /* EVP_CIPHER_CTX */;
403 typedef int (EVP_PBE_KEYGEN)(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
454 const EVP_CIPHER * EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx);
455 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ct
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl/include/openssl/
H A Devp.h317 int (*init) (EVP_CIPHER_CTX *ctx, const unsigned char *key,
320 int (*do_cipher) (EVP_CIPHER_CTX *ctx, unsigned char *out,
323 int (*cleanup) (EVP_CIPHER_CTX *);
327 int (*set_asn1_parameters) (EVP_CIPHER_CTX *, ASN1_TYPE *);
329 int (*get_asn1_parameters) (EVP_CIPHER_CTX *, ASN1_TYPE *);
331 int (*ctrl) (EVP_CIPHER_CTX *, int type, int arg, void *ptr);
466 } /* EVP_CIPHER_CTX */ ;
485 typedef int (EVP_PBE_KEYGEN) (EVP_CIPHER_CTX *ctx, const char *pass,
537 const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx);
538 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ct
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl-1.0.0q/include/openssl/
H A Devp.h307 int (*init)(EVP_CIPHER_CTX *ctx, const unsigned char *key,
309 int (*do_cipher)(EVP_CIPHER_CTX *ctx, unsigned char *out,
311 int (*cleanup)(EVP_CIPHER_CTX *); /* cleanup ctx */
313 int (*set_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Populate a ASN1_TYPE with parameters */
314 int (*get_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Get parameters from a ASN1_TYPE */
315 int (*ctrl)(EVP_CIPHER_CTX *, int type, int arg, void *ptr); /* Miscellaneous operations */
387 } /* EVP_CIPHER_CTX */;
403 typedef int (EVP_PBE_KEYGEN)(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
454 const EVP_CIPHER * EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx);
455 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ct
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/usr/include/openssl/
H A Devp.h307 int (*init)(EVP_CIPHER_CTX *ctx, const unsigned char *key,
309 int (*do_cipher)(EVP_CIPHER_CTX *ctx, unsigned char *out,
311 int (*cleanup)(EVP_CIPHER_CTX *); /* cleanup ctx */
313 int (*set_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Populate a ASN1_TYPE with parameters */
314 int (*get_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Get parameters from a ASN1_TYPE */
315 int (*ctrl)(EVP_CIPHER_CTX *, int type, int arg, void *ptr); /* Miscellaneous operations */
387 } /* EVP_CIPHER_CTX */;
403 typedef int (EVP_PBE_KEYGEN)(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
454 const EVP_CIPHER * EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx);
455 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ct
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-brcm-linux-uclibcgnueabi/sysroot/usr/include/openssl/
H A Devp.h307 int (*init)(EVP_CIPHER_CTX *ctx, const unsigned char *key,
309 int (*do_cipher)(EVP_CIPHER_CTX *ctx, unsigned char *out,
311 int (*cleanup)(EVP_CIPHER_CTX *); /* cleanup ctx */
313 int (*set_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Populate a ASN1_TYPE with parameters */
314 int (*get_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Get parameters from a ASN1_TYPE */
315 int (*ctrl)(EVP_CIPHER_CTX *, int type, int arg, void *ptr); /* Miscellaneous operations */
387 } /* EVP_CIPHER_CTX */;
403 typedef int (EVP_PBE_KEYGEN)(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
454 const EVP_CIPHER * EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx);
455 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ct
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/toolchains/hndtools-arm-linux-2.6.36-uclibc-4.5.3/arm-linux/sysroot/usr/include/openssl/
H A Devp.h307 int (*init)(EVP_CIPHER_CTX *ctx, const unsigned char *key,
309 int (*do_cipher)(EVP_CIPHER_CTX *ctx, unsigned char *out,
311 int (*cleanup)(EVP_CIPHER_CTX *); /* cleanup ctx */
313 int (*set_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Populate a ASN1_TYPE with parameters */
314 int (*get_asn1_parameters)(EVP_CIPHER_CTX *, ASN1_TYPE *); /* Get parameters from a ASN1_TYPE */
315 int (*ctrl)(EVP_CIPHER_CTX *, int type, int arg, void *ptr); /* Miscellaneous operations */
387 } /* EVP_CIPHER_CTX */;
403 typedef int (EVP_PBE_KEYGEN)(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
454 const EVP_CIPHER * EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx);
455 int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ct
[all...]

Completed in 287 milliseconds

1234567891011>>