Browse Source

tris: rename `pk` to `secretKey`

v1.2.3
Henry de Valence 7 years ago
committed by Peter Wu
parent
commit
cd63e47f2c
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      13.go

+ 3
- 3
13.go View File

@@ -374,7 +374,7 @@ func (c *Config) generateKeyShare(curveID CurveID) ([]byte, keyShare, error) {
return privateKey, keyShare{group: curveID, data: ecdhePublic}, nil return privateKey, keyShare{group: curveID, data: ecdhePublic}, nil
} }


func deriveECDHESecret(ks keyShare, pk []byte) []byte {
func deriveECDHESecret(ks keyShare, secretKey []byte) []byte {
if ks.group == X25519 { if ks.group == X25519 {
if len(ks.data) != 32 { if len(ks.data) != 32 {
return nil return nil
@@ -382,7 +382,7 @@ func deriveECDHESecret(ks keyShare, pk []byte) []byte {


var theirPublic, sharedKey, scalar [32]byte var theirPublic, sharedKey, scalar [32]byte
copy(theirPublic[:], ks.data) copy(theirPublic[:], ks.data)
copy(scalar[:], pk)
copy(scalar[:], secretKey)
curve25519.ScalarMult(&sharedKey, &scalar, &theirPublic) curve25519.ScalarMult(&sharedKey, &scalar, &theirPublic)
return sharedKey[:] return sharedKey[:]
} }
@@ -395,7 +395,7 @@ func deriveECDHESecret(ks keyShare, pk []byte) []byte {
if x == nil { if x == nil {
return nil return nil
} }
x, _ = curve.ScalarMult(x, y, pk)
x, _ = curve.ScalarMult(x, y, secretKey)
xBytes := x.Bytes() xBytes := x.Bytes()
curveSize := (curve.Params().BitSize + 8 - 1) >> 3 curveSize := (curve.Params().BitSize + 8 - 1) >> 3
if len(xBytes) == curveSize { if len(xBytes) == curveSize {


Loading…
Cancel
Save