dev(ciphers): provide EitherShakeOrBlake for 32 bytes KEY_LEN and 32 bytes of HASH_LEN based on SHAKE256 and the incorrect blake2b-hmac

This commit is contained in:
David Niehues
2025-02-11 17:34:42 +01:00
parent 54c8e91db4
commit 793cfd227f

View File

@@ -28,3 +28,5 @@ where
} }
} }
} }
pub type EitherShakeOrBlake = HashChoice<32, 32, anyhow::Error, SHAKE256Core<32, 32>, Blake2bCore>;