-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(secp256k1): add library to be our dependency for secp256k1 in an…
…droid, jvm, ios, macos, js add library for secp256k1 in iOS, macOS add libraries for secp256k1 in JVM/Android and removed bouncy castle secp256k1 add new implementation of secp256k1 in common
- Loading branch information
1 parent
31a913f
commit 3e41246
Showing
100 changed files
with
2,411 additions
and
2,910 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "secp256k1/secp256k1"] | ||
path = secp256k1/secp256k1 | ||
url = https://github.com/bitcoin-core/secp256k1/ | ||
[submodule "secp256k1-kmp/native/secp256k1"] | ||
path = secp256k1-kmp/native/secp256k1 | ||
url = https://github.com/bitcoin-core/secp256k1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
apollo/src/macosX64Main/kotlin/io/iohk/atala/prism/apollo/Platform.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package io.iohk.atala.prism.apollo | ||
|
||
import kotlin.native.Platform | ||
|
||
actual object Platform { | ||
actual val OS: String | ||
get() = "macOS-${Platform.osFamily.name}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.