(t *testing.T)
| 66 | } |
| 67 | |
| 68 | func TestLegacy(t *testing.T) { |
| 69 | a := assertions.New(t) |
| 70 | |
| 71 | // this is a pair generated by django |
| 72 | ok, err := Validate("pbkdf2$sha256$30000$salt$4v3K66vbKbwv3vnwnf32hdzoK8O03GOiBcWFNHul9bo", "secret") |
| 73 | a.So(err, should.BeNil) |
| 74 | a.So(ok, should.BeTrue) |
| 75 | } |