Bitcoin ABC
0.26.3
P2P Digital Currency
Loading...
Searching...
No Matches
src
secp256k1
src
java
org_bitcoin_Secp256k1Context.c
Go to the documentation of this file.
1
#include <stdlib.h>
2
#include <stdint.h>
3
#include "
org_bitcoin_Secp256k1Context.h
"
4
#include "
include/secp256k1.h
"
5
6
SECP256K1_API
jlong
JNICALL
Java_org_bitcoin_Secp256k1Context_secp256k1_1init_1context
7
(
JNIEnv
* env,
jclass
classObject
)
8
{
9
secp256k1_context
*
ctx
=
secp256k1_context_create
(
SECP256K1_CONTEXT_SIGN
|
SECP256K1_CONTEXT_VERIFY
);
10
11
(
void
)
classObject
;(
void
)env;
12
13
return
(
uintptr_t
)
ctx
;
14
}
15
ctx
secp256k1_context * ctx
Definition
bench_multiset.c:12
Java_org_bitcoin_Secp256k1Context_secp256k1_1init_1context
SECP256K1_API jlong JNICALL Java_org_bitcoin_Secp256k1Context_secp256k1_1init_1context(JNIEnv *env, jclass classObject)
Definition
org_bitcoin_Secp256k1Context.c:7
org_bitcoin_Secp256k1Context.h
GetRand
T GetRand(T nMax=std::numeric_limits< T >::max()) noexcept
Generate a uniform random integer of type T in the range [0..nMax) nMax defaults to std::numeric_limi...
Definition
random.h:85
secp256k1.h
SECP256K1_CONTEXT_SIGN
#define SECP256K1_CONTEXT_SIGN
Definition
secp256k1.h:174
secp256k1_context_create
SECP256K1_API secp256k1_context * secp256k1_context_create(unsigned int flags) SECP256K1_WARN_UNUSED_RESULT
Create a secp256k1 context object (in dynamically allocated memory).
Definition
secp256k1.c:152
SECP256K1_API
#define SECP256K1_API
Definition
secp256k1.h:143
SECP256K1_CONTEXT_VERIFY
#define SECP256K1_CONTEXT_VERIFY
Flags to pass to secp256k1_context_create, secp256k1_context_preallocated_size, and secp256k1_context...
Definition
secp256k1.h:173
secp256k1_context_struct
Definition
secp256k1.c:69
Generated on Sat Nov 23 2024 02:38:01 for Bitcoin ABC by
1.9.8