Linux Audio

Check our new training course

Loading...
Note: File does not exist in v5.4.
 1/* SPDX-License-Identifier: GPL-2.0-or-later */
 2/*
 3 * Public Key Signature Algorithm
 4 *
 5 * Copyright (c) 2023 Herbert Xu <herbert@gondor.apana.org.au>
 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
13static inline void *crypto_sig_ctx(struct crypto_sig *tfm)
14{
15	return crypto_tfm_ctx(&tfm->base);
16}
17#endif