Jeffrey Walton

Results 143 comments of Jeffrey Walton

On Windows use `SSIZE_T`. See [Windows Datatypes](https://docs.microsoft.com/en-us/windows/win32/winprog/windows-data-types) in MSDN. Something like: ```c #ifdef _MSC_VER typedef SSIZE_T ssize_t; #endif ```

Thanks @Explorer09. > Did you meet any bug or regression while lowering Automake requirement to 1.11.2? Well, I was able to drop down to 1.11.2 with this patch: ``` sed...

@westes, @Explorer09, For what it is worth, these are upstream bugs you are working around. First, Autotools uses the wrong `${libdir}` so it often needs patching. It hard codes a...

> I mean the following lines of the same LICENSE file... I believe that clause is present because the Linux kernel uses some of Andy's routines. Andy had to supply...

I think we are going to pass. The arbitrary rounds complicates things too much.

@alex-xage, I think the past is under the bridge. Its another problem created by that cursed Git tool. What a fucking dumpster fire... Moving forward we will use annotated tags....

``` char buf[512]; ArraySink sink(buf, sizeof(buf)); //

We added Andy Polyakov/Cryptogams implementation for AES, SHA-1 and SHA-256. You should see about the same performance as OpenSSL. Also see https://www.cryptopp.com/wiki/Cryptogams .

Thanks again @Myriachan. This should be cleared at [Commit e6f1f8131974](https://github.com/weidai11/cryptopp/commit/e6f1f8131974).

> Let's see if we can find something in python first... If possible, please select something that's available out-of-the box, without the need to install additional software. Since this is...