summaryrefslogtreecommitdiff
path: root/lib/stdlib
diff options
context:
space:
mode:
authorHans Nilsson <hans@erlang.org>2021-04-26 10:43:14 +0200
committerHans Nilsson <hans@erlang.org>2021-05-03 09:01:00 +0200
commitbc7fa6a8211965fffd6731c68909205e7348e4c4 (patch)
tree93bc96182c71bb72279a6e34588748de113f8b3d /lib/stdlib
parentb213072d6643cc06048577a039d66d47ec76ebd7 (diff)
downloaderlang-bc7fa6a8211965fffd6731c68909205e7348e4c4.tar.gz
pubkey: Deprecate ssh fingerprint and ssh_encode/ssh_decode functions
Diffstat (limited to 'lib/stdlib')
-rw-r--r--lib/stdlib/src/otp_internal.erl8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/stdlib/src/otp_internal.erl b/lib/stdlib/src/otp_internal.erl
index 1e34728d0d..86196d47d1 100644
--- a/lib/stdlib/src/otp_internal.erl
+++ b/lib/stdlib/src/otp_internal.erl
@@ -87,6 +87,14 @@ obsolete(net, relay, 1) ->
{deprecated, "use slave:relay/1 instead"};
obsolete(net, sleep, 1) ->
{deprecated, "use 'receive after T -> ok end' instead"};
+obsolete(public_key, ssh_decode, 2) ->
+ {deprecated, "use ssh_file:decode/2 instead", "OTP 26"};
+obsolete(public_key, ssh_encode, 2) ->
+ {deprecated, "use ssh_file:encode/2 instead", "OTP 26"};
+obsolete(public_key, ssh_hostkey_fingerprint, 1) ->
+ {deprecated, "use ssh:hostkey_fingerprint/1 instead", "OTP 26"};
+obsolete(public_key, ssh_hostkey_fingerprint, 2) ->
+ {deprecated, "use ssh:hostkey_fingerprint/2 instead", "OTP 26"};
obsolete(queue, lait, 1) ->
{deprecated, "use queue:liat/1 instead"};
obsolete(snmpm, async_get, 3) ->