Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setTransformation (0.21 sec)

  1. src/main/java/org/codelibs/core/crypto/CachedCipher.java

            return algorithm;
        }
    
        public void setAlgorithm(final String algorithm) {
            this.algorithm = algorithm;
        }
    
        public String getTransformation() {
            return transformation;
        }
    
        public void setTransformation(final String transformation) {
            this.transformation = transformation;
        }
    
        public String getKey() {
            return key;
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/EncryptionAlgorithm.java

    import javax.crypto.Cipher;
    import javax.crypto.SecretKey;
    import java.io.IOException;
    
    /**
     * A protocol for encryption algorithms.
     */
    public interface EncryptionAlgorithm {
        String getTransformation();
    
        String getAlgorithm();
    
        /**
         * Creates an encryption/decryption session with this algorithm and the given key.
         *
         * @param key the key to use
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/util/internal/SupportedEncryptionAlgorithm.java

            assert initVectorLength > 0;
            byte[] initVector = new byte[initVectorLength];
            ivLoader.load(initVector);
            return createParameter(initVector);
        }
    
        @Override
        public String getTransformation() {
            return transformation;
        }
    
        @Nonnull
        private static AlgorithmParameterSpec createParameter(@Nonnull byte[] initVector) {
            return new IvParameterSpec(initVector);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 12:42:13 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top