diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/bf/bf_ofb64.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/libcrypto/bf/bf_ofb64.c b/src/lib/libcrypto/bf/bf_ofb64.c index 83a76550f9..e7aefef09d 100644 --- a/src/lib/libcrypto/bf/bf_ofb64.c +++ b/src/lib/libcrypto/bf/bf_ofb64.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bf_ofb64.c,v 1.6 2022/11/11 12:08:29 jsing Exp $ */ | 1 | /* $OpenBSD: bf_ofb64.c,v 1.7 2022/11/11 12:18:25 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -57,9 +57,11 @@ | |||
57 | */ | 57 | */ |
58 | 58 | ||
59 | #include <openssl/blowfish.h> | 59 | #include <openssl/blowfish.h> |
60 | |||
60 | #include "bf_locl.h" | 61 | #include "bf_locl.h" |
61 | 62 | ||
62 | /* The input and output encrypted as though 64bit ofb mode is being | 63 | /* |
64 | * The input and output encrypted as though 64bit ofb mode is being | ||
63 | * used. The extra state information to record how much of the | 65 | * used. The extra state information to record how much of the |
64 | * 64bit block we have used is contained in *num; | 66 | * 64bit block we have used is contained in *num; |
65 | */ | 67 | */ |
@@ -107,4 +109,3 @@ BF_ofb64_encrypt(const unsigned char *in, unsigned char *out, long length, | |||
107 | t = v0 = v1 = ti[0] = ti[1] = 0; | 109 | t = v0 = v1 = ti[0] = ti[1] = 0; |
108 | *num = n; | 110 | *num = n; |
109 | } | 111 | } |
110 | |||