summaryrefslogtreecommitdiff
path: root/lib/libcrypto/ripemd
diff options
context:
space:
mode:
authorBob Beck <beck@cvs.openbsd.org>2014-04-15 17:46:18 +0000
committerBob Beck <beck@cvs.openbsd.org>2014-04-15 17:46:18 +0000
commitbbeb3f5222ca7a9778752167c29b1e10329251e3 (patch)
tree42e3e69581f98e196bd7697ca363207d1a34d64d /lib/libcrypto/ripemd
parent9c46e5f86cd4453c3060f281f9a85641f750eff5 (diff)
Send the rotIBM stream cipher (ebcdic) to Valhalla to party for eternity
with the bearded ones... some API's that nobody should be using will dissapear with this commit.
Diffstat (limited to 'lib/libcrypto/ripemd')
-rw-r--r--lib/libcrypto/ripemd/rmdtest.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/libcrypto/ripemd/rmdtest.c b/lib/libcrypto/ripemd/rmdtest.c
index fb34e0e836c..b32fda96ed9 100644
--- a/lib/libcrypto/ripemd/rmdtest.c
+++ b/lib/libcrypto/ripemd/rmdtest.c
@@ -72,10 +72,6 @@ int main(int argc, char *argv[])
#include <openssl/ripemd.h>
#include <openssl/evp.h>
-#ifdef CHARSET_EBCDIC
-#include <openssl/ebcdic.h>
-#endif
-
static char *test[]={
"",
"a",
@@ -112,9 +108,6 @@ int main(int argc, char *argv[])
i=1;
while (*P != NULL)
{
-#ifdef CHARSET_EBCDIC
- ebcdic2ascii((char *)*P, (char *)*P, strlen((char *)*P));
-#endif
EVP_Digest(&(P[0][0]),strlen((char *)*P),md,NULL,EVP_ripemd160(), NULL);
p=pt(md);
if (strcmp(p,(char *)*R) != 0)