diff options
author | 2014-07-12 20:11:45 +0000 | |
---|---|---|
committer | 2014-07-12 20:11:45 +0000 | |
commit | e5b6e7ce24fae5eb85bd876c3dcbfa92b0cce25c (patch) | |
tree | ca380330d78b2b09a57963bd3656d644458910f1 /lib/libssl/src/crypto/rc4/rc4_skey.c | |
parent | Mark the interface down and cancel the watchdog timer in imxenet_stop(). (diff) | |
download | wireguard-openbsd-e5b6e7ce24fae5eb85bd876c3dcbfa92b0cce25c.tar.xz wireguard-openbsd-e5b6e7ce24fae5eb85bd876c3dcbfa92b0cce25c.zip |
Remove private_{Camellia,RC4}_set_key FIPS indirection tentacles, as has been
done for other symmetric algorithms recently.
Diffstat (limited to 'lib/libssl/src/crypto/rc4/rc4_skey.c')
-rw-r--r-- | lib/libssl/src/crypto/rc4/rc4_skey.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/src/crypto/rc4/rc4_skey.c b/lib/libssl/src/crypto/rc4/rc4_skey.c index 282ed7cc1b5..455cd44d136 100644 --- a/lib/libssl/src/crypto/rc4/rc4_skey.c +++ b/lib/libssl/src/crypto/rc4/rc4_skey.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rc4_skey.c,v 1.11 2014/07/09 11:10:51 bcook Exp $ */ +/* $OpenBSD: rc4_skey.c,v 1.12 2014/07/12 20:11:45 miod Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -83,7 +83,7 @@ const char *RC4_options(void) * Date: Wed, 14 Sep 1994 06:35:31 GMT */ -void private_RC4_set_key(RC4_KEY *key, int len, const unsigned char *data) +void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data) { register RC4_INT tmp; register int id1,id2; |