aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-05-05 21:48:43 +0200
committerRichard Levitte <levitte@openssl.org>2015-05-05 21:48:43 +0200
commit3c161d081e2d30549e787437d05ffa08122a5114 (patch)
tree2545ff55a6078983e5010819ed6362e94a947525
parentcefc93910c4c0f7fa9f8c1f8f7aad084a7fa87d2 (diff)
downloadopenssl-3c161d081e2d30549e787437d05ffa08122a5114.tar.gz
Remove the last traces of the fake RLE compression
Reviewed-by: Matt Caswell <matt@openssl.org>
-rw-r--r--crypto/objects/objects.txt2
-rw-r--r--include/openssl/comp.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/crypto/objects/objects.txt b/crypto/objects/objects.txt
index 2fc85b4bc4..57d13b6a54 100644
--- a/crypto/objects/objects.txt
+++ b/crypto/objects/objects.txt
@@ -839,8 +839,6 @@ mime-mhs-headings 1 : id-hex-partial-message : id-hex-partial-message
mime-mhs-headings 2 : id-hex-multipart-message : id-hex-multipart-message
# What the hell are these OIDs, really?
-!Cname rle-compression
-1 1 1 1 666 1 : RLE : run length compression
!Cname zlib-compression
id-smime-alg 8 : ZLIB : zlib compression
diff --git a/include/openssl/comp.h b/include/openssl/comp.h
index 406c428aae..6799b0f472 100644
--- a/include/openssl/comp.h
+++ b/include/openssl/comp.h
@@ -43,7 +43,6 @@ int COMP_compress_block(COMP_CTX *ctx, unsigned char *out, int olen,
unsigned char *in, int ilen);
int COMP_expand_block(COMP_CTX *ctx, unsigned char *out, int olen,
unsigned char *in, int ilen);
-COMP_METHOD *COMP_rle(void);
COMP_METHOD *COMP_zlib(void);
void COMP_zlib_cleanup(void);