Add hashed fingerprint functionality to RSA relay identity keys
Some checks failed
CI / ci (push) Failing after 3m10s

fixes #3
This commit is contained in:
Abel Luck 2025-09-10 13:38:05 +02:00
parent 62b243c8e4
commit 4eadc8416e
5 changed files with 70 additions and 6 deletions

View file

@ -33,4 +33,9 @@ output "public_key_fingerprint_sha1" {
output "public_key_fingerprint_sha256" {
description = "SHA256 fingerprint of the RSA public key"
value = tor_relay_identity_rsa.example.public_key_fingerprint_sha256
}
output "public_key_fingerprint_sha1_hashed" {
description = "Hashed SHA1 fingerprint of the RSA public key for privacy in monitoring systems"
value = tor_relay_identity_rsa.example.public_key_fingerprint_sha1_hashed
}