mirror of https://gogs.blitter.com/RLabs/xs
12 lines
288 B
Go
12 lines
288 B
Go
package abstract
|
|
|
|
import "crypto/subtle"
|
|
|
|
// Compares two strings (typicaly password hashes) in a secure, constant-time
|
|
// fashion. Returns true iff they are equal.
|
|
func SecureCompare(a, b string) bool {
|
|
ab := []byte(a)
|
|
bb := []byte(b)
|
|
return subtle.ConstantTimeCompare(ab, bb) == 1
|
|
}
|