- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 5,067 for Cipher (0.14 sec)
-
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/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java
@Test @DisplayName("Should return selected cipher") void testGetSelectedCipher() throws Exception { // Given setPrivateField(response, "selectedCipher", EncryptionNegotiateContext.CIPHER_AES128_GCM); // When int cipher = response.getSelectedCipher(); // Then assertEquals(EncryptionNegotiateContext.CIPHER_AES128_GCM, cipher); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 32.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/ConnectionSpecTest.kt
ConnectionSpec .Builder(ConnectionSpec.MODERN_TLS) .cipherSuites(*arrayOf<CipherSuite>()) .build() }.also { expected -> assertThat(expected.message) .isEqualTo("At least one cipher suite is required") } } @Test fun cleartextBuilder() { val cleartextSpec = ConnectionSpec.Builder(false).build() assertThat(cleartextSpec.isTls).isFalse() } @Test
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 14.9K 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) -
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) -
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/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/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 Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jul 28 09:03:48 UTC 2024 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistant.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: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0)