- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 184 for 8128 (1.04 sec)
-
src/main/java/jcifs/util/SecureCredentialStorage.java
private static final String KEY_ALGORITHM = "AES"; private static final String KEY_DERIVATION_ALGORITHM = "PBKDF2WithHmacSHA256"; private static final int KEY_SIZE = 256; private static final int GCM_TAG_SIZE = 128; private static final int GCM_IV_SIZE = 12; private static final int SALT_SIZE = 32; private static final int PBKDF2_ITERATIONS = 100_000; private final SecureRandom secureRandom = new SecureRandom();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvPipePeekResponseTest.java
int bufferIndex = offset; // Set up test values int namedPipeState = 0x02; int readDataAvailable = 256; int numberOfMessages = 5; int messageLength = 128; byte[] testData = { (byte) 0xFF, (byte) 0xEE, (byte) 0xDD, (byte) 0xCC, (byte) 0xBB, (byte) 0xAA, (byte) 0x99, (byte) 0x88 }; // Write values to buffer at offset
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.9K bytes - Viewed (0) -
cmd/apierrorcode_string.go
_ = x[ErrUnknownWORMModeDirective-124] _ = x[ErrBucketTaggingNotFound-125] _ = x[ErrObjectLockInvalidHeaders-126] _ = x[ErrInvalidTagDirective-127] _ = x[ErrPolicyAlreadyAttached-128] _ = x[ErrPolicyNotAttached-129] _ = x[ErrExcessData-130] _ = x[ErrPolicyInvalidName-131] _ = x[ErrNoTokenRevokeType-132] _ = x[ErrAdminOpenIDNotEnabled-133] _ = x[ErrAdminNoSuchAccessKey-134]
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 16 07:34:24 UTC 2025 - 21.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java
return null; } } } File getTouchfile(Artifact artifact) { StringBuilder sb = new StringBuilder(128); sb.append(artifact.getArtifactId()); sb.append('-').append(artifact.getBaseVersion()); if (artifact.getClassifier() != null) { sb.append('-').append(artifact.getClassifier());
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Apr 22 22:13:51 UTC 2025 - 12.1K bytes - Viewed (0) -
cmd/benchmark-utils_test.go
bucket := getRandomBucketName() object := getRandomObjectName() // create bucket. err = obj.MakeBucket(b.Context(), bucket, MakeBucketOptions{}) if err != nil { b.Fatal(err) } objSize := 128 * humanize.MiByte // PutObjectPart returns etag of the object inserted. // etag variable is assigned with that value. var etag string // get text data generated for number of bytes equal to object size.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 8.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Hpack.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 22.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/CommonServerMessageBlockResponseTest.java
void testCommonServerMessageBlockMethods() throws SMBProtocolDecodingException { // Test decode method byte[] buffer = new byte[512]; int bufferIndex = 0; int expectedDecodeLength = 128; when(response.decode(buffer, bufferIndex)).thenReturn(expectedDecodeLength); assertEquals(expectedDecodeLength, response.decode(buffer, bufferIndex)); // Test encode method
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.3K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/BloomFilterStrategies.java
combinedHash = ~combinedHash; } if (!bits.get(combinedHash % bitSize)) { return false; } } return true; } }, /** * This strategy uses all 128 bits of {@link Hashing#murmur3_128} when hashing. It looks different * from the implementation in MURMUR128_MITZ_32 because we're avoiding the multiplication in the
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 10.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2RequestTest.java
void testEncodeSizeMismatch() { byte[] buffer = new byte[1024]; testRequest.setTestSize(64); testRequest.setTestLength(128); IllegalStateException exception = assertThrows(IllegalStateException.class, () -> { testRequest.encode(buffer, 0); });
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.7K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt
} this.maxIntermediateCas = maxIntermediateCas } /** * Configure the certificate to generate a 256-bit ECDSA key, which provides about 128 bits of * security. ECDSA keys are noticeably faster than RSA keys. * * This is the default configuration and has been since this API was introduced in OkHttp
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 21.6K bytes - Viewed (0)