mirror of
https://github.com/wneessen/go-hibp.git
synced 2024-11-14 17:32:53 +01:00
23 lines
396 B
Go
23 lines
396 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
hibp "github.com/wneessen/go-hibp"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
hc := hibp.New()
|
||
|
if hc == nil {
|
||
|
panic("failed to create HIBP client")
|
||
|
}
|
||
|
|
||
|
m, _, err := hc.PwnedPassApi.CheckPassword("test")
|
||
|
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)
|
||
|
}
|
||
|
}
|