brintos

brintos / linux-shallow public Read only

0
0
Text · 376 B · 97cb26e Raw
18 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * Public Key Signature Algorithm4 *5 * Copyright (c) 2023 Herbert Xu <herbert@gondor.apana.org.au>6 */7#ifndef _CRYPTO_INTERNAL_SIG_H8#define _CRYPTO_INTERNAL_SIG_H9 10#include <crypto/algapi.h>11#include <crypto/sig.h>12 13static inline void *crypto_sig_ctx(struct crypto_sig *tfm)14{15	return crypto_tfm_ctx(&tfm->base);16}17#endif18