[OPTIONAL] list the keygrip IDs using
gpg --list-secret-keys --with-keygrip
If ALL your private keys are on external cards like the Yubikey, you can delete them all using:
rm -r ~/.gnupg/private-keys-v1.d
[OPTIONAL] list the keygrip IDs using
gpg --list-secret-keys --with-keygrip
If ALL your private keys are on external cards like the Yubikey, you can delete them all using:
rm -r ~/.gnupg/private-keys-v1.d
// Degrees to Radians | |
func degreesToRadians(_ number: Double) -> Double { | |
return number * .pi / 180 | |
} | |
// Radians to Degrees | |
func radiansToDegrees(_ number: Double) -> Double { | |
return number / Double.pi * 180 | |
} |