Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for decryptoText (0.05 sec)

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

        }
    
        /**
         * Decrypts the given text.
         *
         * @param text
         *            the text to decrypt
         * @return the decrypted text
         */
        public String decryptoText(final String text) {
            try {
                return new String(decrypto(Base64Util.decode(text)), charsetName);
            } catch (final UnsupportedEncodingException e) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 11.5K bytes
    - Viewed (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;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.1K bytes
    - Viewed (0)
Back to top