Skip to content

Commit

Permalink
API & Bouncy schnorrSigSign32() should return byte[]
Browse files Browse the repository at this point in the history
  • Loading branch information
msgilligan committed Mar 7, 2024
1 parent fb723af commit 0e766f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ default byte[] taggedSha256(String tag, String message) {

byte[] taggedSha256(byte[] tag, byte[] message);

Object schnorrSigSign32(byte[] msg_hash, P256K1KeyPair keyPair);
byte[] schnorrSigSign32(byte[] msg_hash, P256K1KeyPair keyPair);

Result<Boolean> schnorrSigVerify(byte[] signature, byte[] msg_hash, P256K1XOnlyPubKey pubKey);
}
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public byte[] taggedSha256(byte[] tag, byte[] message) {
}

@Override
public Object schnorrSigSign32(byte[] msg_hash, P256K1KeyPair keyPair) {
public byte[] schnorrSigSign32(byte[] msg_hash, P256K1KeyPair keyPair) {
return null;
}

Expand Down

0 comments on commit 0e766f1

Please sign in to comment.