2021-11-22 16:05:02 +00:00
|
|
|
// Copyright 2012 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package curve25519
|
|
|
|
|
|
|
|
import (
|
2021-12-01 15:43:13 +00:00
|
|
|
"bytes"
|
|
|
|
"crypto/rand"
|
2021-11-22 16:05:02 +00:00
|
|
|
"fmt"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
const expectedHex = "89161fde887b2b53de549af483940106ecc114d6982daa98256de23bdf77661a"
|
|
|
|
|
2021-12-01 15:43:13 +00:00
|
|
|
func TestX25519Basepoint(t *testing.T) {
|
|
|
|
x := make([]byte, 32)
|
|
|
|
x[0] = 1
|
2021-11-22 16:05:02 +00:00
|
|
|
|
|
|
|
for i := 0; i < 200; i++ {
|
2021-12-01 15:43:13 +00:00
|
|
|
var err error
|
|
|
|
x, err = X25519(x, Basepoint)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2021-11-22 16:05:02 +00:00
|
|
|
}
|
|
|
|
|
2021-12-01 15:43:13 +00:00
|
|
|
result := fmt.Sprintf("%x", x)
|
2021-11-22 16:05:02 +00:00
|
|
|
if result != expectedHex {
|
|
|
|
t.Errorf("incorrect result: got %s, want %s", result, expectedHex)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-01 15:43:13 +00:00
|
|
|
func TestLowOrderPoints(t *testing.T) {
|
|
|
|
scalar := make([]byte, ScalarSize)
|
|
|
|
if _, err := rand.Read(scalar); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
for i, p := range lowOrderPoints {
|
|
|
|
out, err := X25519(scalar, p)
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("%d: expected error, got nil", i)
|
|
|
|
}
|
|
|
|
if out != nil {
|
|
|
|
t.Errorf("%d: expected nil output, got %x", i, out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTestVectors(t *testing.T) {
|
|
|
|
t.Run("Legacy", func(t *testing.T) { testTestVectors(t, ScalarMult) })
|
|
|
|
t.Run("X25519", func(t *testing.T) {
|
|
|
|
testTestVectors(t, func(dst, scalar, point *[32]byte) {
|
|
|
|
out, err := X25519(scalar[:], point[:])
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
copy(dst[:], out)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func testTestVectors(t *testing.T, scalarMult func(dst, scalar, point *[32]byte)) {
|
|
|
|
for _, tv := range testVectors {
|
|
|
|
var got [32]byte
|
|
|
|
scalarMult(&got, &tv.In, &tv.Base)
|
|
|
|
if !bytes.Equal(got[:], tv.Expect[:]) {
|
|
|
|
t.Logf(" in = %x", tv.In)
|
|
|
|
t.Logf(" base = %x", tv.Base)
|
|
|
|
t.Logf(" got = %x", got)
|
|
|
|
t.Logf("expect = %x", tv.Expect)
|
|
|
|
t.Fail()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestHighBitIgnored tests the following requirement in RFC 7748:
|
|
|
|
//
|
|
|
|
// When receiving such an array, implementations of X25519 (but not X448) MUST
|
|
|
|
// mask the most significant bit in the final byte.
|
|
|
|
//
|
|
|
|
// Regression test for issue #30095.
|
|
|
|
func TestHighBitIgnored(t *testing.T) {
|
|
|
|
var s, u [32]byte
|
|
|
|
rand.Read(s[:])
|
|
|
|
rand.Read(u[:])
|
|
|
|
|
|
|
|
var hi0, hi1 [32]byte
|
|
|
|
|
|
|
|
u[31] &= 0x7f
|
|
|
|
ScalarMult(&hi0, &s, &u)
|
|
|
|
|
|
|
|
u[31] |= 0x80
|
|
|
|
ScalarMult(&hi1, &s, &u)
|
|
|
|
|
|
|
|
if !bytes.Equal(hi0[:], hi1[:]) {
|
|
|
|
t.Errorf("high bit of group point should not affect result")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var benchmarkSink byte
|
|
|
|
|
|
|
|
func BenchmarkX25519Basepoint(b *testing.B) {
|
|
|
|
scalar := make([]byte, ScalarSize)
|
|
|
|
if _, err := rand.Read(scalar); err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
out, err := X25519(scalar, Basepoint)
|
|
|
|
if err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
benchmarkSink ^= out[0]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkX25519(b *testing.B) {
|
|
|
|
scalar := make([]byte, ScalarSize)
|
|
|
|
if _, err := rand.Read(scalar); err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
point, err := X25519(scalar, Basepoint)
|
|
|
|
if err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
if _, err := rand.Read(scalar); err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
2021-11-22 16:05:02 +00:00
|
|
|
|
2021-12-01 15:43:13 +00:00
|
|
|
b.ResetTimer()
|
2021-11-22 16:05:02 +00:00
|
|
|
for i := 0; i < b.N; i++ {
|
2021-12-01 15:43:13 +00:00
|
|
|
out, err := X25519(scalar, point)
|
|
|
|
if err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
benchmarkSink ^= out[0]
|
2021-11-22 16:05:02 +00:00
|
|
|
}
|
|
|
|
}
|