llgo support crypto hmac (#663)

* llgo support crypto/hmac
This commit is contained in:
tsingbx
2024-08-06 16:47:51 +08:00
committed by GitHub
parent 43fd5d233a
commit 6a05aa4e53
5 changed files with 270 additions and 10 deletions

View File

@@ -0,0 +1,7 @@
package main
import "crypto/hmac"
func main() {
hmac.New(nil, []byte{'1', '2'})
}