forked from derogold/turtlecoin-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
1547 lines (1342 loc) · 44.4 KB
/
index.ts
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright (c) 2020, The TurtleCoin Developers
//
// Please see the included LICENSE file for more information.
import {keccak256} from 'js-sha3';
/**
* @ignore
*/
const userCryptoFunctions: any = {};
/**
* @ignore
*/
enum Types {
UNKNOWN = 0,
NODEADDON,
WASM,
WASMJS,
JS,
MIXED,
}
/**
* @ignore
*/
interface IModuleSettings {
crypto: any;
type: Types;
}
/**
* @ignore
*/
const moduleVars: IModuleSettings = {
crypto: null,
type: Types.UNKNOWN,
};
export namespace Interfaces {
/**
* KeyPair object for holding privateKey and publicKey pairs
*/
export interface IKeyPair {
/**
* The private key
*/
privateKey: string;
/**
* The public key
*/
publicKey: string;
}
/**
* A PreparedRingSignatures object for holding prepared signatures and the random scalar (k)
*/
export interface IPreparedRingSignatures {
/**
* The ring signatures
*/
signatures: string[];
/**
* The random scalar key (k) for the signatures
*/
key: string;
}
}
/**
* @ignore
*/
// @ts-ignore
Array.prototype.toVectorString = function() {
if (!moduleVars.crypto.VectorString) {
throw new Error('VectorString unavailable');
}
const arr = new moduleVars.crypto.VectorString();
this.forEach((key) => arr.push_back(key));
return arr;
};
/**
* A class containing the TurtleCoin cryptographic primitive methods that wraps
* the Node.js native module, the WASM binary, or native JS implementations
* into a common interface
*/
export class Crypto {
/**
* Returns the type of the cryptographic primitives used by the wrapper
*/
public static get type(): string {
switch (moduleVars.type) {
case Types.NODEADDON:
return 'c++';
case Types.WASM:
return 'wasm';
case Types.WASMJS:
return 'wasmjs';
case Types.JS:
return 'js';
default:
return 'unknown';
}
}
/**
* Returns if the Node.js native library is being used
*/
public static get isNative(): boolean {
switch (moduleVars.type) {
case Types.NODEADDON:
return false;
default:
return true;
}
}
/**
* Returns if the wrapper is loaded and ready
*/
public static get isReady(): boolean {
return (moduleVars.crypto !== null && typeof moduleVars.crypto.cn_fast_hash === 'function');
}
/**
* Allows for updating the user-defined cryptographic primitive functions
* that will replace our primitives at runtime.
* @param config
*/
public static set userCryptoFunctions(config: any) {
if (config && typeof config === 'object') {
Object.keys(config).forEach((key) => {
if (typeof config[key] === 'function') {
userCryptoFunctions[key] = config[key];
}
});
}
}
/**
* Forces the wrapper to use the JS (slow) cryptographic primitives
*/
public static forceJSCrypto(): boolean {
return loadNativeJS();
}
/**
* Creates a new wrapper object
* @param [config] may contain user-defined cryptographic primitive functions
* that will replace our primitives at runtime.
*/
public constructor(config?: any) {
if (!initialize()) {
throw new Error('Could not initialize underlying cryptographic library');
}
if (config && typeof config === 'object') {
Object.keys(config).forEach((key) => {
if (typeof config[key] === 'function') {
userCryptoFunctions[key] = config[key];
moduleVars.type = Types.MIXED;
}
});
}
}
/**
* Returns the type of the cryptographic primitives used by the wrapper
*/
public get type(): string {
return Crypto.type;
}
/**
* Returns if the Node.js native library is being used
*/
public get isNative(): boolean {
return Crypto.isNative;
}
/**
* Returns if the wrapper is loaded and ready
*/
public get isReady(): boolean {
return Crypto.isReady;
}
/**
* Allows for updating the user-defined cryptographic primitive functions
* that will replace our primitives at runtime.
* @param config
*/
public set userCryptoFunctions(config: any) {
Crypto.userCryptoFunctions = config;
}
/**
* Forces the wrapper to use the JS (slow) cryptographic primitives
*/
public forceJSCrypto(): boolean {
return Crypto.forceJSCrypto();
}
/**
* Calculates the multisignature (m) private keys using our private spend key
* and the public spend keys of other participants in a M:N scheme
* @param privateSpendKey our private spend key
* @param publicKeys an array of the other participants public spend keys
*/
public calculateMultisigPrivateKeys(privateSpendKey: string, publicKeys: string[]): string[] {
if (!this.checkScalar(privateSpendKey)) {
throw new Error('privateSpendKey is not a scalar');
}
if (!Array.isArray(publicKeys)) {
throw new Error('publicKeys must be an array');
}
publicKeys.forEach((key) => {
if (!this.checkKey(key)) {
throw new Error('Invalid public key found');
}
});
return tryRunFunc('calculateMultisigPrivateKeys', privateSpendKey, publicKeys);
}
/**
* Calculates a shared private key from the private keys supplied
* @param privateKeys the array of private keys
*/
public calculateSharedPrivateKey(privateKeys: string[]): string {
if (!Array.isArray(privateKeys)) {
throw new Error('privateKeys must be an array');
}
privateKeys.forEach((key) => {
if (!this.checkScalar(key)) {
throw new Error('Invalid private key found');
}
});
return tryRunFunc('calculateSharedPrivateKey', privateKeys);
}
/**
* Calculates a shared public key from the public keys supplied
* @param publicKeys the array of public keys
*/
public calculateSharedPublicKey(publicKeys: string[]): string {
if (!Array.isArray(publicKeys)) {
throw new Error('publicKeys must be an array');
}
publicKeys.forEach((key) => {
if (!this.checkKey(key)) {
throw new Error('Invalid public key found');
}
});
return tryRunFunc('calculateSharedPublicKey', publicKeys);
}
/**
* Checks whether a given key is a public key
* @param key the public key to check
*/
public checkKey(key: string): boolean {
if (!isHex64(key)) {
return false;
}
return tryRunFunc('checkKey', key);
}
/**
* Checks a set of ring signatures to verify that they are valid
* @param hash the hash (often the transaction prefix hash)
* @param keyImage real keyImage used to generate the signatures
* @param inputKeys the output keys used during signing (mixins + real)
* @param signatures the signatures
*/
public checkRingSignature(
hash: string,
keyImage: string,
inputKeys: string[],
signatures: string[]): boolean {
return this.checkRingSignatures(hash, keyImage, inputKeys, signatures);
}
/**
* Checks a set of ring signatures to verify that they are valid
* @param hash the hash (often the transaction prefix hash)
* @param keyImage real keyImage used to generate the signatures
* @param inputKeys the output keys used during signing (mixins + real)
* @param signatures the signatures
*/
public checkRingSignatures(
hash: string,
keyImage: string,
inputKeys: string[],
signatures: string[]): boolean {
if (!isHex64(hash)) {
return false;
}
if (!isHex64(keyImage)) {
return false;
}
if (!Array.isArray(inputKeys)) {
return false;
}
if (!Array.isArray(signatures)) {
return false;
}
let err = false;
inputKeys.forEach((key) => {
if (!this.checkKey(key)) {
err = true;
}
});
signatures.forEach((sig) => {
if (!isHex128(sig)) {
err = true;
}
});
if (err) {
return false;
}
return tryRunFunc('checkRingSignature', hash, keyImage, inputKeys, signatures);
}
/**
* Checks whether the given key is a private key
* @param privateKey
*/
public checkScalar(privateKey: string): boolean {
if (!isHex64(privateKey)) {
return false;
}
return (privateKey === this.scReduce32(privateKey));
}
/**
* Checks that the given signature is valid for the hash and public key supplied
* @param hash the hash (message digest) used
* @param publicKey the public key of the private key used to sign
* @param signature the signature
*/
public checkSignature(hash: string, publicKey: string, signature: string): boolean {
if (!isHex64(hash)) {
return false;
}
if (!this.checkKey(publicKey)) {
return false;
}
if (!isHex128(signature)) {
return false;
}
return tryRunFunc('checkSignature', hash, publicKey, signature);
}
/**
* Calculates the hash of the data supplied using the cn_fast_hash method
* @param data
*/
public cn_fast_hash(data: string): string {
if (!isHex(data)) {
throw new Error('Supplied data must be in hexadecimal form');
}
const hash = tryRunFunc('cn_fast_hash', data);
if (hash) {
return hash;
}
try {
return keccak256(Buffer.from(data, 'hex'));
} catch (e) {
throw e;
}
}
/**
* Completes a given set of prepared ring signatures using the single
* privateEphemeral
* @param privateEphemeral private ephemeral of the output being spent
* @param realIndex the position of the signature in the array that belongs
* to the real output being spent
* @param k the random scalar provided with the prepared ring signatures
* @param signatures the prepared ring signatures
*/
public completeRingSignatures(
privateEphemeral: string,
realIndex: number,
k: string,
signatures: string[]): string[] {
if (!this.checkScalar(privateEphemeral)) {
throw new Error('Invalid private key found');
}
if (!Array.isArray(signatures)) {
throw new Error('signatures must be an array');
}
if (!isUInt(realIndex) || realIndex > signatures.length - 1) {
throw new Error('Invalid realIndex format');
}
if (!this.checkScalar(k)) {
throw new Error('Invalid k found');
}
signatures.forEach((sig) => {
if (!isHex128(sig)) {
throw new Error('Invalid signature found');
}
});
return tryRunFunc('completeRingSignatures', privateEphemeral, realIndex, k, signatures);
}
/**
* Converts a key derivation to its resulting scalar
* @param derivation the key derivation
* @param outputIndex the index of the output in the transaction
*/
public derivationToScalar(derivation: string, outputIndex: number): string {
if (!isHex64(derivation)) {
throw new Error('Invalid derivation found');
}
if (!isUInt(outputIndex)) {
throw new Error('Invalid output index found');
}
return tryRunFunc('derivationToScalar', derivation, outputIndex);
}
/**
* Derives the public ephemeral from the key derivation, output index, and
* our public spend key
* @param derivation the key derivation
* @param outputIndex the index of the output in the transaction
* @param publicKey our public spend key
*/
public derivePublicKey(derivation: string, outputIndex: number, publicKey: string): string {
if (!isHex64(derivation)) {
throw new Error('Invalid derivation found');
}
if (!isUInt(outputIndex)) {
throw new Error('Invalid output index found');
}
if (!this.checkKey(publicKey)) {
throw new Error('Invalid public key found');
}
return tryRunFunc('derivePublicKey', derivation, outputIndex, publicKey);
}
/**
* Derives the private ephemeral from the key derivation, output index, and
* our private spend key
* @param derivation the key derivation
* @param outputIndex the index of the output in the transaction
* @param privateKey our private spend key
*/
public deriveSecretKey(derivation: string, outputIndex: number, privateKey: string): string {
if (!isHex64(derivation)) {
throw new Error('Invalid derivation found');
}
if (!isUInt(outputIndex)) {
throw new Error('Invalid output index found');
}
if (!this.checkScalar(privateKey)) {
throw new Error('Invalid private key found');
}
return tryRunFunc('deriveSecretKey', derivation, outputIndex, privateKey);
}
/**
* Generates a set of deterministic spend keys for a sub wallet given
* our root private spend key and the index of the subwallet
* @param privateKey our root private spend key (seed)
* @param walletIndex the index of the subwallet
*/
public generateDeterministicSubwalletKeys(
privateKey: string,
walletIndex: number,
): Interfaces.IKeyPair {
if (!this.checkScalar(privateKey)) {
throw new Error('Invalid private key found');
}
if (!isUInt(walletIndex)) {
throw new Error('Invalid wallet index found');
}
const keys = tryRunFunc('generateDeterministicSubwalletKeys', privateKey, walletIndex);
if (keys) {
return {
privateKey: keys.privateKey || keys.secretKey || keys.SecretKey,
publicKey: keys.publicKey || keys.PublicKey,
};
} else {
throw new Error('Could not generate deterministic subwallet keys');
}
}
/**
* Generates a key derivation (aB) given the public key and private key
* @param publicKey
* @param privateKey
*/
public generateKeyDerivation(publicKey: string, privateKey: string): string {
if (!this.checkKey(publicKey)) {
throw new Error('Invalid public key found');
}
if (!this.checkScalar(privateKey)) {
throw new Error('Invalid private key found');
}
return tryRunFunc('generateKeyDerivation', publicKey, privateKey);
}
/**
* Generates a key derivation scalar H_s(aB) given the public key and private key
* @param publicKey the public key
* @param privateKey the private key
* @param outputIndex the output index
*/
public generateKeyDerivationScalar(publicKey: string, privateKey: string, outputIndex: number): string {
if (!this.checkKey(publicKey)) {
throw new Error('Invalid public key found');
}
if (!this.checkScalar(privateKey)) {
throw new Error('Invalid private key found');
}
if (!isUInt(outputIndex)) {
throw new Error('Invalid output index found');
}
return tryRunFunc('generateKeyDerivationScalar', publicKey, privateKey, outputIndex);
}
/**
* Generates a key image given the public ephemeral and the private ephemeral
* @param publicEphemeral the public ephemeral of the output
* @param privateEphemeral the private ephemeral of the output
*/
public generateKeyImage(publicEphemeral: string, privateEphemeral: string): string {
if (!this.checkKey(publicEphemeral)) {
throw new Error('Invalid public ephemeral found');
}
if (!this.checkScalar(privateEphemeral)) {
throw new Error('Invalid private ephemeral found');
}
return tryRunFunc('generateKeyImage', publicEphemeral, privateEphemeral);
}
/**
* Generates a new random key pair
*/
public generateKeys(): Interfaces.IKeyPair {
const keys = tryRunFunc('generateKeys');
if (keys) {
return {
privateKey: keys.privateKey || keys.secretKey || keys.SecretKey,
publicKey: keys.publicKey || keys.PublicKey,
};
} else {
throw new Error('Could not generate keys');
}
}
/**
* Generates a partial signing key for a multisig ring signature set
* @param signature the prepared real input signature
* @param privateKey our private spend key (or multisig private key)
*/
public generatePartialSigningKey(signature: string, privateKey: string): string {
if (!isHex128(signature)) {
throw new Error('Invalid signature found');
}
if (!this.checkScalar(privateKey)) {
throw new Error('Invalid private key found');
}
return tryRunFunc('generatePartialSigningKey', signature, privateKey);
}
/**
* Generates a private view key from the private spend key
* @param privateKey the private spend key
*/
public generatePrivateViewKeyFromPrivateSpendKey(privateKey: string): string {
if (!this.checkScalar(privateKey)) {
throw new Error('Invalid private key found');
}
return tryRunFunc('generatePrivateViewKeyFromPrivateSpendKey', privateKey);
}
/**
* Generates ring signatures for the supplied values
* @param hash the message digest hash (often the transaction prefix hash)
* @param keyImage the key image of the output being spent
* @param publicKeys an array of the output keys used for signing (mixins + our output)
* @param privateEphemeral the private ephemeral of the output being spent
* @param realIndex the array index of the real output being spent in the publicKeys array
*/
public generateRingSignatures(
hash: string,
keyImage: string,
publicKeys: string[],
privateEphemeral: string,
realIndex: number): string[] {
if (!isHex64(hash)) {
throw new Error('Invalid hash found');
}
if (!isHex64(keyImage)) {
throw new Error('Invalid key image found');
}
if (!this.checkScalar(privateEphemeral)) {
throw new Error('Invalid private key found');
}
if (!Array.isArray(publicKeys)) {
throw new Error('public keys must be an array');
}
if (!isUInt(realIndex) || realIndex > publicKeys.length - 1) {
throw new Error('Invalid real index found');
}
publicKeys.forEach((key) => {
if (!this.checkKey(key)) {
throw new Error('Invalid public key found');
}
});
return tryRunFunc('generateRingSignatures', hash, keyImage, publicKeys, privateEphemeral, realIndex);
}
/**
* Generates a signature for the given message digest (hash)
* @param hash the hash
* @param publicKey the public key used in signing
* @param privateKey the private key used to sign
*/
public generateSignature(hash: string, publicKey: string, privateKey: string): string {
if (!isHex64(hash)) {
throw new Error('Invalid hash found');
}
if (!this.checkKey(publicKey)) {
throw new Error('Invalid public key found');
}
if (!this.checkScalar(privateKey)) {
throw new Error('Invalid private key found');
}
return tryRunFunc('generateSignature', hash, publicKey, privateKey);
}
/**
* Generates a vew key pair from the private spend key
* @param privateKey the private spend key
*/
public generateViewKeysFromPrivateSpendKey(privateKey: string): Interfaces.IKeyPair {
if (!this.checkScalar(privateKey)) {
throw new Error('Invalid private key found');
}
const keys = tryRunFunc('generateViewKeysFromPrivateSpendKey', privateKey);
if (keys) {
return {
privateKey: keys.privateKey || keys.secretKey || keys.SecretKey,
publicKey: keys.publicKey || keys.PublicKey,
};
} else {
throw new Error('Could not generate view keys from private spend key');
}
}
/**
* Converts a hash to an elliptic curve point
* @param hash the hash
*/
public hashToEllipticCurve(hash: string): string {
if (!isHex64(hash)) {
throw new Error('Invalid hash found');
}
return tryRunFunc('hashToEllipticCurve', hash);
}
/**
* Converts a hash to a scalar
* @param hash the hash
*/
public hashToScalar(hash: string): string {
if (!isHex64(hash)) {
throw new Error('Invalid hash found');
}
return tryRunFunc('hashToScalar', hash);
}
/**
* Prepares ring signatures for completion or restoration later
* @param hash the message digest hash (often the transaction prefix hash)
* @param keyImage the key image of the output being spent
* @param publicKeys an array of the output keys used for signing (mixins + our output)
* @param realIndex the array index of the real output being spent in the publicKeys array
*/
public prepareRingSignatures(
hash: string,
keyImage: string,
publicKeys: string[],
realIndex: number): Interfaces.IPreparedRingSignatures {
if (!isHex64(hash)) {
throw new Error('Invalid hash found');
}
if (!isHex64(keyImage)) {
throw new Error('Invalid key image found');
}
if (!Array.isArray(publicKeys)) {
throw new Error('publicKeys must be an array');
}
if (!isUInt(realIndex) || realIndex > publicKeys.length - 1) {
throw new Error('Invalid real index found');
}
publicKeys.forEach((key) => {
if (!this.checkKey(key)) {
throw new Error('Invalid public key found');
}
});
const result = tryRunFunc('prepareRingSignatures', hash, keyImage, publicKeys, realIndex);
if (result) {
return {
signatures: result.signatures,
key: result.key,
};
} else {
throw new Error('Could not prepare ring signatures');
}
}
/**
* Re-initializes the underlying cryptographic primitives
*/
public reloadCrypto(): boolean {
return initialize();
}
/**
* Restores a key image from a set of partial key images generated by the other
* participants in a multisig wallet
* @param publicEphemeral the transaction public ephemeral
* @param derivation the key derivation of the our output
* @param outputIndex the index of our output in the transaction
* @param partialKeyImages the array of partial key images from the needed
* number of participants in the multisig scheme
*/
public restoreKeyImage(
publicEphemeral: string,
derivation: string,
outputIndex: number,
partialKeyImages: string[]): string {
if (!this.checkKey(publicEphemeral)) {
throw new Error('Invalid public ephemeral found');
}
if (!isHex64(derivation)) {
throw new Error('Invalid derivation found');
}
if (!isUInt(outputIndex)) {
throw new Error('Invalid output index found');
}
if (!Array.isArray(partialKeyImages)) {
throw new Error('partial key images must be an array');
}
partialKeyImages.forEach((key) => {
if (!isHex64(key)) {
throw new Error('Invalid key image found');
}
});
return tryRunFunc('restoreKeyImage', publicEphemeral, derivation, outputIndex, partialKeyImages);
}
/**
* Restores the ring signatures using the previously prepared ring signatures
* and the necessary number of partial signing keys generated by other
* participants in the multisig wallet
* @param derivation the key derivation for the output being spent
* @param outputIndex the index of the output being spent in the transaction
* @param partialSigningKeys the array of partial signing keys from the necessary number
* of participants
* @param realIndex the index of the real input in the ring signatures
* @param k the random scalar generated py preparing the ring signatures
* @param signatures the prepared ring signatures
*/
public restoreRingSignatures(
derivation: string,
outputIndex: number,
partialSigningKeys: string[],
realIndex: number,
k: string,
signatures: string[]): string[] {
if (!isHex64(derivation)) {
throw new Error('Invalid derivation found');
}
if (!isUInt(outputIndex)) {
throw new Error('Invalid output index found');
}
if (!Array.isArray(partialSigningKeys)) {
throw new Error('partial signing keys must be an array');
}
if (!this.checkScalar(k)) {
throw new Error('Invalid k found');
}
if (!Array.isArray(signatures)) {
throw new Error('signatures must be an array');
}
if (!isUInt(realIndex) || realIndex > signatures.length - 1) {
throw new Error('Invalid real index found');
}
partialSigningKeys.forEach((key) => {
if (!this.checkScalar(key)) {
throw new Error('Invalid partial signing key found');
}
});
signatures.forEach((sig) => {
if (!isHex128(sig)) {
throw new Error('Invalid signature found');
}
});
return tryRunFunc(
'restoreRingSignatures',
derivation,
outputIndex,
partialSigningKeys,
realIndex,
k,
signatures);
}
/**
* Derives the public key using the derivation scalar
* @param derivationScalar the derivation scalar
* @param publicKey the public key
*/
public scalarDerivePublicKey(derivationScalar: string, publicKey: string): string {
if (!this.checkScalar(derivationScalar)) {
throw new Error('Invalid derivation scalar found');
}
if (!this.checkKey(publicKey)) {
throw new Error('Invalid public key found');
}
return tryRunFunc('scalarDerivePublicKey', derivationScalar, publicKey);
}
/**
* Derives the private key using the derivation scalar
* @param derivationScalar the derivation scalar
* @param privateKey the private key
*/
public scalarDeriveSecretKey(derivationScalar: string, privateKey: string): string {
if (!this.checkScalar(derivationScalar)) {
throw new Error('Invalid derivation scalar found');
}
if (!this.checkScalar(privateKey)) {
throw new Error('Invalid private key found');
}
return tryRunFunc('scalarDeriveSecretKey', derivationScalar, privateKey);
}
/**
* Multiplies two key images together
* @param keyImageA
* @param keyImageB
*/
public scalarmultKey(keyImageA: string, keyImageB: string): string {
if (!isHex64(keyImageA)) {
throw new Error('Invalid key image A found');
}
if (!isHex64(keyImageB)) {
throw new Error('Invalid key image B found');
}
return tryRunFunc('scalarmultKey', keyImageA, keyImageB);
}
/**
* Reduces a value to a scalar (mod q)
* @param data
*/
public scReduce32(data: string): string {
if (!isHex64(data)) {
throw new Error('Invalid data format');
}
return tryRunFunc('scReduce32', data);
}
/**
* Calculates the public key of a private key
* @param privateKey
*/
public secretKeyToPublicKey(privateKey: string): string {
if (!this.checkScalar(privateKey)) {
throw new Error('Invalid private key found');
}
return tryRunFunc('secretKeyToPublicKey', privateKey);
}
/**
* Calculates the merkle tree branch of the given hashes
* @param hashes the array of hashes
*/
public tree_branch(hashes: string[]): string[] {
if (!Array.isArray(hashes)) {
throw new Error('hashes must be an array');
}
hashes.forEach((hash) => {
if (!isHex64(hash)) {
throw new Error('Invalid hash found');
}
});
return tryRunFunc('tree_branch', hashes);
}
/**
* Calculates the depth of the merkle tree
* @param count the number of hashes in the tree
*/
public tree_depth(count: number): number {
if (!isUInt(count)) {
throw new Error('Invalid count found');
}
return tryRunFunc('tree_depth', count);
}
/**
* Calculates the merkle tree hash of the given hashes
* @param hashes the array of hashes
*/
public tree_hash(hashes: string[]): string {
if (!Array.isArray(hashes)) {
throw new Error('hashes must be an array');
}
hashes.forEach((hash) => {
if (!isHex64(hash)) {
throw new Error('Invalid hash found');
}
});
return tryRunFunc('tree_hash', hashes);
}
/**
* Calculates the merkle tree hash from the given branch information
* @param branches the merkle tree branches
* @param leaf the leaf on the merkle tree
* @param path the path on the merkle tree
*/
public tree_hash_from_branch(branches: string[], leaf: string, path: number): string {
if (!Array.isArray(branches)) {
throw new Error('branches must be an array');
}
if (!isHex64(leaf)) {
throw new Error('Invalid leaf found');
}
if (!isUInt(path)) {