Update deps

This commit is contained in:
Frank Denis 2021-01-02 12:53:28 +01:00
parent 3b18058ae5
commit 45829aaa45
4 changed files with 5 additions and 5 deletions

View file

@ -18,7 +18,7 @@ func SharedKey(secretKey [32]byte, publicKey [32]byte) ([32]byte, error) {
}
if c == 0 {
if _, err := crypto_rand.Read(sharedKey[:]); err != nil {
return sharedKey, nil
return sharedKey, err
}
return sharedKey, errors.New("weak public key")
}