summaryrefslogtreecommitdiffstats
path: root/doc/encode.doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/encode.doc')
-rw-r--r--doc/encode.doc15
1 files changed, 0 insertions, 15 deletions
diff --git a/doc/encode.doc b/doc/encode.doc
deleted file mode 100644
index af17549289..0000000000
--- a/doc/encode.doc
+++ /dev/null
@@ -1,15 +0,0 @@
-
-void EVP_EncodeInit(EVP_ENCODE_CTX *ctx);
-void EVP_EncodeUpdate(EVP_ENCODE_CTX *ctx,unsigned char *out,
- int *outl,unsigned char *in,int inl);
-void EVP_EncodeFinal(EVP_ENCODE_CTX *ctx,unsigned char *out,int *outl);
-int EVP_EncodeBlock(unsigned char *t, unsigned char *f, int n);
-
-void EVP_DecodeInit(EVP_ENCODE_CTX *ctx);
-int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx,unsigned char *out,int *outl,
- unsigned char *in, int inl);
-int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned
- char *out, int *outl);
-int EVP_DecodeBlock(unsigned char *t, unsigned
- char *f, int n);
-