diff options
author | 2014-07-03 03:26:43 +0000 | |
---|---|---|
committer | 2014-07-03 03:26:43 +0000 | |
commit | 6de019f973ac3c03e449a6fb8f4fcb43ed8c1a09 (patch) | |
tree | 6d40b77336d80168b9ebc9e45c56c3f0a292ddba /usr.bin/ssh | |
parent | make stdout line-buffered; saves partial output getting lost when (diff) | |
download | wireguard-openbsd-6de019f973ac3c03e449a6fb8f4fcb43ed8c1a09.tar.xz wireguard-openbsd-6de019f973ac3c03e449a6fb8f4fcb43ed8c1a09.zip |
use EVP_Digest() for one-shot hash instead of creating, updating,
finalising and destroying a context.
bz#2231, based on patch from Timo Teras
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/digest-openssl.c | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/usr.bin/ssh/digest-openssl.c b/usr.bin/ssh/digest-openssl.c index d36f829f3cf..e524a05aac9 100644 --- a/usr.bin/ssh/digest-openssl.c +++ b/usr.bin/ssh/digest-openssl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: digest-openssl.c,v 1.3 2014/06/24 01:13:21 djm Exp $ */ +/* $OpenBSD: digest-openssl.c,v 1.4 2014/07/03 03:26:43 djm Exp $ */ /* * Copyright (c) 2013 Damien Miller <djm@mindrot.org> * @@ -145,15 +145,18 @@ ssh_digest_free(struct ssh_digest_ctx *ctx) int ssh_digest_memory(int alg, const void *m, size_t mlen, u_char *d, size_t dlen) { - struct ssh_digest_ctx *ctx = ssh_digest_start(alg); - int r; + const struct ssh_digest *digest = ssh_digest_by_alg(alg); + u_int mdlen; - if (ctx == NULL) + if (digest == NULL) + return SSH_ERR_INVALID_ARGUMENT; + if (dlen > UINT_MAX) return SSH_ERR_INVALID_ARGUMENT; - if ((r = ssh_digest_update(ctx, m, mlen) != 0) || - (r = ssh_digest_final(ctx, d, dlen) != 0)) - return r; - ssh_digest_free(ctx); + if (dlen < digest->digest_len) + return SSH_ERR_INVALID_ARGUMENT; + mdlen = dlen; + if (!EVP_Digest(m, mlen, d, &mdlen, digest->mdfunc(), NULL)) + return SSH_ERR_LIBCRYPTO_ERROR; return 0; } |