Files
llgo/_cmptest/hmacdemo/hmac.go
tsingbx 6a05aa4e53 llgo support crypto hmac (#663)
* llgo support crypto/hmac
2024-08-06 16:47:51 +08:00

8 lines
85 B
Go

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