Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for encryptingCipher (0.23 sec)

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

                    return SupportedEncryptionAlgorithm.this.decryptingCipher(key, loader);
                }
    
                @Override
                public Cipher encryptingCipher(IVCollector collector) {
                    return SupportedEncryptionAlgorithm.this.encryptingCipher(key, collector);
                }
    
                @Override
                public EncryptionAlgorithm getAlgorithm() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 12:42:13 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/EncryptionAlgorithm.java

         */
        interface Session {
            SecretKey getKey();
            EncryptionAlgorithm getAlgorithm();
            Cipher encryptingCipher(IVCollector collector);
            Cipher decryptingCipher(IVLoader loader);
        }
    
        class EncryptionException extends RuntimeException {
            public EncryptionException(String message, Throwable cause) {
    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. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/EncryptionService.kt

            return CipherInputStream(inputStream, cipher)
        }
    
        private
        fun encryptingOutputStream(outputStream: OutputStream): OutputStream {
            val cipher = newEncryptionSession().encryptingCipher(outputStream::write)
            return CipherOutputStream(outputStream, cipher)
        }
    
        private
        fun newEncryptionSession(): EncryptionAlgorithm.Session =
            encryptionAlgorithm.newSession(secretKey)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top