- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 3,187 for 1final (0.04 sec)
-
guava-tests/test/com/google/common/hash/MacHashFunctionTest.java
public class MacHashFunctionTest extends TestCase { private static final ImmutableSet<String> INPUTS = ImmutableSet.of("", "Z", "foobar"); private static final SecretKey MD5_KEY = new SecretKeySpec("secret key".getBytes(UTF_8), "HmacMD5"); private static final SecretKey SHA1_KEY = new SecretKeySpec("secret key".getBytes(UTF_8), "HmacSHA1"); private static final SecretKey SHA256_KEY =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Dec 27 16:19:35 UTC 2024 - 13.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2SigningDigest.java
private static final Logger log = LoggerFactory.getLogger(Smb2SigningDigest.class); /** * */ private static final int SIGNATURE_OFFSET = 48; private static final int SIGNATURE_LENGTH = 16; private final Mac digest; private final ReentrantLock signingLock = new ReentrantLock(); private byte[] signingKey; private final String algorithmName;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java
assertTrue("ACCESS_CONTROL_ALLOW_HEADERS should be final", Modifier.isFinal(headersField.getModifiers())); Field methodsField = CorsHandler.class.getDeclaredField("ACCESS_CONTROL_ALLOW_METHODS"); assertTrue("ACCESS_CONTROL_ALLOW_METHODS should be final", Modifier.isFinal(methodsField.getModifiers())); Field privateNetworkField = CorsHandler.class.getDeclaredField("ACCESS_CONTROL_ALLOW_PRIVATE_NETWORK");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
* @param preauthHash * preauth integrity hash for SMB 3.1.1 (optional) */ public Smb2EncryptionContext(final int cipherId, final DialectVersion dialect, final byte[] encryptionKey, final byte[] decryptionKey, final SecureKeyManager keyManager, final byte[] sessionKey, final byte[] preauthHash) { this.cipherId = cipherId; this.dialect = dialect; this.keyManager = keyManager;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/MethodUtil.java
public static <T> T invoke(final Method method, final Object target, final Object... args) throws InvocationTargetRuntimeException, IllegalAccessRuntimeException { assertArgumentNotNull("method", method); try { return (T) method.invoke(target, args); } catch (final InvocationTargetException ex) { final Throwable t = ex.getCause();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
} } private final NtlmPasswordAuthenticator auth; private int ntlmsspFlags; private final String workstation; private boolean isEstablished = false; private byte[] serverChallenge = null; private byte[] masterKey = null; private final String netbiosName = null; private final boolean requireKeyExchange; private final AtomicInteger signSequence = new AtomicInteger(0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/FieldDescImpl.java
protected final BeanDesc beanDesc; /** The field */ protected final Field field; /** The field name */ protected final String fieldName; /** The type of the field */ protected final Class<?> fieldType; /** Information about the parameterized type */ protected final ParameterizedClassDesc parameterizedClassDesc; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacMac.java
*/ private PacMac() { // Utility class } /** * */ private static final String HMAC_KEY = "HMAC"; private static final byte[] MD5_CONSTANT = "signaturekey\0".getBytes(StandardCharsets.US_ASCII); private static final byte[] ZERO_IV = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; /** * Calculates a MAC using the ARCFOUR-HMAC-MD5 algorithm.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java
private static final class Dummies { @Keep public static final class InMemoryPrintStream extends PrintStream { @Keep public InMemoryPrintStream() { super(new ByteArrayOutputStream()); } } @Keep public static final class InMemoryPrintWriter extends PrintWriter { @Keep
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 20.9K bytes - Viewed (0) -
src/test/java/jcifs/spnego/SpnegoConstantsTest.java
assertTrue(Modifier.isPublic(m), e.getKey() + " must be public"); assertTrue(Modifier.isStatic(m), e.getKey() + " must be static"); assertTrue(Modifier.isFinal(m), e.getKey() + " must be final"); assertEquals(String.class, f.getType(), e.getKey() + " must be String"); assertEquals(e.getValue(), f.get(null), e.getKey() + " value mismatch"); } } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.7K bytes - Viewed (0)