xref: /linux-6.15/include/crypto/internal/sig.h (revision 4e2c9cd7)
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3  * Public Key Signature Algorithm
4  *
5  * Copyright (c) 2023 Herbert Xu <[email protected]>
6  */
7 #ifndef _CRYPTO_INTERNAL_SIG_H
8 #define _CRYPTO_INTERNAL_SIG_H
9 
10 #include <crypto/algapi.h>
11 #include <crypto/sig.h>
12 
13 static inline void *crypto_sig_ctx(struct crypto_sig *tfm)
14 {
15 	return crypto_tfm_ctx(&tfm->base);
16 }
17 #endif
18