8 lines
85 B
Go
8 lines
85 B
Go
package main
|
|
|
|
import "crypto/hmac"
|
|
|
|
func main() {
|
|
hmac.New(nil, []byte{'1', '2'})
|
|
}
|