Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for decryptoText (0.18 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  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));
        }
    
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat Nov 22 11:21:59 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  2. 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;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 15.1K bytes
    - Click Count (0)
Back to Top