PRCYCoin
2.0.0.7rc1
P2P Digital Currency
src
secp256k1-mw
src
java
org
bitcoin
NativeSecp256k1Util.java
Go to the documentation of this file.
1
/*
2
* Copyright 2014-2016 the libsecp256k1 contributors
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
6
* You may obtain a copy of the License at
7
*
8
* http://www.apache.org/licenses/LICENSE-2.0
9
*
10
* Unless required by applicable law or agreed to in writing, software
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*/
16
17
package
org.bitcoin;
18
19
public
class
NativeSecp256k1Util
{
20
21
public
static
void
assertEquals
(
int
val,
int
val2, String message )
throws
AssertFailException{
22
if
( val != val2 )
23
throw
new
AssertFailException(
"FAIL: "
+ message);
24
}
25
26
public
static
void
assertEquals
(
boolean
val,
boolean
val2, String message )
throws
AssertFailException{
27
if
( val != val2 )
28
throw
new
AssertFailException(
"FAIL: "
+ message);
29
else
30
System.out.println(
"PASS: "
+ message);
31
}
32
33
public
static
void
assertEquals
( String val, String val2, String message )
throws
AssertFailException{
34
if
( !val.equals(val2) )
35
throw
new
AssertFailException(
"FAIL: "
+ message);
36
else
37
System.out.println(
"PASS: "
+ message);
38
}
39
40
public
static
class
AssertFailException
extends
Exception {
41
public
AssertFailException(String message) {
42
super( message );
43
}
44
}
45
}
org.bitcoin.NativeSecp256k1Util
Definition:
NativeSecp256k1Util.java:19
org.bitcoin.NativeSecp256k1Util.assertEquals
static void assertEquals(boolean val, boolean val2, String message)
Definition:
NativeSecp256k1Util.java:26
org.bitcoin.NativeSecp256k1Util.assertEquals
static void assertEquals(String val, String val2, String message)
Definition:
NativeSecp256k1Util.java:33
org.bitcoin.NativeSecp256k1Util.assertEquals
static void assertEquals(int val, int val2, String message)
Definition:
NativeSecp256k1Util.java:21
Generated on Tue Apr 28 2026 00:02:57 for PRCYCoin by
1.8.17