Dieter Baron

Results 29 comments of Dieter Baron

Since these secure functions are part of ISO C 11, we decided to use them and add compatibility defines for systems without them. Could you please check if we still...

We no longer use `localtime` or `strcpy`. You can disable the use of `fdopen` by running `cmake` with `-DENABLE_FDOPEN=OFF`. I've seen you have replaced `fdopen` with `_tfdopen`, is that allowed?...

Unix usually does not do debug/release builds, and static and dynamic libraries have different names: libzip.a and libzip.so, respectively.

Duplicating the complete libzip build definition is not an acceptable solution. Also, this is not something we will do. If someone provides a low-impact patch, we will consider it.

That is for the MEGA65 native program, which mostly uses VIC-IV native registers. The error above is from the C64 program running in C64 mode on the MEGA65, in which...

We have made the API for layered sources public, and added your example as [examples/autoclose-archive.c](../blob/main/examples/autoclose-archive.c) If you have questions or suggestions regarding the API, please contact us. If any issues...

This sounds like a good idea and shouldn't be hard to implement.

Each block of encrypted data depends on the file data *and* previous block of encrypted data, therefore it is not possible to start decrypting in the middle of the file....

WinAES uses CTR mode, which supports random access. I don't know about PKWare. However, we probably won't get to implementing it, as it's a rather low priority edge case. We'd...