- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for getNetbiosName (0.19 sec)
-
src/main/java/jcifs/smb/SSPContext.java
* @throws CIFSException */ byte[] initSecContext ( byte[] token, int off, int len ) throws CIFSException; /** * @return the name of the remote endpoint */ String getNetbiosName (); /** * @throws CIFSException */ void dispose () throws CIFSException; /** * @param mechanism * @return whether the specified mechanism is supported
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.6K 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: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Aug 02 08:22:42 UTC 2018 - 13.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SpnegoContext.java
void setMechs ( 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: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Jan 04 04:18:31 UTC 2021 - 14.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmContext.java
} public byte[] getServerChallenge() { return serverChallenge; } public byte[] getSigningKey() { return signingKey; } public String getNetbiosName() { return netbiosName; } private String getNtlmsspListItem(byte[] type2token, int id0) { int ri = 58; for ( ;; ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.9K 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; } /** * @param targetName * the target's SPN */ public void setTargetName ( String targetName ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 15.7K 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: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 18.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
} token = response.getBlob(); } if ( ctx.isEstablished() ) { log.debug("Context is established"); setNetbiosName(ctx.getNetbiosName()); byte[] sk = ctx.getSigningKey(); if ( sk != null ) { // session key is truncated to 16 bytes, right padded with 0 if shorter
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0)