Skip to content

Commit

Permalink
Test Practical Threshold Signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
quapka committed Nov 10, 2023
1 parent 899988c commit c09221b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions meesign_core/test/core_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,13 @@ void main() {
test('15-20', () => testSignChallenge(Protocol.frost, n: 20, t: 15),
tags: 'large');
});
group('ptsrsap1', () {
test('2-2', () => testSignChallenge(Protocol.ptsrsap1, n: 2, t: 2));
test('2-3', () => testSignChallenge(Protocol.ptsrsap1, n: 3, t: 2));
test('3-3', () => testSignChallenge(Protocol.ptsrsap1, n: 3, t: 3));
test('15-20', () => testSignChallenge(Protocol.ptsrsap1, n: 20, t: 15),
tags: 'large', timeout: Timeout(Duration(minutes: 10)));
});
});

group('decrypt', () {
Expand Down

0 comments on commit c09221b

Please sign in to comment.