1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
// Copyright 2018 The dexon-consensus Authors
// This file is part of the dexon-consensus library.
//
// The dexon-consensus library is free software: you can redistribute it
// and/or modify it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation, either version 3 of the License,
// or (at your option) any later version.
//
// The dexon-consensus library is distributed in the hope that it will be
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
// General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the dexon-consensus library. If not, see
// <http://www.gnu.org/licenses/>.
package ecdsa
import (
"testing"
"github.com/stretchr/testify/suite"
"github.com/tangerine-network/tangerine-consensus/common"
"github.com/tangerine-network/tangerine-consensus/core/crypto"
)
type ETHCryptoTestSuite struct {
suite.Suite
}
func (s *ETHCryptoTestSuite) TestSignature() {
prv1, err := NewPrivateKey()
s.Require().Nil(err)
hash1 := common.NewRandomHash()
hash2 := common.NewRandomHash()
// Test that same private key should produce same signature.
sig11, err := prv1.Sign(hash1)
s.Require().Nil(err)
sig112, err := prv1.Sign(hash1)
s.Require().Nil(err)
s.Equal(sig11, sig112)
// Test that different private key should produce different signature.
prv2, err := NewPrivateKey()
s.Require().Nil(err)
sig21, err := prv2.Sign(hash1)
s.Require().Nil(err)
s.NotEqual(sig11, sig21)
// Test that different hash should produce different signature.
sig12, err := prv1.Sign(hash2)
s.Require().Nil(err)
s.NotEqual(sig11, sig12)
// Test VerifySignature with correct public key.
pub1, ok := prv1.PublicKey().(*PublicKey)
s.Require().True(ok)
s.True(pub1.VerifySignature(hash1, sig11))
// Test VerifySignature with wrong hash.
s.False(pub1.VerifySignature(hash2, sig11))
// Test VerifySignature with wrong signature.
s.False(pub1.VerifySignature(hash1, sig21))
// Test VerifySignature with wrong public key.
pub2 := prv2.PublicKey()
s.False(pub2.VerifySignature(hash1, sig11))
}
func (s *ETHCryptoTestSuite) TestSigToPub() {
prv, err := NewPrivateKey()
s.Require().Nil(err)
data := "DEXON is infinitely scalable and low-latency."
hash := crypto.Keccak256Hash([]byte(data))
sigmsg, err := prv.Sign(hash)
s.Require().Nil(err)
pubkey, err := SigToPub(hash, sigmsg)
s.Require().Nil(err)
s.Equal(pubkey, prv.PublicKey())
}
func TestCrypto(t *testing.T) {
suite.Run(t, new(ETHCryptoTestSuite))
}
|