Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getAppDigestAlgorithm (0.25 seconds)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessFwAssistantDirector.java

            } else {
                inver = InvertibleCryptographer.createAesCipher(fessConfig.getAppCipherKey());
            }
    
            final OneWayCryptographer oneWay;
            final String digestAlgorithm = fessConfig.getAppDigestAlgorithm();
            if ("sha512".equalsIgnoreCase(digestAlgorithm)) {
                oneWay = OneWayCryptographer.createSha512Cryptographer();
            } else if ("md5".equalsIgnoreCase(digestAlgorithm)) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:38:30 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. sha256 <br>
         * comment: Algorithm for digest calculation.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getAppDigestAlgorithm();
    
        /**
         * Get the value for the key 'app.encrypt.property.pattern'. <br>
         * The value is, e.g. .*password|.*key|.*token|.*secret <br>
         * comment: Regex pattern for properties to encrypt.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top