diff options
author | Ben Laurie <ben@openssl.org> | 1999-03-22 13:22:14 +0100 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 1999-03-22 13:22:14 +0100 |
commit | b4cadc6e1343c01b06613053a90ed2ee85e65090 (patch) | |
tree | 5670424b0d897cd7f8161e321f0f514131265159 /crypto/bf/bf_ecb.c | |
parent | Add missing pipe char to "make dist" target. (diff) | |
download | openssl-b4cadc6e1343c01b06613053a90ed2ee85e65090.tar.xz openssl-b4cadc6e1343c01b06613053a90ed2ee85e65090.zip |
Fix security hole.
Diffstat (limited to 'crypto/bf/bf_ecb.c')
-rw-r--r-- | crypto/bf/bf_ecb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/bf/bf_ecb.c b/crypto/bf/bf_ecb.c index 0af1405c06..fd362b7cc9 100644 --- a/crypto/bf/bf_ecb.c +++ b/crypto/bf/bf_ecb.c @@ -58,13 +58,14 @@ #include "blowfish.h" #include "bf_locl.h" +#include "opensslv.h" /* Blowfish as implemented from 'Blowfish: Springer-Verlag paper' * (From LECTURE NOTES IN COIMPUTER SCIENCE 809, FAST SOFTWARE ENCRYPTION, * CAMBRIDGE SECURITY WORKSHOP, CAMBRIDGE, U.K., DECEMBER 9-11, 1993) */ -char *BF_version="BlowFish part of OpenSSL 0.9.2 31-Dec-1998"; +char *BF_version="BlowFish" OPENSSL_VERSION_PTEXT; char *BF_options() { |