/wordpress-hash-go

Implementation of Wordpress Hash functions for Golang

Primary LanguageGoMIT LicenseMIT

Wordpress Hasher for Golang

Godoc reference Build Status Code Climate

Implementation of Wordpress hashing system for Golang

Installation

go get github.com/GerardSoleCa/wordpress-hash-go

Usage

    import "github.com/GerardSoleCa/wordpress-hash-go"
    
    func main(){
        password := "thisisapassword"
        hash := wphash.HashPassword(password)
        checked := wphash.CheckPassword(password, hash)
    }

Tests

go test

License

MIT