Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/crypto/evp/
H A 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,
348 EVP_ENCODE_CTX *EVP_ENCODE_CTX_new(void) in EVP_ENCODE_CTX_new()
350 return OPENSSL_zalloc(sizeof(EVP_ENCODE_CTX)); in EVP_ENCODE_CTX_new()
353 void EVP_ENCODE_CTX_free(EVP_ENCODE_CTX *ctx) in EVP_ENCODE_CTX_free()
358 int EVP_ENCODE_CTX_copy(EVP_ENCODE_CTX *dctx, const EVP_ENCODE_CTX *sctx) in EVP_ENCODE_CTX_copy()
360 memcpy(dctx, sctx, sizeof(EVP_ENCODE_CTX)); in EVP_ENCODE_CTX_copy()
365 int EVP_ENCODE_CTX_num(EVP_ENCODE_CTX *ctx) in EVP_ENCODE_CTX_num()
370 void evp_encode_ctx_set_flags(EVP_ENCODE_CTX *ctx, unsigned int flags) in evp_encode_ctx_set_flags()
375 void EVP_EncodeInit(EVP_ENCODE_CTX *ctx) in EVP_EncodeInit()
[all …]
H A Dbio_b64.c41 EVP_ENCODE_CTX *base64;
/freebsd/crypto/openssl/doc/man3/
H A 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/crypto/openssl/include/openssl/
H A Devp.h893 EVP_ENCODE_CTX *EVP_ENCODE_CTX_new(void);
894 void EVP_ENCODE_CTX_free(EVP_ENCODE_CTX *ctx);
895 int EVP_ENCODE_CTX_copy(EVP_ENCODE_CTX *dctx, const EVP_ENCODE_CTX *sctx);
896 int EVP_ENCODE_CTX_num(EVP_ENCODE_CTX *ctx);
897 void EVP_EncodeInit(EVP_ENCODE_CTX *ctx);
898 int EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
900 void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
903 void EVP_DecodeInit(EVP_ENCODE_CTX *ctx);
904 int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
906 int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
H A Dtypes.h142 typedef struct evp_Encode_Ctx_st EVP_ENCODE_CTX; typedef
/freebsd/crypto/openssl/crypto/srp/
H A Dsrp_vfy.c46 EVP_ENCODE_CTX *ctx; in t_fromb64()
135 EVP_ENCODE_CTX *ctx = EVP_ENCODE_CTX_new(); in t_tob64()
/freebsd/crypto/openssl/crypto/pem/
H A Dpem_lib.c638 EVP_ENCODE_CTX *ctx = EVP_ENCODE_CTX_new(); in PEM_write_bio()
945 EVP_ENCODE_CTX *ctx = NULL; in PEM_read_bio_ex()
/freebsd/crypto/openssl/util/
H A Dindent.pro237 -T EVP_ENCODE_CTX
/freebsd/crypto/openssl/include/crypto/
H A Devp.h889 void evp_encode_ctx_set_flags(EVP_ENCODE_CTX *ctx, unsigned int flags);
/freebsd/crypto/openssl/test/
H A Devp_test.c3395 EVP_ENCODE_CTX *decode_ctx = NULL, *encode_ctx = NULL; in encode_test_run()