Skip to content

Commit

Permalink
Merge pull request #12 from JasonFengJ9/mergetmp
Browse files Browse the repository at this point in the history
Merging openj9-openjdk-jdk/openj9 into openj9
  • Loading branch information
hangshao0 authored May 6, 2024
2 parents 12c6a4c + c37342d commit 9612f6c
Show file tree
Hide file tree
Showing 1,570 changed files with 17,257 additions and 15,517 deletions.
2 changes: 1 addition & 1 deletion closed/openjdk-tag.gmk
Original file line number Diff line number Diff line change
@@ -1 +1 @@
OPENJDK_TAG := jdk-23+19
OPENJDK_TAG := jdk-23+21
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,19 @@ public final native int PBEDerive(byte[] password,
int id,
int hashAlgorithm);

/* Native ECDSA interfaces. */
public final native int ECDSASign(long key,
byte[] digest,
int digestLen,
byte[] signature,
int sigLen);

public final native int ECDSAVerify(long key,
byte[] digest,
int digestLen,
byte[] signature,
int sigLen);

/* Native XDH (X25519, X448) interfaces. */
public final native int XDHCreateKeys(byte[] privateKey,
int privateKeyLength,
Expand Down
Loading

0 comments on commit 9612f6c

Please sign in to comment.