diff options
Diffstat (limited to 'openbsd-compat/sha1.c')
-rw-r--r-- | openbsd-compat/sha1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/sha1.c b/openbsd-compat/sha1.c index 4b5381f87..c616778e2 100644 --- a/openbsd-compat/sha1.c +++ b/openbsd-compat/sha1.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sha1.c,v 1.23 2014/01/08 06:14:57 tedu Exp $ */ | 1 | /* $OpenBSD: sha1.c,v 1.24 2015/01/15 13:05:59 millert Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * SHA-1 in C | 4 | * SHA-1 in C |
@@ -172,6 +172,6 @@ SHA1Final(u_int8_t digest[SHA1_DIGEST_LENGTH], SHA1_CTX *context) | |||
172 | digest[i] = (u_int8_t) | 172 | digest[i] = (u_int8_t) |
173 | ((context->state[i>>2] >> ((3-(i & 3)) * 8) ) & 255); | 173 | ((context->state[i>>2] >> ((3-(i & 3)) * 8) ) & 255); |
174 | } | 174 | } |
175 | memset(context, 0, sizeof(*context)); | 175 | explicit_bzero(context, sizeof(*context)); |
176 | } | 176 | } |
177 | #endif /* !WITH_OPENSSL */ | 177 | #endif /* !WITH_OPENSSL */ |