Symbol: EVP_ENCODE_CTX
crypto/libressl/crypto/evp/bio_b64.c
92
EVP_ENCODE_CTX base64;
crypto/libressl/crypto/evp/encode.c
126
EVP_ENCODE_CTX *
crypto/libressl/crypto/evp/encode.c
129
return calloc(1, sizeof(EVP_ENCODE_CTX));
crypto/libressl/crypto/evp/encode.c
133
EVP_ENCODE_CTX_free(EVP_ENCODE_CTX *ctx)
crypto/libressl/crypto/evp/encode.c
139
EVP_EncodeInit(EVP_ENCODE_CTX *ctx)
crypto/libressl/crypto/evp/encode.c
147
EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/libressl/crypto/evp/encode.c
197
EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl)
crypto/libressl/crypto/evp/encode.c
243
EVP_DecodeInit(EVP_ENCODE_CTX *ctx)
crypto/libressl/crypto/evp/encode.c
252
EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/libressl/crypto/evp/encode.c
400
EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl)
crypto/libressl/crypto/pem/pem_lib.c
600
EVP_ENCODE_CTX ctx;
crypto/libressl/crypto/pem/pem_lib.c
671
EVP_ENCODE_CTX ctx;
crypto/libressl/include/openssl/evp.h
535
EVP_ENCODE_CTX *EVP_ENCODE_CTX_new(void);
crypto/libressl/include/openssl/evp.h
536
void EVP_ENCODE_CTX_free(EVP_ENCODE_CTX *ctx);
crypto/libressl/include/openssl/evp.h
537
void EVP_EncodeInit(EVP_ENCODE_CTX *ctx);
crypto/libressl/include/openssl/evp.h
538
int EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/libressl/include/openssl/evp.h
540
void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
crypto/libressl/include/openssl/evp.h
543
void EVP_DecodeInit(EVP_ENCODE_CTX *ctx);
crypto/libressl/include/openssl/evp.h
544
int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/libressl/include/openssl/evp.h
546
int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);