mirror of
https://github.com/wneessen/go-hibp.git
synced 2024-11-13 00:52:52 +01:00
19 lines
410 B
Go
19 lines
410 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/wneessen/go-hibp"
|
|
)
|
|
|
|
func main() {
|
|
hc := hibp.New()
|
|
pwHash := "a94a8fe5ccb19ba61c4c0873d391e987982fbbd3" // represents the PW: "test"
|
|
m, _, err := hc.PwnedPassApi.CheckSHA1(pwHash)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if m != nil && m.Count != 0 {
|
|
fmt.Printf("Your password with the hash %q was found %d times in the pwned passwords DB\n",
|
|
m.Hash, m.Count)
|
|
}
|
|
}
|