]> git.ipfire.org Git - thirdparty/openssl.git/blob - doc/encode.doc
Import of old SSLeay release: SSLeay 0.8.1b
[thirdparty/openssl.git] / doc / encode.doc
1
2 void EVP_EncodeInit(EVP_ENCODE_CTX *ctx);
3 void EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx,unsigned char *out,
4 int *outl,unsigned char *in,int inl);
5 void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx,unsigned char *out,int *outl);
6 int EVP_EncodeBlock(unsigned char *t, unsigned char *f, int n);
7
8 void EVP_DecodeInit(EVP_ENCODE_CTX *ctx);
9 int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx,unsigned char *out,int *outl,
10 unsigned char *in, int inl);
11 int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned
12 char *out, int *outl);
13 int EVP_DecodeBlock(unsigned char *t, unsigned
14 char *f, int n);
15