- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ACCEPT_COMPLETED (0.07 sec)
-
src/main/java/jcifs/spnego/NegTokenTarg.java
import org.bouncycastle.asn1.DERTaggedObject; @SuppressWarnings ( "javadoc" ) public class NegTokenTarg extends SpnegoToken { public static final int UNSPECIFIED_RESULT = -1; public static final int ACCEPT_COMPLETED = 0; public static final int ACCEPT_INCOMPLETE = 1; public static final int REJECTED = 2; public static final int REQUEST_MIC = 3; private ASN1ObjectIdentifier mechanism;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Jan 04 04:18:31 UTC 2021 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SpnegoContext.java
return new NegTokenTarg(NegTokenTarg.UNSPECIFIED_RESULT, null, null, calculateMechListMIC()); } else if ( targ.getResult() != NegTokenTarg.ACCEPT_COMPLETED ) { throw new SmbException("SPNEGO negotiation did not complete"); } verifyMechListMIC(targ.getMechanismListMIC()); this.completed = true; return null;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Jan 04 04:18:31 UTC 2021 - 14.8K bytes - Viewed (0)