java.lang.Object
|
+--javacard.security.Signature
public static final byte ALG_AES_MAC_128_NOPAD
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_DES_MAC4_ISO9797_1_M2_ALG3
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_DES_MAC4_ISO9797_M1
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_DES_MAC4_ISO9797_M2
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_DES_MAC4_NOPAD
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_DES_MAC4_PKCS5
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_DES_MAC8_ISO9797_1_M2_ALG3
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_DES_MAC8_ISO9797_M1
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_DES_MAC8_ISO9797_M2
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_DES_MAC8_NOPAD
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_DES_MAC8_PKCS5
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_DSA_SHA
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_ECDSA_SHA
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_RSA_MD5_PKCS1
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_RSA_MD5_PKCS1_PSS
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_RSA_MD5_RFC2409
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_RSA_RIPEMD160_ISO9796
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_RSA_RIPEMD160_PKCS1
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_RSA_RIPEMD160_PKCS1_PSS
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_RSA_SHA_ISO9796
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_RSA_SHA_PKCS1
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_RSA_SHA_PKCS1_PSS
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte ALG_RSA_SHA_RFC2409
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract byte getAlgorithm()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final Signature getInstance(byte algorithm,
boolean externalAccess)
throws CryptoException
- See Also:
-
ALG_DES_MAC4_NOPAD
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract short getLength()
throws CryptoException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract void init(Key theKey,
byte theMode)
throws CryptoException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract void init(Key theKey,
byte theMode,
byte[] bArray,
short bOff,
short bLen)
throws CryptoException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte MODE_SIGN
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public static final byte MODE_VERIFY
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract short sign(byte[] inBuff,
short inOffset,
short inLength,
byte[] sigBuff,
short sigOffset)
throws CryptoException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
protected Signature()
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract void update(byte[] inBuff,
short inOffset,
short inLength)
throws CryptoException
- See Also:
verify(byte[], short, short, byte[], short, short)
, sign(byte[], short, short, byte[], short)
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples
public abstract boolean verify(byte[] inBuff,
short inOffset,
short inLength,
byte[] sigBuff,
short sigOffset,
short sigLength)
throws CryptoException
- Geek's Notes:
- Description Add your codes or notes Search More Java Examples