Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for pollDecryptoCipher (0.52 seconds)

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

         *
         * @param data
         *            the data to decrypt
         * @return the decrypted data
         */
        public byte[] decrypt(final byte[] data) {
            final Cipher cipher = pollDecryptoCipher();
            byte[] decrypted;
            try {
                decrypted = cipher.doFinal(data);
            } catch (final IllegalBlockSizeException e) {
                throw new IllegalBlockSizeRuntimeException(e);
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat Nov 22 11:21:59 GMT 2025
    - 15.9K bytes
    - Click Count (0)
Back to Top