コード例 #1
0
 public static byte[] decrypt(
     @NotNull DecryptionKey key,
     @NotNull SymmetricAlgorithm symmetricAlgorithm,
     int symmetricKeySize,
     @NotNull byte[] data)
     throws DecryptionException {
   return engine.decrypt(key, symmetricAlgorithm, symmetricKeySize, data);
 }
コード例 #2
0
 public static byte[] decrypt(
     @NotNull DecryptionKey key,
     @NotNull SymmetricAlgorithm symmetricAlgorithm,
     int symmetricKeySize,
     @NotNull byte[] data,
     boolean compatibilityMode)
     throws DecryptionException {
   return engine.decrypt(key, symmetricAlgorithm, symmetricKeySize, data, compatibilityMode);
 }
コード例 #3
0
 public static byte[] decrypt(
     @NotNull DecryptionKey key,
     @NotNull SymmetricAlgorithm symmetricAlgorithm,
     @NotNull String symmetricAlgorithmCipher,
     int symmetricKeySize,
     @NotNull byte[] data,
     @NotNull String cipherAlgorithm)
     throws DecryptionException {
   return engine.decrypt(
       key, symmetricAlgorithm, symmetricAlgorithmCipher, symmetricKeySize, data, cipherAlgorithm);
 }
コード例 #4
0
 public static byte[] decrypt(
     @NotNull DecryptionKey key, @NotNull byte[] data, String cipherAlgorithm)
     throws DecryptionException {
   return engine.decrypt(key, data, cipherAlgorithm);
 }
コード例 #5
0
 public static byte[] decrypt(
     @NotNull DecryptionKey key, @NotNull byte[] data, boolean compatibilityMode)
     throws DecryptionException {
   return engine.decrypt(key, data, compatibilityMode);
 }
コード例 #6
0
 public static byte[] decrypt(@NotNull DecryptionKey key, @NotNull byte[] data)
     throws DecryptionException {
   return engine.decrypt(key, data);
 }