tostring updates for debugging
This commit is contained in:
@ -83,6 +83,8 @@ public class SessionKey extends DataStructureImpl {
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "SessionKey " + toBase64();
|
||||
/****
|
||||
if (true) return super.toString();
|
||||
StringBuilder buf = new StringBuilder(64);
|
||||
buf.append("[SessionKey: ");
|
||||
@ -97,5 +99,6 @@ public class SessionKey extends DataStructureImpl {
|
||||
}
|
||||
buf.append("]");
|
||||
return buf.toString();
|
||||
****/
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -58,4 +58,8 @@ public class SessionTag extends ByteArray {
|
||||
out.write(getData());
|
||||
}
|
||||
|
||||
}
|
||||
@Override
|
||||
public String toString() {
|
||||
return "SessionTag " + toBase64();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user