mirror of
https://github.com/rls-moe/nyx
synced 2024-11-14 22:12:24 +00:00
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
|
||
|
}
|