Symbol: EVP_ENCODE_CTX
crypto/openssl/crypto/evp/bio_b64.c
41
EVP_ENCODE_CTX *base64;
crypto/openssl/crypto/evp/encode.c
19
static int evp_encodeblock_int(EVP_ENCODE_CTX *ctx, unsigned char *t,
crypto/openssl/crypto/evp/encode.c
21
static int evp_decodeblock_int(EVP_ENCODE_CTX *ctx, unsigned char *t,
crypto/openssl/crypto/evp/encode.c
348
EVP_ENCODE_CTX *EVP_ENCODE_CTX_new(void)
crypto/openssl/crypto/evp/encode.c
350
return OPENSSL_zalloc(sizeof(EVP_ENCODE_CTX));
crypto/openssl/crypto/evp/encode.c
353
void EVP_ENCODE_CTX_free(EVP_ENCODE_CTX *ctx)
crypto/openssl/crypto/evp/encode.c
358
int EVP_ENCODE_CTX_copy(EVP_ENCODE_CTX *dctx, const EVP_ENCODE_CTX *sctx)
crypto/openssl/crypto/evp/encode.c
360
memcpy(dctx, sctx, sizeof(EVP_ENCODE_CTX));
crypto/openssl/crypto/evp/encode.c
365
int EVP_ENCODE_CTX_num(EVP_ENCODE_CTX *ctx)
crypto/openssl/crypto/evp/encode.c
370
void evp_encode_ctx_set_flags(EVP_ENCODE_CTX *ctx, unsigned int flags)
crypto/openssl/crypto/evp/encode.c
375
void EVP_EncodeInit(EVP_ENCODE_CTX *ctx)
crypto/openssl/crypto/evp/encode.c
383
int EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/crypto/evp/encode.c
438
void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/evp/encode.c
452
static int evp_encodeblock_int(EVP_ENCODE_CTX *ctx, unsigned char *t,
crypto/openssl/crypto/evp/encode.c
494
void EVP_DecodeInit(EVP_ENCODE_CTX *ctx)
crypto/openssl/crypto/evp/encode.c
523
int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/crypto/evp/encode.c
633
static int evp_decodeblock_int(EVP_ENCODE_CTX *ctx, unsigned char *t,
crypto/openssl/crypto/evp/encode.c
718
int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl)
crypto/openssl/crypto/pem/pem_lib.c
638
EVP_ENCODE_CTX *ctx = EVP_ENCODE_CTX_new();
crypto/openssl/crypto/pem/pem_lib.c
945
EVP_ENCODE_CTX *ctx = NULL;
crypto/openssl/crypto/srp/srp_vfy.c
135
EVP_ENCODE_CTX *ctx = EVP_ENCODE_CTX_new();
crypto/openssl/crypto/srp/srp_vfy.c
46
EVP_ENCODE_CTX *ctx;
crypto/openssl/include/crypto/evp.h
889
void evp_encode_ctx_set_flags(EVP_ENCODE_CTX *ctx, unsigned int flags);
crypto/openssl/include/openssl/evp.h
893
EVP_ENCODE_CTX *EVP_ENCODE_CTX_new(void);
crypto/openssl/include/openssl/evp.h
894
void EVP_ENCODE_CTX_free(EVP_ENCODE_CTX *ctx);
crypto/openssl/include/openssl/evp.h
895
int EVP_ENCODE_CTX_copy(EVP_ENCODE_CTX *dctx, const EVP_ENCODE_CTX *sctx);
crypto/openssl/include/openssl/evp.h
896
int EVP_ENCODE_CTX_num(EVP_ENCODE_CTX *ctx);
crypto/openssl/include/openssl/evp.h
897
void EVP_EncodeInit(EVP_ENCODE_CTX *ctx);
crypto/openssl/include/openssl/evp.h
898
int EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/include/openssl/evp.h
900
void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
crypto/openssl/include/openssl/evp.h
903
void EVP_DecodeInit(EVP_ENCODE_CTX *ctx);
crypto/openssl/include/openssl/evp.h
904
int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
crypto/openssl/include/openssl/evp.h
906
int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
crypto/openssl/test/evp_test.c
3395
EVP_ENCODE_CTX *decode_ctx = NULL, *encode_ctx = NULL;