Re: [PATCH v2 1/4] crypto: add dsa random number k

2022-02-11 Thread Ray Kinsella
Arek Kusztal writes: > This commit adds random number 'k' to dsa > op param struct. > > This parameter is crucial in stituation where: situation > - PMD cannot generate random number > - user would like to provide random source > > Addtionally it makes DSA consistent with ECDSA additionally

[PATCH v2 1/4] crypto: add dsa random number k

2022-02-07 Thread Arek Kusztal
This commit adds random number 'k' to dsa op param struct. This parameter is crucial in stituation where: - PMD cannot generate random number - user would like to provide random source Addtionally it makes DSA consistent with ECDSA in terms of 'k' which includes this parameter. Signed-off-by: Ar