nils måsén
nils måsén
Yes, although this functionality would be nice, it's not enough for a new major release :) (I intend to use SemVer and not introduce breaking changes in minor releases) My...
I am currently going through the ExtraFields/ITaggedData for `ArchiveDiag` and have added some extensions and an Enum with the known IDs. I'm thinking about doing some changes to the API...
I think it should definitely be `ushort` (or even `byte[2]`, but that's a bit less convenient to use).
Because no one has implemented it yet, pull requests are welcomed! 😁
Yeah, 3 is probably the "right" way, and 1 is probably the "safest" way. If that wasn't clear @ShadowTeolog, your code should work if you use the non-async read: ```cs...
I adapted the code to ASP.NET Core 2.1 for a repro: ```.cs [Route("api/[controller]")] [ApiController] public class Repro194Controller : ControllerBase { [Route("")] public IActionResult DownloadZipToBrowser() { byte[] buffer = new byte[4096];...
I am not really sure how this is supposed to work, my code was just an attempt at reproducing the issue. If you have any good ideas about how to...
If you want to use the old ZipCrypto encryption, then this looks correct. If you instead want to use the newer AES encryption, then set the `.AESKeySize` on the entry...
I don't think windows have support for AES decryption of zip files. I made a sample zip file with one entry using AES, and one using ZipCrypto, it looks like...
You should probably not use a block size of ~400MB > `BZip2.Compress(sourceStream, compressStream, true, 4096);` Giving a block size above 9 should probably throw an exception though. With a block...