aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public_key/src/public_key.erl
diff options
context:
space:
mode:
authorPéter Dimitrov <[email protected]>2019-04-17 14:24:08 +0200
committerIngela Anderton Andin <[email protected]>2019-04-30 17:17:03 +0200
commit1e125133aba0fb0207a5784d7d7c3a01fb96131a (patch)
tree9d4e8d551c62e1988b7e6b72b9b7b66936de2286 /lib/public_key/src/public_key.erl
parent87f44e652f366295e99b90426f4deecf4657124e (diff)
downloadotp-1e125133aba0fb0207a5784d7d7c3a01fb96131a.tar.gz
otp-1e125133aba0fb0207a5784d7d7c3a01fb96131a.tar.bz2
otp-1e125133aba0fb0207a5784d7d7c3a01fb96131a.zip
public_key: Accept digest types 'sha1' and 'sha'
Update type spec for digest_type() to reflect that functions with this type accept the (wrong) atom 'sha1'. The right behavior would be to only accept 'sha' as that is the only valid value of crypto:sha1(). Update rsa_digest_oid/1 and ecdsa_digest_oid/1 to accept digest 'sha'. Change-Id: I03219396b797435298e098e03b93286b352e07e2
Diffstat (limited to 'lib/public_key/src/public_key.erl')
-rw-r--r--lib/public_key/src/public_key.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/public_key/src/public_key.erl b/lib/public_key/src/public_key.erl
index 47c5dbb95a..d02df27a00 100644
--- a/lib/public_key/src/public_key.erl
+++ b/lib/public_key/src/public_key.erl
@@ -112,6 +112,7 @@
-type ssh_file() :: openssh_public_key | rfc4716_public_key | known_hosts |
auth_keys.
-type digest_type() :: none % None is for backwards compatibility
+ | sha1 % Backwards compatibility
| crypto:rsa_digest_type()
| crypto:dss_digest_type()
| crypto:ecdsa_digest_type().