Open olegbespalov opened 4 weeks ago
WebCrypto API defines HKDF algorithm identifier (https://www.w3.org/TR/WebCryptoAPI/#hkdf) for operations like:
HKDF
Golang has an implementation in x/crypto https://pkg.go.dev/golang.org/x/crypto/hkdf.
x/crypto
As part of the issue, probably following web platform tests (see README) should be enabled:
Having support of the HKDF makes our implementation compliant with web crypto API
What?
WebCrypto API defines
HKDF
algorithm identifier (https://www.w3.org/TR/WebCryptoAPI/#hkdf) for operations like:Golang has an implementation in
x/crypto
https://pkg.go.dev/golang.org/x/crypto/hkdf.As part of the issue, probably following web platform tests (see README) should be enabled:
HKDF
Why?
Having support of the
HKDF
makes our implementation compliant with web crypto API