I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 1681598d authored by str4d's avatar str4d
Browse files

merge of '30be1cda5a1ad30d33bbd355f4d85785a889c9fb'

     and '8ec6b122079156e35f7515afa5eb433a13ce41b0'
parents 93854e93 809a5335
No related branches found
No related tags found
No related merge requests found
......@@ -48,19 +48,25 @@ public class Certificate extends DataStructureImpl {
/**
* If null cert, return immutable static instance, else create new
* @throws AIOOBE if not enough bytes, FIXME should throw DataFormatException
* @throws DataFormatException if not enough bytes
* @since 0.8.3
*/
public static Certificate create(byte[] data, int off) {
int type = data[off] & 0xff;
int length = (int) DataHelper.fromLong(data, off + 1, 2);
if (type == 0 && length == 0)
return NULL_CERT;
// from here down roughly the same as readBytes() below
if (length == 0)
return new Certificate(type, null);
byte[] payload = new byte[length];
System.arraycopy(data, off + 3, payload, 0, length);
public static Certificate create(byte[] data, int off) throws DataFormatException {
int type;
byte[] payload;
try {
type = data[off] & 0xff;
int length = (int) DataHelper.fromLong(data, off + 1, 2);
if (type == 0 && length == 0)
return NULL_CERT;
// from here down roughly the same as readBytes() below
if (length == 0)
return new Certificate(type, null);
payload = new byte[length];
System.arraycopy(data, off + 3, payload, 0, length);
} catch (ArrayIndexOutOfBoundsException aioobe) {
throw new DataFormatException("not enough bytes", aioobe);
}
if (type == CERTIFICATE_TYPE_KEY) {
try {
return new KeyCertificate(payload);
......
2015-07-21 str4d
* Core: Throw DFE in Certificate.create() instead of AIOOBE (ticket #1016)
2015-07-21 str4d
* Core: Fix parsing bug in KeyCertificate
2015-07-16 zzz
* Console: Add dates to news headings
 
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment