Methods in org.apache.cxf.common.util.crypto with parameters of type KeyProperties |
static byte[] |
CryptoUtils.decryptBytes(byte[] bytes,
Key secretKey,
KeyProperties keyProps)
|
static SecretKey |
CryptoUtils.decryptSecretKey(String encodedEncryptedSecretKey,
String secretKeyAlgo,
KeyProperties props,
PrivateKey privateKey)
|
static String |
CryptoUtils.decryptSequence(String encodedData,
Key secretKey,
KeyProperties props)
|
static String |
CryptoUtils.decryptSequence(String encodedData,
String encodedSecretKey,
KeyProperties props)
|
static byte[] |
CryptoUtils.encryptBytes(byte[] bytes,
Key secretKey,
KeyProperties keyProps)
|
static String |
CryptoUtils.encryptSecretKey(SecretKey secretKey,
PublicKey publicKey,
KeyProperties props)
|
static String |
CryptoUtils.encryptSequence(String sequence,
Key secretKey,
KeyProperties keyProps)
|
static SecretKey |
CryptoUtils.getSecretKey(KeyProperties props)
|
static Cipher |
CryptoUtils.initCipher(Key secretKey,
KeyProperties keyProps,
int mode)
|
static Key |
CryptoUtils.unwrapKey(byte[] wrappedBytes,
String wrappedKeyAlgo,
Key unwrapperKey,
KeyProperties keyProps,
int wrappedKeyType)
|
static SecretKey |
CryptoUtils.unwrapSecretKey(byte[] wrappedBytes,
String wrappedKeyAlgo,
Key unwrapperKey,
KeyProperties keyProps)
|
static byte[] |
CryptoUtils.wrapSecretKey(byte[] keyBytes,
String keyAlgo,
Key wrapperKey,
KeyProperties wrapperKeyProps)
|
static byte[] |
CryptoUtils.wrapSecretKey(Key secretKey,
Key wrapperKey,
KeyProperties keyProps)
|