Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for decryptoText (0.27 sec)

  1. src/test/java/org/codelibs/core/crypto/CachedCipherTest.java

            @SuppressWarnings("deprecation")
            final String decrypted1 = cipher.decryptoText(encrypted1);
            assertThat(decrypted1, is(original));
    
            // Encrypt with old method, decrypt with new method
            @SuppressWarnings("deprecation")
            final String encrypted2 = cipher.encryptoText(original);
            final String decrypted2 = cipher.decryptText(encrypted2);
            assertThat(decrypted2, is(original));
        }
    
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/crypto/CachedCipher.java

         *
         * @param text
         *            the text to decrypt
         * @return the decrypted text
         * @deprecated Use {@link #decryptText(String)} instead. This method name contains a typo.
         */
        @Deprecated
        public String decryptoText(final String text) {
            return decryptText(text);
        }
    
        /**
         * Polls an encryption cipher from the queue, creating a new one if none are available.
         *
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

            String rolesStr = value;
            if (encrypted && cipher != null) {
                try {
                    rolesStr = cipher.decryptoText(rolesStr);
                } catch (final Exception e) {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Failed to decrypt {}", rolesStr, e);
                    }
                    return;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 15.1K bytes
    - Viewed (0)
Back to top