Re: [PATCH 0/2] Implement RSA-PSS signature scheme

2017-03-14 Thread Daiki Ueno
ni...@lysator.liu.se (Niels Möller) writes: > Daiki Ueno writes: > >> This series of patches implements the RSA-PSS signature scheme, as >> specified in RFC 3447. To keep the interface minimal but to allow TLS >> 1.3 implementations on top of this, only SHA256/384/512 variants are

Re: [PATCH 0/2] Implement RSA-PSS signature scheme

2017-03-13 Thread Nikos Mavrogiannopoulos
On Sun, 2017-03-12 at 11:21 +0100, Niels Möller wrote: > > The prototypes of the top-level functions are as follows: > > > > int > > rsa_pss_shaXXX_sign_digest_tr(const struct rsa_public_key *pub, > >   const struct rsa_private_key *key, > >   void

Re: [PATCH 0/2] Implement RSA-PSS signature scheme

2017-03-12 Thread Niels Möller
Daiki Ueno writes: > This series of patches implements the RSA-PSS signature scheme, as > specified in RFC 3447. To keep the interface minimal but to allow TLS > 1.3 implementations on top of this, only SHA256/384/512 variants are > provided. Thanks! Sorry I've been a bit offline

[PATCH 0/2] Implement RSA-PSS signature scheme

2017-03-01 Thread Daiki Ueno
From: Daiki Ueno Hello, This series of patches implements the RSA-PSS signature scheme, as specified in RFC 3447. To keep the interface minimal but to allow TLS 1.3 implementations on top of this, only SHA256/384/512 variants are provided. The prototypes of the top-level