- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for getMechanisms (0.05 sec)
-
src/main/java/jcifs/spnego/NegTokenInit.java
return String.format("NegTokenInit[flags=%d,mechs=%s,mic=%s]", this.getContextFlags(), Arrays.toString(this.getMechanisms()), mic); } @Override public byte[] toByteArray() { try { final ASN1EncodableVector fields = new ASN1EncodableVector(); final ASN1ObjectIdentifier[] mechs = getMechanisms(); if (mechs != null) {
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/smb/Kerb5Authenticator.java
if (log.isDebugEnabled()) { log.debug("Have initial token " + tok); } if (tok.getMechanisms() != null) { Set<ASN1ObjectIdentifier> mechs = new HashSet<>(Arrays.asList(tok.getMechanisms())); boolean foundKerberos = false; for (ASN1ObjectIdentifier mech : Kerb5Context.SUPPORTED_MECHS) {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SpnegoContext.java
if (this.firstResponse) { if (!this.mechContext.isSupported(targ.getMechanism())) { throw new SmbException("Server chose an unsupported mechanism " + targ.getMechanism()); } this.selectedMech = targ.getMechanism(); if (targ.getResult() == NegTokenTarg.REQUEST_MIC) { this.requireMic = true;
Registered: 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/smb/NtlmPasswordAuthenticator.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0) -
src/main/java/jcifs/spnego/NegTokenTarg.java
this.result = result; } /** * Gets the selected authentication mechanism OID * @return the mechanism OID */ public ASN1ObjectIdentifier getMechanism() { return this.mechanism; } /** * Sets the selected authentication mechanism OID * @param mechanism the mechanism OID to set */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.9K bytes - Viewed (0)