Open GoogleCodeExporter opened 8 years ago
[deleted comment]
//===line:45
for (var i:uint=0;i<src.length;i+=blockSize) {
tmp.length=0;
var temPosition:uint = src.position;
while(blockSize+temPosition>src.length)
{
src.position = src.length;
src.writeByte(0);
}
src.position = temPosition;
src.readBytes(tmp, 0, blockSize);
key.encrypt(tmp);
dst.writeBytes(tmp);
}
Original comment by andwhy...@gmail.com
on 8 Dec 2009 at 9:19
Original issue reported on code.google.com by
andwhy...@gmail.com
on 8 Dec 2009 at 8:50