- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for decryptText (0.07 seconds)
-
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");
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) -
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. *Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 15.9K bytes - Click Count (0) -
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)