Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PacCredentialType (0.09 sec)

  1. src/main/java/jcifs/pac/PacCredentialType.java

     *
     * @author jbbugeau
     */
    public class PacCredentialType {
    
        private static final int MINIMAL_BUFFER_SIZE = 32;
    
        private final byte[] credentialType;
    
        /**
         * Constructs a PAC credential type from raw data.
         * @param data the raw credential type data
         * @throws PACDecodingException if the credential type data is invalid
         */
        public PacCredentialType(final byte[] data) throws PACDecodingException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/pac/PacCredentialTypeTest.java

            byte[] validData = new byte[31];
            PacCredentialType pacCredentialType = new PacCredentialType(validData);
            assertTrue(pacCredentialType.isCredentialTypeCorrect());
        }
    
        /**
         * Tests the isCredentialTypeCorrect method with a null byte array.
         * This test is indirect as the constructor would throw an exception.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/Pac.java

     * from Active Directory Kerberos tickets.
     */
    public class Pac {
    
        private static final Logger log = LoggerFactory.getLogger(Pac.class);
    
        private PacLogonInfo logonInfo;
        private PacCredentialType credentialType;
        private PacSignature serverSignature;
        private PacSignature kdcSignature;
    
        /**
         * Constructs and validates a PAC from raw data using provided Kerberos keys.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.3K bytes
    - Viewed (0)
Back to top