2018-01-11 22:38:50 +01:00
|
|
|
package xsecretbox
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
2018-02-14 14:39:43 +01:00
|
|
|
"github.com/aead/chacha20/chacha"
|
2019-09-09 18:45:42 +02:00
|
|
|
"golang.org/x/crypto/curve25519"
|
2018-01-11 22:38:50 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// SharedKey computes a shared secret compatible with the one used by `crypto_box_xchacha20poly1305``
|
|
|
|
func SharedKey(secretKey [32]byte, publicKey [32]byte) ([32]byte, error) {
|
|
|
|
var sharedKey [32]byte
|
2019-09-09 18:45:42 +02:00
|
|
|
curve25519.ScalarMult(&sharedKey, &secretKey, &publicKey)
|
|
|
|
c := byte(0)
|
|
|
|
for i := 0; i < 32; i++ {
|
|
|
|
c |= sharedKey[i]
|
|
|
|
}
|
|
|
|
if c == 0 {
|
2018-01-11 22:38:50 +01:00
|
|
|
return sharedKey, errors.New("weak public key")
|
|
|
|
}
|
2019-09-09 18:45:42 +02:00
|
|
|
var nonce [16]byte
|
|
|
|
chacha.HChaCha20(&sharedKey, &nonce, &sharedKey)
|
2018-01-11 22:38:50 +01:00
|
|
|
return sharedKey, nil
|
|
|
|
}
|