Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

                throw new BadPaddingRuntimeException(e);
            } finally {
                offerDecryptoCipher(cipher);
            }
            return decrypted;
        }
    
        public String decryptoText(final String text) {
            try {
                return new String(decrypto(Base64Util.decode(text)), charsetName);
            } catch (final UnsupportedEncodingException e) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.1K 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;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.5K bytes
    - Viewed (0)
Back to top