Modifier and Type | Method and Description |
---|---|
CipherAlg |
BufferedCipher.getCipherAlg() |
abstract CipherAlg |
Cipher.getCipherAlgorithm() |
CipherAlg |
BufferedCipher.getCipherAlgorithm() |
Modifier and Type | Method and Description |
---|---|
byte[] |
KeyFactory.generateKey(CipherAlg aAlg,
int aBitLength)
Generate raw secret key
|
javax.crypto.SecretKey |
KeyFactory.generateSecretKey(CipherAlg alg,
int keyLength) |
static BufferedCipher |
Crypto.getDecryptor(CipherAlg aCipherAlg) |
static BufferedCipher |
Crypto.getEncryptor(CipherAlg aCipherAlg) |
Modifier and Type | Class and Description |
---|---|
class |
PBEAlg |
Modifier and Type | Field and Description |
---|---|
static CipherAlg |
CipherAlg.AES128_CBC |
static CipherAlg |
CipherAlg.AES128_CFB |
static CipherAlg |
CipherAlg.AES128_ECB |
static CipherAlg |
CipherAlg.AES128_GCM |
static CipherAlg |
CipherAlg.AES128_OFB |
static CipherAlg |
CipherAlg.AES192_CBC |
static CipherAlg |
CipherAlg.AES192_CFB |
static CipherAlg |
CipherAlg.AES192_ECB |
static CipherAlg |
CipherAlg.AES192_GCM |
static CipherAlg |
CipherAlg.AES192_OFB |
static CipherAlg |
CipherAlg.AES256_CBC |
static CipherAlg |
CipherAlg.AES256_CFB |
static CipherAlg |
CipherAlg.AES256_ECB |
static CipherAlg |
CipherAlg.AES256_GCM |
static CipherAlg |
CipherAlg.AES256_OFB |
static CipherAlg |
CipherAlg.DES_EDE3_CBC |
static CipherAlg |
CipherAlg.RC2_CBC |
static CipherAlg |
CipherAlg.RSA_ECB_OAEP
Deprecated.
|
static CipherAlg |
CipherAlg.RSA_ECB_PKCS1 |
static CipherAlg |
CipherAlg.RSA_OAEP
Deprecated.
|
static CipherAlg |
CipherAlg.RSA_OAEP_SHA256 |
static CipherAlg |
CipherAlg.RSA_OAEP_SHA512 |
static CipherAlg |
CipherAlg.RSA_PKCS1 |
static CipherAlg |
CipherAlg.RSA_RAW |
Modifier and Type | Method and Description |
---|---|
static CipherAlg |
CipherAlg.fromName(java.lang.String aAlgName) |
static CipherAlg |
CipherAlg.fromOID(int[] aOid) |
CipherAlg |
WrapAlg.getCipherAlg() |
CipherAlg |
PBEAlg.getCipherAlg() |
Modifier and Type | Method and Description |
---|---|
static tr.gov.tubitak.uekae.esya.api.common.util.bag.Pair<CipherAlg,AlgorithmParams> |
CipherAlg.fromAlgorithmIdentifier(tr.gov.tubitak.uekae.esya.api.asn.x509.EAlgorithmIdentifier aAlgoritma) |
Constructor and Description |
---|
PBEAlg(int[] aOID,
CipherAlg aCipherAlg,
DigestAlg aDigestAlg) |
WrapAlg(CipherAlg cipherAlg) |
Modifier and Type | Method and Description |
---|---|
CipherAlg |
SecretKeySpec.getmAlgorithm() |
Constructor and Description |
---|
SecretKeySpec(CipherAlg algorithm,
int len) |
SecretKeySpec(CipherAlg algorithm,
java.lang.String label,
int len) |
Modifier and Type | Method and Description |
---|---|
Cipher |
CryptoProvider.getDecryptor(CipherAlg aCipherAlg) |
Cipher |
CryptoProvider.getEncryptor(CipherAlg aCipherAlg) |
Modifier and Type | Method and Description |
---|---|
CipherAlg |
PBEEncryptor.getCipherAlgorithm() |
CipherAlg |
PBEDecryptor.getCipherAlgorithm() |
Modifier and Type | Method and Description |
---|---|
static byte[] |
CipherUtil.decrypt(CipherAlg aCipherAlg,
AlgorithmParams aParams,
byte[] aData,
byte[] aSecretKey) |
static byte[] |
CipherUtil.decrypt(CipherAlg aCipherAlg,
AlgorithmParams aParams,
byte[] aData,
java.security.PrivateKey aSignPrivateKey) |
static byte[] |
CipherUtil.decrypt(CipherAlg aCipherAlg,
AlgorithmParams aParams,
byte[] aData,
javax.crypto.SecretKey aSecretKey) |
static void |
CipherUtil.decrypt(CipherAlg aCipherAlg,
AlgorithmParams aParams,
java.io.InputStream aEncrypted,
java.io.OutputStream aDecrypted,
byte[] aKey) |
static byte[] |
CipherUtil.encrypt(CipherAlg aCipherAlg,
AlgorithmParams aParams,
byte[] aData,
byte[] aSecretKey) |
static byte[] |
CipherUtil.encrypt(CipherAlg aCipherAlg,
AlgorithmParams aParams,
byte[] aData,
tr.gov.tubitak.uekae.esya.api.asn.x509.ECertificate aCertificate) |
static byte[] |
CipherUtil.encrypt(CipherAlg aCipherAlg,
AlgorithmParams aParams,
byte[] aData,
java.security.PublicKey aSifPubKey) |
static void |
CipherUtil.encrypt(CipherAlg aCipherAlg,
AlgorithmParams aParams,
java.io.InputStream aToBeEncrypted,
java.io.OutputStream aEncrypted,
byte[] aKey) |
static byte[] |
KeyUtil.generateKey(CipherAlg aAlg,
int aBitLength) |
static javax.crypto.SecretKey |
KeyUtil.generateSecretKey(CipherAlg mSymmetricAlgorithm,
int keyLength) |
static WrapAlg |
KeyUtil.getConvenientWrapAlg(CipherAlg aCipherAlg) |
static byte[] |
CipherUtil.wrap(CipherAlg cipherAlg,
AlgorithmParams aParams,
javax.crypto.SecretKey aData,
java.security.PublicKey aSifPubKey) |
Copyright © 2025. All rights reserved.