- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getMechanismToken (0.34 sec)
-
src/main/java/jcifs/smb/SpnegoContext.java
} inputToken = targ.getMechanismToken(); } else { throw new SmbException("Invalid token"); } if (spToken instanceof final NegTokenTarg targ && this.mechContext.isEstablished()) { // already established, but server hasn't completed yet if (targ.getResult() == NegTokenTarg.ACCEPT_INCOMPLETE && targ.getMechanismToken() == nullRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/jcifs/spnego/SpnegoToken.java
private byte[] mechanismListMIC; /** * Gets the inner mechanism token wrapped in this SPNEGO token * @return the mechanism token bytes */ public byte[] getMechanismToken() { return this.mechanismToken; } /** * Sets the inner mechanism token to be wrapped in this SPNEGO token * @param mechanismToken the mechanism token bytes */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (2) -
src/main/java/jcifs/spnego/NegTokenInit.java
if (ctxFlags != 0) { fields.add(new DERTaggedObject(true, 1, new DERBitString(ctxFlags))); } final byte[] mechanismToken = getMechanismToken(); if (mechanismToken != null) { fields.add(new DERTaggedObject(true, 2, new DEROctetString(mechanismToken))); } final byte[] mechanismListMIC = getMechanismListMIC();
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/spnego/NegTokenTarg.java
final ASN1ObjectIdentifier mech = getMechanism(); if (mech != null) { fields.add(new DERTaggedObject(true, 1, mech)); } final byte[] mechanismToken = getMechanismToken(); if (mechanismToken != null) { fields.add(new DERTaggedObject(true, 2, new DEROctetString(mechanismToken))); } final byte[] mechanismListMIC = getMechanismListMIC();
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.9K bytes - Viewed (0)