Jeffrey Walton

Results 143 comments of Jeffrey Walton

@alonbl, > Initially I thought you will drop your proprietary build system ... We use GNUmake to build the library. There's nothing proprietary about it. > I considered to help,...

@alonbl, > I can help if your roadmap is to switch ... Well, now is your chance to lead Crypto++ into the future. You can work on Cmake and ignore...

@FloriansGit, > And yes, I'm aware that this will initially reduce the number of supported platforms.... If the folks who use CMake are happy with it then I say go...

@rleddy, If you are interested in OpenSSL's asm implementation, then see https://wiki.openssl.org/index.php/Cryptogams_SHA. Cryptogams is Andy Polyakov's high speed library that is used by OpenSSL. The wiki page shows you how...

+1. I'm working on a small appliance. We need to turn the display off after about 5 minutes, and re-power the display if there is motion. (Similar to a tablet).

Hi @tex0l, Here's the `MEM_PSSR` class: ``` template class PSSR_MEM : public PSSR_MEM_BaseWithHashId { virtual bool AllowRecovery() const {return ALLOW_RECOVERY;} virtual size_t SaltLen(size_t hashLen) const {return SALT_LEN < 0 ?...

Thanks @tex0l, Before I look at this in detail, can you provide (a) some sample code and (b) which standard(s) you are trying to support? I think your `struct PSS_CUSTOM_478`...

@tex0l, > (b) which standard(s) you are trying to support? Here's what I am finding: * PKCS #&#x2060;1 v2.2, RFC 8017, Section 9.1 Note 4 says the salt length *should*...

Thanks again @tex0l, For userland usage, this is what I am thinking. That is, this is what I _think_ users would like to do based on the way the current...

Hi @tex0l, I've had a chance to write some sample code. I've found several way that don't work. That's par for the course when trying to shoehorn new behavior into...