Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for offerEncryptoCipher (0.1 sec)

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

                throw new IllegalBlockSizeRuntimeException(e);
            } catch (final BadPaddingException e) {
                throw new BadPaddingRuntimeException(e);
            } finally {
                offerEncryptoCipher(cipher);
            }
            return encrypted;
        }
    
        public byte[] encrypto(final byte[] data, final Key key) {
            final Cipher cipher = pollEncryptoCipher(key);
            byte[] encrypted;
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top