Lines Matching refs:OPENSSL_EXPORT
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);
86 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_ctr(void);
87 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_ofb(void);
89 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_ecb(void);
90 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_cbc(void);
91 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_ctr(void);
92 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_ofb(void);
93 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_xts(void);
97 OPENSSL_EXPORT const EVP_CIPHER *EVP_enc_null(void);
100 OPENSSL_EXPORT const EVP_CIPHER *EVP_rc2_cbc(void);
110 OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbynid(int nid);
119 OPENSSL_EXPORT void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx);
123 OPENSSL_EXPORT EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void);
127 OPENSSL_EXPORT int EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *ctx);
131 OPENSSL_EXPORT void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *ctx);
135 OPENSSL_EXPORT int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out,
140 OPENSSL_EXPORT int EVP_CIPHER_CTX_reset(EVP_CIPHER_CTX *ctx);
152 OPENSSL_EXPORT int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,
158 OPENSSL_EXPORT int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx,
163 OPENSSL_EXPORT int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx,
174 OPENSSL_EXPORT int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
184 OPENSSL_EXPORT int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out,
191 OPENSSL_EXPORT int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
201 OPENSSL_EXPORT int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out,
219 OPENSSL_EXPORT int EVP_Cipher(EVP_CIPHER_CTX *ctx, uint8_t *out,
224 OPENSSL_EXPORT int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
230 OPENSSL_EXPORT int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out,
238 OPENSSL_EXPORT const EVP_CIPHER *EVP_CIPHER_CTX_cipher(
244 OPENSSL_EXPORT int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ctx);
248 OPENSSL_EXPORT int EVP_CIPHER_CTX_encrypting(const EVP_CIPHER_CTX *ctx);
253 OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx);
257 OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx);
261 OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_iv_length(const EVP_CIPHER_CTX *ctx);
265 OPENSSL_EXPORT void *EVP_CIPHER_CTX_get_app_data(const EVP_CIPHER_CTX *ctx);
269 OPENSSL_EXPORT void EVP_CIPHER_CTX_set_app_data(EVP_CIPHER_CTX *ctx,
274 OPENSSL_EXPORT uint32_t EVP_CIPHER_CTX_flags(const EVP_CIPHER_CTX *ctx);
278 OPENSSL_EXPORT uint32_t EVP_CIPHER_CTX_mode(const EVP_CIPHER_CTX *ctx);
283 OPENSSL_EXPORT int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int command,
289 OPENSSL_EXPORT int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *ctx, int pad);
294 OPENSSL_EXPORT int EVP_CIPHER_CTX_set_key_length(EVP_CIPHER_CTX *ctx,
302 OPENSSL_EXPORT int EVP_CIPHER_nid(const EVP_CIPHER *cipher);
306 OPENSSL_EXPORT unsigned EVP_CIPHER_block_size(const EVP_CIPHER *cipher);
312 OPENSSL_EXPORT unsigned EVP_CIPHER_key_length(const EVP_CIPHER *cipher);
316 OPENSSL_EXPORT unsigned EVP_CIPHER_iv_length(const EVP_CIPHER *cipher);
320 OPENSSL_EXPORT uint32_t EVP_CIPHER_flags(const EVP_CIPHER *cipher);
323 OPENSSL_EXPORT uint32_t EVP_CIPHER_mode(const EVP_CIPHER *cipher);
332 OPENSSL_EXPORT int EVP_BytesToKey(const EVP_CIPHER *type, const EVP_MD *md,
394 OPENSSL_EXPORT int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
399 OPENSSL_EXPORT int EVP_EncryptInit(EVP_CIPHER_CTX *ctx,
404 OPENSSL_EXPORT int EVP_DecryptInit(EVP_CIPHER_CTX *ctx,
409 OPENSSL_EXPORT int EVP_add_cipher_alias(const char *a, const char *b);
413 OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbyname(const char *name);
418 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_gcm(void);
419 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_gcm(void);
422 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_ecb(void);
423 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_cbc(void);
424 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_ctr(void);
425 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_gcm(void);
426 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_ofb(void);
429 OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede3_ecb(void);
432 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_cfb128(void);
436 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_cfb(void);
439 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_cfb128(void);
443 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_cfb(void);
446 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_cfb128(void);
450 OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_cfb(void);
453 OPENSSL_EXPORT const EVP_CIPHER *EVP_bf_ecb(void);
456 OPENSSL_EXPORT const EVP_CIPHER *EVP_bf_cbc(void);
459 OPENSSL_EXPORT const EVP_CIPHER *EVP_bf_cfb(void);
462 OPENSSL_EXPORT const EVP_CIPHER *EVP_cast5_ecb(void);
465 OPENSSL_EXPORT const EVP_CIPHER *EVP_cast5_cbc(void);
475 OPENSSL_EXPORT void EVP_CIPHER_CTX_set_flags(const EVP_CIPHER_CTX *ctx,