1
0
mirror of https://github.com/hslam/ftok.git synced 2025-04-27 13:48:49 +08:00

update ftok example

This commit is contained in:
hslam 2020-11-27 17:16:02 +08:00
parent e3bf32b2cf
commit a0c8cf24ad

View File

@ -26,11 +26,11 @@ import (
)
func main() {
key_t, err := ftok.Ftok("/tmp", 0x22)
key, err := ftok.Ftok("/tmp", 0x22)
if err != nil {
return
}
fmt.Printf("%x", key_t)
fmt.Printf("%x", key)
}
```