Re: [PATCH 3/3] hwrng: msm - Add support for prng v2

From: Vinod
Date: Wed Jun 27 2018 - 01:13:53 EST


On 22-06-18, 19:57, Stephan Mueller wrote:
> Hi
>
>
> > Am 22.06.2018 um 16:50 schrieb Herbert Xu <herbert@xxxxxxxxxxxxxxxxxxx>:
> >
> >> On Fri, Jun 22, 2018 at 08:18:09PM +0530, Vinod wrote:
> >>
> >> Okay I am doing the port taking the exynos-rng as a ref.
> >> Question is how to test it, how is one supposed to exercise the rng, any
> >> test utils/apps for that? Sorry for noob question, new to crypto
> >> interfaces.
> >
> > algif_rng is available through the af_alg socket interface.
> >
> You can use the libkcapi library at http://www.chronox.de/libkcapi.html
>
> The RNG API is documented at http://chronox.de/libkcapi/html/ch03s15.html and http://chronox.de/libkcapi/html/ch03s16.html
>
> A command line app is also present with kcapi-rng as documented at https://github.com/smuellerDD/libkcapi/blob/master/README.md

Thanks for the pointers, it helped me to test the driver :)

I have two follow up question on crypto:

- If there a way to avoid using a global variable in driver to hold the
pointer for driver memory? Looks like exynos driver does that.

I understand that the crypto callback don't provide driver context as
they copy the data structures passed in registration API, but a simpler
way to get driver context would be desirable.

- .seed seems to be mandatory, if I do not set it and even use
.seedsize = 0, it panics at crypto_rng_reset(). So is .seed
mandatory?

Thanks
--
~Vinod