package main
import (
"crypto/sha256"
"fmt"
"strconv"
)
func main() {
for i := 1; i <= 100; i++ {
hash := sha256.Sum256([]byte(strconv.Itoa(i)))
fmt.Printf("%d. %x\n", i, hash)
}
}
1 Like