-
- Downloads
crypto: sig - Rename crypto_sig_maxsize() to crypto_sig_keysize()
crypto_sig_maxsize() is a bit of a misnomer as it doesn't return the maximum signature size, but rather the key size. Rename it as well as all implementations of the ->max_size callback. A subsequent commit introduces a crypto_sig_maxsize() function which returns the actual maximum signature size. While at it, change the return type of crypto_sig_keysize() from int to unsigned int for consistency with crypto_akcipher_maxsize(). None of the callers checks for a negative return value and an error condition can always be indicated by returning zero. Signed-off-by:Lukas Wunner <lukas@wunner.de> Signed-off-by:
Herbert Xu <herbert@gondor.apana.org.au>
Showing
- Documentation/crypto/api-sig.rst 2 additions, 1 deletionDocumentation/crypto/api-sig.rst
- crypto/asymmetric_keys/public_key.c 2 additions, 2 deletionscrypto/asymmetric_keys/public_key.c
- crypto/ecdsa-x962.c 4 additions, 4 deletionscrypto/ecdsa-x962.c
- crypto/ecdsa.c 5 additions, 5 deletionscrypto/ecdsa.c
- crypto/ecrdsa.c 2 additions, 2 deletionscrypto/ecrdsa.c
- crypto/rsassa-pkcs1.c 2 additions, 2 deletionscrypto/rsassa-pkcs1.c
- crypto/sig.c 1 addition, 1 deletioncrypto/sig.c
- crypto/testmgr.c 1 addition, 1 deletioncrypto/testmgr.c
- include/crypto/sig.h 7 additions, 7 deletionsinclude/crypto/sig.h
Loading
Please register or sign in to comment