# Desc: Gets gpg fingerprint but replaces uid email addresses with hashes
# Usage: bk-gpgfp-noemail 0xdc3469c9 74810B012346C9A6
# Depends: gpg, b2sum
+# Version: 0.0.2
yell() { echo "$0: $*" >&2; } # print script path and all args to stderr
die() { yell "$*"; exit 111; } # same as yell() but non-zero exit status
# Author: Steven Baltakatei Sandoval
# License: GPLv3+
+
+# Dependencies
+
+#1
+ # b2sum (GNU coreutils) 8.32
+ # Copyright (C) 2020 Free Software Foundation, Inc.
+ # License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
+ # This is free software: you are free to change and redistribute it.
+ # There is NO WARRANTY, to the extent permitted by law.
+
+ # Written by Padraig Brady and Samuel Neves.
+
+#2
+ # gpg (GnuPG) 2.2.20
+ # libgcrypt 1.8.8
+ # Copyright (C) 2020 Free Software Foundation, Inc.
+ # License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
+ # This is free software: you are free to change and redistribute it.
+ # There is NO WARRANTY, to the extent permitted by law.
+
+ # Home: /home/baltakatei/.gnupg
+ # Supported algorithms:
+ # Pubkey: RSA, ELG, DSA, ECDH, ECDSA, EDDSA
+ # Cipher: IDEA, 3DES, CAST5, BLOWFISH, AES, AES192, AES256, TWOFISH,
+ # CAMELLIA128, CAMELLIA192, CAMELLIA256
+ # Hash: SHA1, RIPEMD160, SHA256, SHA384, SHA512, SHA224
+ # Compression: Uncompressed, ZIP, ZLIB, BZIP2
+
+#3
+ # GNU bash, version 5.1.8(1)-release (x86_64-pc-linux-gnu)
+ # Copyright (C) 2020 Free Software Foundation, Inc.
+ # License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+
+ # This is free software; you are free to change and redistribute it.
+ # There is NO WARRANTY, to the extent permitted by law.