- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 74 for ciphers (0.04 sec)
-
README.md
### SMB3 Encryption Support - **SMB2 Transform Header**: Encrypted message wrapping - **AES-CCM/GCM Support**: Both AES-128-CCM (SMB 3.0/3.0.2) and AES-128-GCM (SMB 3.1.1) cipher suites - **Encryption Context**: Per-session encryption state management - **Key Derivation**: SMB3 KDF implementation with dialect-specific parameters
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 09:24:52 UTC 2025 - 6.2K bytes - Viewed (0) -
cmd/common-main_test.go
testCases := []struct { content string expectedErr bool expectedValue string }{ { "value\n", false, "value", }, { " \t\n Hello, Gophers \n\t\r\n", false, "Hello, Gophers", }, } for _, testCase := range testCases { t.Run("", func(t *testing.T) { tmpfile, err := os.CreateTemp(t.TempDir(), "testfile") if err != nil { t.Error(err) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 3.7K bytes - Viewed (0) -
src/test/java/jcifs/CIFSUnsupportedCryptoExceptionTest.java
@NullAndEmptySource @ValueSource(strings = { "AES encryption not supported", "Missing Bouncy Castle provider", "Invalid key length for AES-128", "RC4 cipher not available in this JVM", "DES encryption is deprecated and not supported", "HMAC-SHA256 algorithm not found", "RSA key generation failed: key size not supported" })
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.1K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt
"trustStore is", "Reload the trust store", "Reload trust certs", "Reloaded", "adding as trusted certificates", "Ignore disabled cipher suite", "Ignore unsupported cipher suite", ).joinToString(separator = "|"), ) append(").*") }, ) private val testLogHandler = object : Handler() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri May 30 21:28:20 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistantTest.java
import org.dbflute.bhv.core.supplement.SequenceCacheHandler; import org.dbflute.bhv.exception.BehaviorExceptionThrower; import org.dbflute.bhv.exception.SQLExceptionHandlerFactory; import org.dbflute.cbean.cipher.GearedCipherManager; import org.dbflute.cbean.sqlclause.SqlClauseCreator; import org.dbflute.dbmeta.DBMetaProvider; import org.dbflute.dbway.DBDef; import org.dbflute.jdbc.SQLExceptionDigger;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/DES.java
private final int[] decryptKeys = new int[32]; private final int[] tempInts = new int[2]; /** * Creates a DES cipher instance without a key */ public DES() { } // Constructor, byte-array key. /** * Creates a DES cipher instance with the specified key * @param key the DES key (7 or 8 bytes) */ public DES(final byte[] key) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 22.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
final DialectVersion dialect = resp.getSelectedDialect(); int cipherId = -1; if (dialect.atLeast(DialectVersion.SMB311)) { cipherId = resp.getSelectedCipher(); if (cipherId == -1) { // Default to AES-128-GCM for SMB 3.1.1 if no cipher negotiated cipherId = EncryptionNegotiateContext.CIPHER_AES128_GCM; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 69.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmUtil.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb; import java.security.GeneralSecurityException; import java.security.MessageDigest; import javax.crypto.Cipher; import javax.crypto.ShortBufferException; import jcifs.CIFSContext; import jcifs.util.Crypto; import jcifs.util.Encdec; import jcifs.util.Strings; /** * Internal use only * * @author mbechler
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
return "http.proxy.password".equals(key) // || "ldap.admin.security.credentials".equals(key) // || "spnego.preauth.password".equals(key) // || "app.cipher.key".equals(key) // || "oic.client.id".equals(key) // || "oic.client.secret".equals(key); } /** * Gets a list of items relevant for bug reports. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
returnContextMap(context); } /** * Log an encryption event * * @param enabled whether encryption was enabled * @param cipherSuite cipher suite used * @param sessionId session identifier */ public void logEncryption(boolean enabled, String cipherSuite, String sessionId) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0)