- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for calculateMacHMACAES (0.19 seconds)
-
src/main/java/jcifs/pac/PacMac.java
* @return the calculated MAC bytes (truncated to 12 bytes) * @throws GeneralSecurityException if cryptographic operations fail */ public static byte[] calculateMacHMACAES(int usage, KerberosKey baseKey, byte[] input) throws GeneralSecurityException { byte[] cst = { (byte) (usage >> 24 & 0xFF), (byte) (usage >> 16 & 0xFF), (byte) (usage >> 8 & 0xFF), (byte) (usage & 0xFF),
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 9K bytes - Click Count (0) -
src/test/java/jcifs/pac/PacMacTest.java
assertNotNull(mac4); assertEquals(16, mac4.length); } /** * Test method for * {@link jcifs.pac.PacMac#calculateMacHMACAES(int, javax.security.auth.kerberos.KerberosKey, byte[])}. * * @throws GeneralSecurityException */ @Test void testCalculateMacHMACAES() throws GeneralSecurityException {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 7.1K bytes - Click Count (0)