Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NegTokenTarg (0.06 sec)

  1. src/main/java/jcifs/spnego/NegTokenTarg.java

        private ASN1ObjectIdentifier mechanism;
    
        private int result = UNSPECIFIED_RESULT;
    
        /**
         * Default constructor for NegTokenTarg
         */
        public NegTokenTarg() {
        }
    
        /**
         * Constructs a NegTokenTarg with the specified parameters
         * @param result the negotiation result code
         * @param mechanism the selected authentication mechanism OID
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/spnego/NegTokenTargTest.java

            byte[] mic = new byte[] { 9, 9, 9 };
            NegTokenTarg original = new NegTokenTarg(NegTokenTarg.ACCEPT_COMPLETED, mech, tokenArray, mic);
    
            // Act – serialise and parse back
            byte[] bytes = original.toByteArray();
            NegTokenTarg roundTrip = new NegTokenTarg(bytes);
    
            // Assert – all getters match the original values
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SpnegoContext.java

                    verifyMechListMIC(targ.getMechanismListMIC());
                    return new NegTokenTarg(NegTokenTarg.UNSPECIFIED_RESULT, null, null, calculateMechListMIC());
                }
                if (targ.getResult() != NegTokenTarg.ACCEPT_COMPLETED) {
                    throw new SmbException("SPNEGO negotiation did not complete");
                }
                verifyMechListMIC(targ.getMechanismListMIC());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.5K bytes
    - Viewed (0)
Back to top