Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for decryptText (0.43 sec)

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

            final String encrypted2 = cipher2.encryptText(original);
    
            assertThat(encrypted1, is(not(encrypted2)));
            assertThat(cipher1.decryptText(encrypted1), is(original));
            assertThat(cipher2.decryptText(encrypted2), is(original));
        }
    
        @Test
        public void testEmptyString() {
            final CachedCipher cipher = new CachedCipher();
            cipher.setKey("mySecretKey");
    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