Skip to content

Commit a2556d8

Browse files
committed
add secp256k1 library for schnorr
1 parent 7ba8c2d commit a2556d8

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,17 @@ targetCompatibility = 1.8
1515
repositories {
1616
mavenLocal()
1717
mavenCentral()
18+
flatDir {
19+
dirs 'libs'
20+
}
1821
}
1922

2023
dependencies {
2124
implementation group: 'org.bitcoinj', name: 'bitcoinj-core', version: '0.15.8'
2225
implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.6'
2326
implementation 'com.google.guava:guava:30.1.1-jre'
27+
// Compiled from https://gitlab.com/bitcoinj/secp256k1-jdk
28+
implementation name: 'secp256k1-api-0.0.1'
2429

2530
testCompileOnly 'org.slf4j:slf4j-api:1.7.32'
2631
testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.32'

libs/secp256k1-api-0.0.1.jar

12.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)