- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for cipherA (0.16 sec)
-
internal/fips/api.go
tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, } } // TLSCiphersBackwardCompatible returns a list of supported // TLS transport cipher suite IDs. // // In contrast to TLSCiphers, the list contains additional // ciphers for backward compatibility. In particular, AES-CBC // and non-ECDHE ciphers. func TLSCiphersBackwardCompatible() []uint16 { if Enabled { return []uint16{ tls.TLS_AES_128_GCM_SHA256, // TLS 1.3
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jul 23 10:11:25 UTC 2024 - 5K bytes - Viewed (0) -
cmd/sftp-server.go
ssh.KeyAlgoSKED25519, ssh.KeyAlgoSKECDSA256, ssh.KeyAlgoECDSA256, ssh.KeyAlgoECDSA384, ssh.KeyAlgoECDSA521, ssh.KeyAlgoRSASHA256, ssh.KeyAlgoRSASHA512, ssh.KeyAlgoRSA, ssh.KeyAlgoDSA, } // supportedCiphers lists ciphers we support but might not recommend. // https://cs.opensource.google/go/x/crypto/+/refs/tags/v0.22.0:ssh/common.go;l=28 var supportedCiphers = []string{ "aes128-ctr", "aes192-ctr", "aes256-ctr",
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 20 20:00:29 UTC 2024 - 16K bytes - Viewed (0) -
internal/kms/secret-key.go
iv, nonce := random[:16], random[16:] var aead cipher.AEAD switch keyType { case kms.AES256: mac := hmac.New(sha256.New, s.key) mac.Write(iv) sealingKey := mac.Sum(nil) block, err := aes.NewCipher(sealingKey) if err != nil { return nil, err } aead, err = cipher.NewGCM(block) if err != nil { return nil, err } case kms.ChaCha20:
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Aug 18 06:43:03 UTC 2024 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
if (cookieNameMap == null) { cookieNameMap = new HashMap<>(); } cookieNameMap.put(cookieName, roleName); } public void setCipher(final CachedCipher cipher) { this.cipher = cipher; } public void setValueSeparator(final String valueSeparator) { this.valueSeparator = valueSeparator; } public void setRoleSeparator(final String roleSeparator) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 25 01:48:41 UTC 2024 - 11.5K bytes - Viewed (0) -
doc/godebug.md
The [`jstmpllitinterp` setting](/pkg/html/template#hdr-Security_Model) no longer has any effect. Go 1.23 changed the default TLS cipher suites used by clients and servers when not explicitly configured, removing 3DES cipher suites. The default can be reverted using the [`tls3des` setting](/pkg/crypto/tls/#Config.CipherSuites).
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Oct 28 14:46:33 UTC 2024 - 17.2K bytes - Viewed (0) -
src/main/resources/fess.xml
<property name="encryptedHeaderValue">true</property> <property name="cookieKey">"fessRoles"</property> <property name="encryptedCookieValue">true</property> <property name="cipher"> <component class="org.codelibs.core.crypto.CachedCipher"> <property name="key">"1234567890123456"</property> </component> </property> <property name="valueSeparator">"\\n"</property>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jul 28 09:03:48 UTC 2024 - 5.2K bytes - Viewed (0) -
build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt
val minlog = "com.esotericsoftware.minlog:minlog" val nativePlatform = "net.rubygrapefruit:native-platform" val objenesis = "org.objenesis:objenesis" val plexusCipher = "org.sonatype.plexus:plexus-cipher" val plexusClassworlds = "org.codehaus.plexus:plexus-classworlds" val plexusInterpolation = "org.codehaus.plexus:plexus-interpolation" val plexusSecDispatcher = "org.codehaus.plexus:plexus-sec-dispatcher"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 29 08:06:17 UTC 2024 - 15.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
public static final String QUERIES = "queries"; public static final String VIRTUAL_HOSTS = "virtualHosts"; public static final String CIPHER_PREFIX = "{cipher}"; public static final String SYSTEM_USER = "system"; public static final String EMPTY_USER_ID = "<empty>"; public static final String CRAWLER_PROCESS_COMMAND_THREAD_DUMP = "thread_dump";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Aug 22 12:43:18 UTC 2024 - 16.6K bytes - Viewed (0) -
src/main/resources/fess_config.properties
search_engine.http.url=http://localhost:9201 search_engine.http.ssl.certificate_authorities= search_engine.username= search_engine.password= search_engine.heartbeat_interval=10000 # Cryptographer app.cipher.algorism=aes app.cipher.key=___change__me___ app.digest.algorism=sha256 app.encrypt.property.pattern=.*password|.*key|.*token|.*secret app.extension.names= app.audit.log.format= # JVM options jvm.crawler.options=\
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Oct 01 14:13:38 UTC 2024 - 30.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/HashTestUtils.java
} } } /** * Test for 2-bit characteristics. A characteristic is a delta in the input which is repeated in * the output. For example, if f() is a block cipher and c is a characteristic, then f(x^c) = * f(x)^c with greater than expected probability. The test for funneling is merely a test for * 1-bit characteristics. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 25.5K bytes - Viewed (0)