Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getDecryptionParameter (0.34 sec)

  1. subprojects/core-api/src/main/java/org/gradle/util/internal/SupportedEncryptionAlgorithm.java

            this.transformation = transformation;
            this.algorithm = algorithm;
            this.initVectorLength = initVectorLength;
        }
        private AlgorithmParameterSpec getDecryptionParameter(IVLoader ivLoader) throws IOException {
            assert initVectorLength > 0;
            byte[] initVector = new byte[initVectorLength];
            ivLoader.load(initVector);
            return createParameter(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