Re: [PATCH v3 1/3] hw: Model ASPEED's Hash and Crypto Engine

2021-03-17 Thread Cédric Le Goater
On 3/17/21 2:13 PM, Philippe Mathieu-Daudé wrote: > > > On 3/17/21 1:36 PM, Cédric Le Goater wrote: >> On 3/17/21 12:47 PM, Philippe Mathieu-Daudé wrote: >>> On 3/12/21 11:57 AM, Joel Stanley wrote: The HACE (Hash and Crypto Engine) is a device that offloads MD5, SHA1, SHA2, RSA and

Re: [PATCH v3 1/3] hw: Model ASPEED's Hash and Crypto Engine

2021-03-17 Thread Philippe Mathieu-Daudé
On 3/17/21 1:36 PM, Cédric Le Goater wrote: > On 3/17/21 12:47 PM, Philippe Mathieu-Daudé wrote: >> On 3/12/21 11:57 AM, Joel Stanley wrote: >>> The HACE (Hash and Crypto Engine) is a device that offloads MD5, SHA1, >>> SHA2, RSA and other cryptographic algorithms. >>> >>> This initial model

Re: [PATCH v3 1/3] hw: Model ASPEED's Hash and Crypto Engine

2021-03-17 Thread Cédric Le Goater
On 3/17/21 12:47 PM, Philippe Mathieu-Daudé wrote: > On 3/12/21 11:57 AM, Joel Stanley wrote: >> The HACE (Hash and Crypto Engine) is a device that offloads MD5, SHA1, >> SHA2, RSA and other cryptographic algorithms. >> >> This initial model implements a subset of the device's functionality; >>

Re: [PATCH v3 1/3] hw: Model ASPEED's Hash and Crypto Engine

2021-03-17 Thread Philippe Mathieu-Daudé
On 3/12/21 11:57 AM, Joel Stanley wrote: > The HACE (Hash and Crypto Engine) is a device that offloads MD5, SHA1, > SHA2, RSA and other cryptographic algorithms. > > This initial model implements a subset of the device's functionality; > currently only direct access (non-scatter gather) hashing.

Re: [PATCH v3 1/3] hw: Model ASPEED's Hash and Crypto Engine

2021-03-17 Thread Cédric Le Goater
On 3/12/21 11:57 AM, Joel Stanley wrote: > The HACE (Hash and Crypto Engine) is a device that offloads MD5, SHA1, > SHA2, RSA and other cryptographic algorithms. > > This initial model implements a subset of the device's functionality; > currently only direct access (non-scatter gather) hashing.

Re: [PATCH v3 1/3] hw: Model ASPEED's Hash and Crypto Engine

2021-03-17 Thread Cédric Le Goater
On 3/17/21 1:02 AM, Andrew Jeffery wrote: > > > On Fri, 12 Mar 2021, at 21:27, Joel Stanley wrote: >> The HACE (Hash and Crypto Engine) is a device that offloads MD5, SHA1, >> SHA2, RSA and other cryptographic algorithms. >> >> This initial model implements a subset of the device's

Re: [PATCH v3 1/3] hw: Model ASPEED's Hash and Crypto Engine

2021-03-16 Thread Andrew Jeffery
On Fri, 12 Mar 2021, at 21:27, Joel Stanley wrote: > The HACE (Hash and Crypto Engine) is a device that offloads MD5, SHA1, > SHA2, RSA and other cryptographic algorithms. > > This initial model implements a subset of the device's functionality; > currently only direct access (non-scatter

[PATCH v3 1/3] hw: Model ASPEED's Hash and Crypto Engine

2021-03-12 Thread Joel Stanley
The HACE (Hash and Crypto Engine) is a device that offloads MD5, SHA1, SHA2, RSA and other cryptographic algorithms. This initial model implements a subset of the device's functionality; currently only direct access (non-scatter gather) hashing. Signed-off-by: Joel Stanley Signed-off-by: Cédric