- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for generateKey (0.08 sec)
-
src/test/java/jcifs/pac/kerberos/KerberosEncDataTest.java
@Test void testDecryptDes() throws GeneralSecurityException, NoSuchAlgorithmException { KeyGenerator keyGen = KeyGenerator.getInstance("DES"); keyGen.init(56); SecretKey secretKey = keyGen.generateKey(); Key key = new KerberosKey(null, secretKey.getEncoded(), KerberosConstants.DES_ENC_TYPE, 0); byte[] data = new byte[32]; // Dummy data, must be multiple of 8
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.7K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/FreshValueGenerator.java
} @Generates static <E> ImmutableCollection<E> generateImmutableCollection(E freshElement) { return generateImmutableList(freshElement); } @Generates static <E> Set<E> generateSet(@Nullable E freshElement) { return generateHashSet(freshElement); } @Generates static <E> HashSet<E> generateHashSet(@Nullable E freshElement) { return generateLinkedHashSet(freshElement); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 28.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java
} @Generates static <E> ImmutableCollection<E> generateImmutableCollection(E freshElement) { return generateImmutableList(freshElement); } @Generates static <E> Set<E> generateSet(@Nullable E freshElement) { return generateHashSet(freshElement); } @Generates static <E> HashSet<E> generateHashSet(@Nullable E freshElement) { return generateLinkedHashSet(freshElement); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 28.1K bytes - Viewed (0)