blob: c7edc984818984447a2b0460cbba74b340ccc11c (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# KMAC
KMAC128 and KMAC256 are message authentication codes defined by NIST in
https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-185.pdf. The
implementation here is based on the `crypto/sha3` package from the Go
standard library.
I do not recommend using this package. Consider using `crypto/hmac` instead.
|