evalphobia/hierogolyph

View on GitHub
hasher/interface.go

Summary

Maintainability
A
0 mins
Test Coverage
package hasher

type Hasher interface {
    Hash(password, salt string) string
}