jcifs.smb.SecurityBlob Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcifs Show documentation
Show all versions of jcifs Show documentation
JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java
/*
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package jcifs.smb;
/**
* 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 () {
return this.b;
}
int length () {
if ( this.b == null )
return 0;
return this.b.length;
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#clone()
*/
@Override
protected Object clone () throws CloneNotSupportedException {
return new SecurityBlob(this.b.clone());
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#equals(java.lang.Object)
*/
@Override
public boolean equals ( Object arg0 ) {
try {
SecurityBlob t = (SecurityBlob) arg0;
for ( int i = 0; i < this.b.length; i++ ) {
if ( this.b[ i ] != t.b[ i ] ) {
return false;
}
}
return true;
}
catch ( Throwable e ) {
return false;
}
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#hashCode()
*/
@Override
public int hashCode () {
return this.b.hashCode();
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#toString()
*/
@Override
public String toString () {
String ret = "";
for ( int i = 0; i < this.b.length; i++ ) {
int n = this.b[ i ] & 0xff;
if ( n <= 0x0f ) {
ret += "0";
}
ret += Integer.toHexString(n);
}
return ret;
}
}