summaryrefslogtreecommitdiffstats
path: root/test/ecdsa_test.js
blob: 13da8e77c214f12eba4441619598c991bdccd45d (plain)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
new sjcl.test.TestCase("ECDSA test", function (cb) {
  if (!sjcl.ecc) {
    this.unimplemented();
    cb && cb();
    return;
  }
  
  var keys = sjcl.ecc.ecdsa.generateKeys(192,0),
      hash = sjcl.hash.sha256.hash("The quick brown fox jumps over the lazy dog."),
      signature = keys.sec.sign(hash,0);
      
  try {
    keys.pub.verify(hash, signature);
    this.pass();
  } catch (e) {
    this.fail("good message rejected");
  }

  var serializedPubKey = keys.pub.serialize();
  var deserializedPubKey = sjcl.ecc.deserialize(serializedPubKey);
  var serializedSecKey = keys.sec.serialize();
  var deserializedSecKey = sjcl.ecc.deserialize(serializedSecKey);
  var signatureAfterSerialization = deserializedSecKey.sign(hash,0);

  this.require(sjcl.bitArray.equal(keys.pub.get().x,       
      deserializedPubKey.get().x));
  this.require(sjcl.bitArray.equal(keys.pub.get().y,
      deserializedPubKey.get().y));
  this.require(sjcl.bitArray.equal(deserializedSecKey.get(), keys.sec.get()));

  try {
    deserializedPubKey.verify(hash, signature);
    this.pass();
  } catch (e) {
    this.fail("good message rejected after serialization and deserialization of public key");
  }

  try {
    keys.pub.verify(hash, signatureAfterSerialization);
    this.pass();
  } catch (e) {
    this.fail("signature provided with serialized/deserialized secret key rejected");
  }

  hash[1] ^= 8; // minor change to hash
  
  try {
    keys.pub.verify(hash, signature);
    this.fail();
  } catch (e) {
    this.pass("bad message accepted");
  }

  // Run through the test vectors
  for (var key in sjcl.test.vector.ecdsa) {
    var match = /^p(\d+)sha(\d+)/.exec(key);
    var curvenum = parseInt(match[1]);
    var shanum = parseInt(match[2]);

    var vectors = sjcl.test.vector.ecdsa[key];
    var curve = sjcl.ecc.curves['c'+curvenum];
    var sha = sjcl.hash['sha'+shanum];
    if (!sha) continue;

    var h = sjcl.codec.hex;
    var ba = sjcl.bitArray;
    var bn = sjcl.bn;

  for (var i=0; i<vectors.length; i++) {
    var msgbits = h.toBits(vectors[i].msg);
    var d = bn.fromBits(h.toBits(vectors[i].d));
    var x = bn.fromBits(h.toBits(vectors[i].Qx));
    var y = bn.fromBits(h.toBits(vectors[i].Qy));
    var k = bn.fromBits(h.toBits(vectors[i].k));
    var r = bn.fromBits(h.toBits(vectors[i].R));
    var s = bn.fromBits(h.toBits(vectors[i].S));

    keys = sjcl.ecc.ecdsa.generateKeys(curvenum,0,d);
    var pub = keys.pub;
    var sec = keys.sec;

    // verify generated x and y
    var genx = bn.fromBits(pub.get().x);
    var geny = bn.fromBits(pub.get().y);
    this.require(x.equals(genx));
    this.require(y.equals(geny));

    // sign
    try {
        hash = sha.hash(msgbits);
        var sig = sec.sign(hash,0,0,k);
        siglen = ba.bitLength(sig);
        var genr = bn.fromBits(ba.bitSlice(sig, 0, siglen/2));
        var gens = bn.fromBits(ba.bitSlice(sig, siglen/2, siglen));

        this.require(genr.equals(r));
        this.require(gens.equals(s));
      } catch (e) {
        this.fail("error signing!");
      }

      // verify signature
      try {
        pub.verify(hash, sig);
        this.pass();
      } catch (e) {
        this.fail();
      }
    }

    // sign legacy style
    try {
        hash = sha.hash(msgbits);
        var sig = sec.sign(hash,0,1);
        pub.verify(hash, sig);
        pub.verify(hash, sig, 1);
        try {
          pub.verify(hash, sig, 0);
          this.fail();
        } catch (ee) {
          this.pass();
        }
    } catch (e) {
      this.fail(e);
    }
  }
  
  cb && cb();
});