Re: [PATCH v4 1/7] lib: crypto: add public_key_verify_signature()

2020-07-19 Thread AKASHI Takahiro
Heinrich, On Sun, Jul 19, 2020 at 10:20:58AM +0200, Heinrich Schuchardt wrote: > On 7/17/20 9:16 AM, AKASHI Takahiro wrote: > > This function will be called from x509_check_for_self_signed() and > > pkcs7_verify_one(), which will be imported from linux in a later patch. > > > > While it does exist

Re: [PATCH v4 1/7] lib: crypto: add public_key_verify_signature()

2020-07-19 Thread Heinrich Schuchardt
On 7/17/20 9:16 AM, AKASHI Takahiro wrote: > This function will be called from x509_check_for_self_signed() and > pkcs7_verify_one(), which will be imported from linux in a later patch. > > While it does exist in linux code and has a similar functionality of > rsa_verify(), it calls further linux-s

[PATCH v4 1/7] lib: crypto: add public_key_verify_signature()

2020-07-17 Thread AKASHI Takahiro
This function will be called from x509_check_for_self_signed() and pkcs7_verify_one(), which will be imported from linux in a later patch. While it does exist in linux code and has a similar functionality of rsa_verify(), it calls further linux-specific interfaces inside. That could lead to more f