- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for SecurityBlob (0.12 sec)
-
src/main/java/jcifs/smb/SecurityBlob.java
/** * This class represents the Secrity_Blob in SMB Block and is set to support * kerberos authentication. * * @author Shun * */ class SecurityBlob { private byte[] b = new byte[0]; SecurityBlob () {} SecurityBlob ( byte[] b ) { set(b); } void set ( byte[] b ) { this.b = b == null ? new byte[0] : b; } byte[] get () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0)