- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for decodeId (0.28 sec)
-
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
} /** * Decodes a Base64 string to bytes. * * @param base64String the Base64 string to decode * @return the decoded bytes, or null if input is null */ protected byte[] decodeBase64(String base64String) { if (base64String == null) { return null; } try { return BASE64_DECODER.decode(base64String);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Dec 14 01:18:25 UTC 2025 - 16.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
try { final String encoded = cookie.getValue(); final byte[] compressed = Base64.getUrlDecoder().decode(encoded); final byte[] jsonBytes = gzipDecompress(compressed); final List<?> list = mapper.readValue(jsonBytes, List.class);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 36.3K bytes - Viewed (0)