Home
last modified time | relevance | path

Searched refs:EVP_ENCODE_CTX (Results 1 – 8 of 8) sorted by relevance

/freebsd-12-stable/crypto/openssl/crypto/evp/
Dencode.c19 static int evp_encodeblock_int(EVP_ENCODE_CTX *ctx, unsigned char *t,
21 static int evp_decodeblock_int(EVP_ENCODE_CTX *ctx, unsigned char *t,
127 EVP_ENCODE_CTX *EVP_ENCODE_CTX_new(void) in EVP_ENCODE_CTX_new()
129 return OPENSSL_zalloc(sizeof(EVP_ENCODE_CTX)); in EVP_ENCODE_CTX_new()
132 void EVP_ENCODE_CTX_free(EVP_ENCODE_CTX *ctx) in EVP_ENCODE_CTX_free()
137 int EVP_ENCODE_CTX_copy(EVP_ENCODE_CTX *dctx, EVP_ENCODE_CTX *sctx) in EVP_ENCODE_CTX_copy()
139 memcpy(dctx, sctx, sizeof(EVP_ENCODE_CTX)); in EVP_ENCODE_CTX_copy()
144 int EVP_ENCODE_CTX_num(EVP_ENCODE_CTX *ctx) in EVP_ENCODE_CTX_num()
149 void evp_encode_ctx_set_flags(EVP_ENCODE_CTX *ctx, unsigned int flags) in evp_encode_ctx_set_flags()
154 void EVP_EncodeInit(EVP_ENCODE_CTX *ctx) in EVP_EncodeInit()
[all …]
Dbio_b64.c41 EVP_ENCODE_CTX *base64;
/freebsd-12-stable/crypto/openssl/doc/man3/
DEVP_EncodeInit.pod14 EVP_ENCODE_CTX *EVP_ENCODE_CTX_new(void);
15 void EVP_ENCODE_CTX_free(EVP_ENCODE_CTX *ctx);
16 int EVP_ENCODE_CTX_copy(EVP_ENCODE_CTX *dctx, EVP_ENCODE_CTX *sctx);
17 int EVP_ENCODE_CTX_num(EVP_ENCODE_CTX *ctx);
18 void EVP_EncodeInit(EVP_ENCODE_CTX *ctx);
19 int EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
21 void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
24 void EVP_DecodeInit(EVP_ENCODE_CTX *ctx);
25 int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
27 int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
[all …]
/freebsd-12-stable/crypto/openssl/include/openssl/
Devp.h658 EVP_ENCODE_CTX *EVP_ENCODE_CTX_new(void);
659 void EVP_ENCODE_CTX_free(EVP_ENCODE_CTX *ctx);
660 int EVP_ENCODE_CTX_copy(EVP_ENCODE_CTX *dctx, EVP_ENCODE_CTX *sctx);
661 int EVP_ENCODE_CTX_num(EVP_ENCODE_CTX *ctx);
662 void EVP_EncodeInit(EVP_ENCODE_CTX *ctx);
663 int EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
665 void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
668 void EVP_DecodeInit(EVP_ENCODE_CTX *ctx);
669 int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
671 int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned
Dossl_typ.h100 typedef struct evp_Encode_Ctx_st EVP_ENCODE_CTX; typedef
/freebsd-12-stable/crypto/openssl/crypto/srp/
Dsrp_vfy.c43 EVP_ENCODE_CTX *ctx; in t_fromb64()
132 EVP_ENCODE_CTX *ctx = EVP_ENCODE_CTX_new(); in t_tob64()
/freebsd-12-stable/crypto/openssl/crypto/pem/
Dpem_lib.c607 EVP_ENCODE_CTX *ctx = EVP_ENCODE_CTX_new(); in PEM_write_bio()
902 EVP_ENCODE_CTX *ctx = NULL; in PEM_read_bio_ex()
/freebsd-12-stable/crypto/openssl/include/crypto/
Devp.h436 void evp_encode_ctx_set_flags(EVP_ENCODE_CTX *ctx, unsigned int flags);