forked from I2P_Developers/i2p.i2p
Data: Fix length for offline sig verification
This commit is contained in:
@ -207,7 +207,7 @@ public class LeaseSet2 extends LeaseSet {
|
|||||||
I2PAppContext ctx = I2PAppContext.getGlobalContext();
|
I2PAppContext ctx = I2PAppContext.getGlobalContext();
|
||||||
if (_transientExpires < ctx.clock().now())
|
if (_transientExpires < ctx.clock().now())
|
||||||
return false;
|
return false;
|
||||||
ByteArrayOutputStream baos = new ByteArrayOutputStream(128);
|
ByteArrayOutputStream baos = new ByteArrayOutputStream(6 + _transientSigningPublicKey.length());
|
||||||
try {
|
try {
|
||||||
DataHelper.writeLong(baos, 4, _transientExpires / 1000);
|
DataHelper.writeLong(baos, 4, _transientExpires / 1000);
|
||||||
DataHelper.writeLong(baos, 2, _transientSigningPublicKey.getType().getCode());
|
DataHelper.writeLong(baos, 2, _transientSigningPublicKey.getType().getCode());
|
||||||
|
Reference in New Issue
Block a user