public abstract class Ed448
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
Ed448.Algorithm |
Modifier and Type | Field and Description |
---|---|
static int |
PREHASH_SIZE |
static int |
PUBLIC_KEY_SIZE |
static int |
SECRET_KEY_SIZE |
static int |
SIGNATURE_SIZE |
Constructor and Description |
---|
Ed448() |
Modifier and Type | Method and Description |
---|---|
org.bouncycastle.crypto.internal.Xof |
createPrehash() |
protected abstract org.bouncycastle.crypto.internal.Xof |
createXof() |
static void |
generatePrivateKey(java.security.SecureRandom random,
byte[] k) |
void |
generatePublicKey(byte[] sk,
int skOff,
byte[] pk,
int pkOff) |
static void |
precompute() |
static void |
scalarMultBaseXY(X448.Friend friend,
byte[] k,
int kOff,
int[] x,
int[] y)
NOTE: Only for use by X448
|
void |
sign(byte[] sk,
int skOff,
byte[] ctx,
byte[] m,
int mOff,
int mLen,
byte[] sig,
int sigOff) |
void |
sign(byte[] sk,
int skOff,
byte[] pk,
int pkOff,
byte[] ctx,
byte[] m,
int mOff,
int mLen,
byte[] sig,
int sigOff) |
void |
signPrehash(byte[] sk,
int skOff,
byte[] ctx,
byte[] ph,
int phOff,
byte[] sig,
int sigOff) |
void |
signPrehash(byte[] sk,
int skOff,
byte[] pk,
int pkOff,
byte[] ctx,
byte[] ph,
int phOff,
byte[] sig,
int sigOff) |
void |
signPrehash(byte[] sk,
int skOff,
byte[] pk,
int pkOff,
byte[] ctx,
org.bouncycastle.crypto.internal.Xof ph,
byte[] sig,
int sigOff) |
void |
signPrehash(byte[] sk,
int skOff,
byte[] ctx,
org.bouncycastle.crypto.internal.Xof ph,
byte[] sig,
int sigOff) |
static boolean |
validatePublicKeyFull(byte[] pk,
int pkOff) |
static boolean |
validatePublicKeyPartial(byte[] pk,
int pkOff) |
boolean |
verify(byte[] sig,
int sigOff,
byte[] pk,
int pkOff,
byte[] ctx,
byte[] m,
int mOff,
int mLen) |
boolean |
verifyPrehash(byte[] sig,
int sigOff,
byte[] pk,
int pkOff,
byte[] ctx,
byte[] ph,
int phOff) |
boolean |
verifyPrehash(byte[] sig,
int sigOff,
byte[] pk,
int pkOff,
byte[] ctx,
org.bouncycastle.crypto.internal.Xof ph) |
public static final int PREHASH_SIZE
public static final int PUBLIC_KEY_SIZE
public static final int SECRET_KEY_SIZE
public static final int SIGNATURE_SIZE
public org.bouncycastle.crypto.internal.Xof createPrehash()
public static void generatePrivateKey(java.security.SecureRandom random, byte[] k)
public void generatePublicKey(byte[] sk, int skOff, byte[] pk, int pkOff)
public static void precompute()
public static void scalarMultBaseXY(X448.Friend friend, byte[] k, int kOff, int[] x, int[] y)
public void sign(byte[] sk, int skOff, byte[] ctx, byte[] m, int mOff, int mLen, byte[] sig, int sigOff)
public void sign(byte[] sk, int skOff, byte[] pk, int pkOff, byte[] ctx, byte[] m, int mOff, int mLen, byte[] sig, int sigOff)
public void signPrehash(byte[] sk, int skOff, byte[] ctx, byte[] ph, int phOff, byte[] sig, int sigOff)
public void signPrehash(byte[] sk, int skOff, byte[] pk, int pkOff, byte[] ctx, byte[] ph, int phOff, byte[] sig, int sigOff)
public void signPrehash(byte[] sk, int skOff, byte[] ctx, org.bouncycastle.crypto.internal.Xof ph, byte[] sig, int sigOff)
public void signPrehash(byte[] sk, int skOff, byte[] pk, int pkOff, byte[] ctx, org.bouncycastle.crypto.internal.Xof ph, byte[] sig, int sigOff)
public static boolean validatePublicKeyFull(byte[] pk, int pkOff)
public static boolean validatePublicKeyPartial(byte[] pk, int pkOff)
public boolean verify(byte[] sig, int sigOff, byte[] pk, int pkOff, byte[] ctx, byte[] m, int mOff, int mLen)
public boolean verifyPrehash(byte[] sig, int sigOff, byte[] pk, int pkOff, byte[] ctx, byte[] ph, int phOff)
public boolean verifyPrehash(byte[] sig, int sigOff, byte[] pk, int pkOff, byte[] ctx, org.bouncycastle.crypto.internal.Xof ph)
protected abstract org.bouncycastle.crypto.internal.Xof createXof()