- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for getNetbiosName (0.06 sec)
-
src/test/java/jcifs/smb/SSPContextTest.java
throw new CIFSException("invalid offset/length"); } return Arrays.copyOfRange(token, off, off + len); } @Override public String getNetbiosName() { return this.nbName; } @Override public void dispose() throws CIFSException { if (this.disposed) { throw new CIFSException("already disposed");
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Context.java
public boolean isMICAvailable() { return this.gssContext.getIntegState(); } /** * {@inheritDoc} * * @see jcifs.smb.SSPContext#getNetbiosName() */ @Override public String getNetbiosName() { return null; } /** * {@inheritDoc} * * @see jcifs.smb.SSPContext#getSigningKey() */ @Override
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 13.5K bytes - Viewed (1) -
src/test/java/jcifs/smb/Kerb5ContextTest.java
assertFalse(ctx.isMICAvailable()); assertTrue(ctx.isMICAvailable()); } @Test @DisplayName("getNetbiosName returns null") void getNetbiosName_null() { assertNull(ctx.getNetbiosName()); } @Test @DisplayName("getSigningKey throws when ExtendedGSSContext not implemented") void getSigningKey_notImplementedByGSSContext() {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SpnegoContext.java
void setMechs(final ASN1ObjectIdentifier[] mechs) { this.mechs = mechs; } /** * {@inheritDoc} * * @see jcifs.smb.SSPContext#getNetbiosName() */ @Override public String getNetbiosName() { return null; } /** * {@inheritDoc} * * @see jcifs.smb.SSPContext#getSigningKey() */ @Override
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/NtlmContext.java
return this.serverChallenge; } @Override public byte[] getSigningKey() { return this.masterKey; } @Override public String getNetbiosName() { return this.netbiosName; } /** * Sets the target server's Service Principal Name (SPN). * @param targetName * the target's SPN */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
SmbTransport.log.println(nctx); } if (nctx.isEstablished()) { netbiosName = nctx.getNetbiosName(); connectionState = 2; state = 0; break; } try {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 20.7K bytes - Viewed (0)