Fixed Sign nonce

This commit is contained in:
obscuren
2015-01-31 17:44:34 +01:00
parent cb382fa76b
commit a008c21cf0
2 changed files with 2 additions and 6 deletions

View File

@ -75,7 +75,7 @@ func RandByte(n int) []byte {
return nil
}
buff2 := RandByteWeakCrypto(n)
buff2 := saltByte(n)
for i := 0; i < n; i++ {
buff[i] ^= buff2[2]
}