summaryrefslogtreecommitdiff
path: root/digest-openssl.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2020-10-29 02:52:43 +0000
committerDamien Miller <djm@mindrot.org>2020-10-29 13:54:13 +1100
commit1a14c13147618144d1798c36a588397ba9008fcc (patch)
treee6948cbaa84207e9262993355072ee981ed812dc /digest-openssl.c
parent815209abfdd2991fb92ad7d2e33374916cdcbcf4 (diff)
downloadopenssh-git-1a14c13147618144d1798c36a588397ba9008fcc.tar.gz
upstream: whitespace; no code change
OpenBSD-Commit-ID: efefc1c47e880887bdee8cd2127ca93177eaad79
Diffstat (limited to 'digest-openssl.c')
-rw-r--r--digest-openssl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/digest-openssl.c b/digest-openssl.c
index dbbea425..e073a807 100644
--- a/digest-openssl.c
+++ b/digest-openssl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: digest-openssl.c,v 1.7 2017/05/08 22:57:38 djm Exp $ */
+/* $OpenBSD: digest-openssl.c,v 1.9 2020/10/29 02:52:43 djm Exp $ */
/*
* Copyright (c) 2013 Damien Miller <djm@mindrot.org>
*
@@ -56,11 +56,11 @@ struct ssh_digest {
/* NB. Indexed directly by algorithm number */
const struct ssh_digest digests[] = {
- { SSH_DIGEST_MD5, "MD5", 16, EVP_md5 },
- { SSH_DIGEST_SHA1, "SHA1", 20, EVP_sha1 },
- { SSH_DIGEST_SHA256, "SHA256", 32, EVP_sha256 },
+ { SSH_DIGEST_MD5, "MD5", 16, EVP_md5 },
+ { SSH_DIGEST_SHA1, "SHA1", 20, EVP_sha1 },
+ { SSH_DIGEST_SHA256, "SHA256", 32, EVP_sha256 },
{ SSH_DIGEST_SHA384, "SHA384", 48, EVP_sha384 },
- { SSH_DIGEST_SHA512, "SHA512", 64, EVP_sha512 },
+ { SSH_DIGEST_SHA512, "SHA512", 64, EVP_sha512 },
{ -1, NULL, 0, NULL },
};