mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-24 00:36:16 -04:00
Change Tar block padding to 2 blocks
This commit is contained in:
parent
1653cbf817
commit
d5796706e4
1 changed files with 1 additions and 1 deletions
|
@ -408,7 +408,7 @@ var Compress = {
|
||||||
};
|
};
|
||||||
|
|
||||||
Tarball.prototype.writeEndBlocks = function() {
|
Tarball.prototype.writeEndBlocks = function() {
|
||||||
var filler = new Array(512 * 1);
|
var filler = new Array(512 * 2);
|
||||||
filler.fill(0);
|
filler.fill(0);
|
||||||
this.writeBytes(filler);
|
this.writeBytes(filler);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue