Message ID | 20201026161702.39201-2-ebiggers@kernel.org |
---|---|
State | New |
Headers | show |
Series | [1/4] crypto: aead - add crypto_aead_driver_name() | expand |
diff --git a/include/crypto/aead.h b/include/crypto/aead.h index c32a6f5664e9a..fcc12c593ef8b 100644 --- a/include/crypto/aead.h +++ b/include/crypto/aead.h @@ -191,6 +191,11 @@ static inline void crypto_free_aead(struct crypto_aead *tfm) crypto_destroy_tfm(tfm, crypto_aead_tfm(tfm)); } +static inline const char *crypto_aead_driver_name(struct crypto_aead *tfm) +{ + return crypto_tfm_alg_driver_name(crypto_aead_tfm(tfm)); +} + static inline struct aead_alg *crypto_aead_alg(struct crypto_aead *tfm) { return container_of(crypto_aead_tfm(tfm)->__crt_alg,