Fixes #171.
Fixes #172.

R=agl1
https://golang.org/cl/154136
This commit is contained in:
Russ Cox 2009-11-14 10:28:53 -08:00
parent aebae2577a
commit 933d1850ce
2 changed files with 2 additions and 2 deletions

View file

@ -23,7 +23,7 @@ func ConstantTimeCompare(x, y []byte) int {
// Its behavior is undefined if v takes any other value.
func ConstantTimeSelect(v, x, y int) int { return ^(v-1)&x | (v-1)&y }
// ConstantTimeByteEq returns 1 if x == x and 0 otherwise.
// ConstantTimeByteEq returns 1 if x == y and 0 otherwise.
func ConstantTimeByteEq(x, y uint8) int {
z := ^(x ^ y);
z &= z >> 4;

View file

@ -81,6 +81,6 @@ little:
t.Errorf("Read little-endian: %v", err)
}
if !reflect.DeepEqual(sl, s) {
t.Errorf("Read big-endian:\n\thave %+v\n\twant %+v", sl, s)
t.Errorf("Read little-endian:\n\thave %+v\n\twant %+v", sl, s)
}
}