Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for KerberosApRequest (0.16 sec)

  1. src/main/java/jcifs/pac/kerberos/KerberosApRequest.java

     */
    public class KerberosApRequest {
    
        private byte apOptions;
        private KerberosTicket ticket;
    
        /**
         * Creates a Kerberos AP request from a token.
         *
         * @param token the Kerberos AP-REQ token
         * @param keys the Kerberos keys for decryption
         * @throws PACDecodingException if the token cannot be decoded
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/pac/kerberos/KerberosApRequestTest.java

            assertThrows(PACDecodingException.class, () -> new KerberosApRequest(seq, new KerberosKey[0]));
    
            // Verify apOptions is set correctly in a minimal sequence without ticket
            KerberosApRequest req = new KerberosApRequest(buildMinimalApReqSeq(ap), null);
            assertEquals(ap, req.getApOptions());
            assertNull(req.getTicket());
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/kerberos/KerberosToken.java

         */
        public KerberosTicket getTicket() {
            return this.apRequest.getTicket();
        }
    
        /**
         * Returns the Kerberos AP request.
         *
         * @return the KerberosApRequest object
         */
        public KerberosApRequest getApRequest() {
            return this.apRequest;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.8K bytes
    - Viewed (0)
Back to top