Skip to content

DTreshy/passwd

Repository files navigation

passwd

version licence codecov coverage Tests passing Go Reference Go Report Card Maintainability

A very simple library for your passwords

How to use?

hash, err := passwd.Hash("myverystrongpassword123!")
if err != nil {
    return err
}

result := passwd.Check("myverystrongpassword123!", hash)