Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
161da89ee1 | ||
|
|
3706a546a2 | ||
|
|
ffcaaf1b64 | ||
|
|
6ef94df247 | ||
|
|
5169073a92 |
@@ -1,4 +1,4 @@
|
|||||||
[](http://kotlinlang.org)
|
[](http://kotlinlang.org)
|
||||||
[](https://search.maven.org/search?q=g:fr.acinq.secp256k1%20a:secp256k1-kmp*)
|
[](https://search.maven.org/search?q=g:fr.acinq.secp256k1%20a:secp256k1-kmp*)
|
||||||

|

|
||||||
[](https://github.com/ACINQ/secp256k1-kmp/blob/master/LICENSE)
|
[](https://github.com/ACINQ/secp256k1-kmp/blob/master/LICENSE)
|
||||||
@@ -58,9 +58,9 @@ Native targets include libsecp256k1, called through KMP's c-interop, simply add
|
|||||||
The JVM library uses JNI bindings for libsecp256k1, which is much faster than BouncyCastle. It will extract and load native bindings for your operating system in a temporary directory.
|
The JVM library uses JNI bindings for libsecp256k1, which is much faster than BouncyCastle. It will extract and load native bindings for your operating system in a temporary directory.
|
||||||
|
|
||||||
JNI libraries are included for:
|
JNI libraries are included for:
|
||||||
- Linux 64 bits
|
- Linux 64 bits (x86_64 and arm64)
|
||||||
- Windows 64 bits
|
- Windows 64 bits (x86_64)
|
||||||
- Macos 64 bits
|
- Macos 64 bits (x86_64 and arm64)
|
||||||
|
|
||||||
Along this library, you **must** specify which JNI native library to use in your dependency manager:
|
Along this library, you **must** specify which JNI native library to use in your dependency manager:
|
||||||
|
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ buildscript {
|
|||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
group = "fr.acinq.secp256k1"
|
group = "fr.acinq.secp256k1"
|
||||||
version = "0.10.0"
|
version = "0.11.0"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#ifdef WIN32
|
||||||
|
#define SECP256K1_STATIC // needed on windows when linking to a static version of secp256k1
|
||||||
|
#endif
|
||||||
#include "include/secp256k1.h"
|
#include "include/secp256k1.h"
|
||||||
#include "include/secp256k1_ecdh.h"
|
#include "include/secp256k1_ecdh.h"
|
||||||
#include "include/secp256k1_recovery.h"
|
#include "include/secp256k1_recovery.h"
|
||||||
|
|||||||
Submodule native/secp256k1 updated: 346a053d4c...199d27cea3
Reference in New Issue
Block a user