django password hasher implementation for golang.
# django model operation
User.objects.create_user(username='test', password='test')
package main
import (
"fmt"
"github.com/eatmoreapple/hasher"
)
func main() {
fmt.Println(hasher.Verify("test", "hashed password from django")) // true, nil
}