Contributors: 4
Author Tokens Token Proportion Commits Commit Proportion
Lukas Wunner 269 81.27% 1 12.50%
Herbert Xu 59 17.82% 5 62.50%
Andrew Morton 2 0.60% 1 12.50%
Thomas Gleixner 1 0.30% 1 12.50%
Total 331 8

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Public Key Signature Algorithm
 *
 * Copyright (c) 2023 Herbert Xu <herbert@gondor.apana.org.au>
 */
#ifndef _CRYPTO_INTERNAL_SIG_H
#define _CRYPTO_INTERNAL_SIG_H

#include <crypto/algapi.h>
#include <crypto/sig.h>

struct sig_instance {
	void (*free)(struct sig_instance *inst);
	union {
		struct {
			char head[offsetof(struct sig_alg, base)];
			struct crypto_instance base;
		};
		struct sig_alg alg;
	};
};

struct crypto_sig_spawn {
	struct crypto_spawn base;
};

static inline void *crypto_sig_ctx(struct crypto_sig *tfm)
{
	return crypto_tfm_ctx(&tfm->base);
}

/**
 * crypto_register_sig() -- Register public key signature algorithm
 *
 * Function registers an implementation of a public key signature algorithm
 *
 * @alg:	algorithm definition
 *
 * Return: zero on success; error code in case of error
 */
int crypto_register_sig(struct sig_alg *alg);

/**
 * crypto_unregister_sig() -- Unregister public key signature algorithm
 *
 * Function unregisters an implementation of a public key signature algorithm
 *
 * @alg:	algorithm definition
 */
void crypto_unregister_sig(struct sig_alg *alg);

int sig_register_instance(struct crypto_template *tmpl,
			  struct sig_instance *inst);

static inline struct sig_instance *sig_instance(struct crypto_instance *inst)
{
	return container_of(&inst->alg, struct sig_instance, alg.base);
}

static inline struct sig_instance *sig_alg_instance(struct crypto_sig *tfm)
{
	return sig_instance(crypto_tfm_alg_instance(&tfm->base));
}

static inline struct crypto_instance *sig_crypto_instance(struct sig_instance
									*inst)
{
	return container_of(&inst->alg.base, struct crypto_instance, alg);
}

static inline void *sig_instance_ctx(struct sig_instance *inst)
{
	return crypto_instance_ctx(sig_crypto_instance(inst));
}

int crypto_grab_sig(struct crypto_sig_spawn *spawn,
		    struct crypto_instance *inst,
		    const char *name, u32 type, u32 mask);

static inline struct crypto_sig *crypto_spawn_sig(struct crypto_sig_spawn
								   *spawn)
{
	return crypto_spawn_tfm2(&spawn->base);
}

static inline void crypto_drop_sig(struct crypto_sig_spawn *spawn)
{
	crypto_drop_spawn(&spawn->base);
}

static inline struct sig_alg *crypto_spawn_sig_alg(struct crypto_sig_spawn
								    *spawn)
{
	return container_of(spawn->base.alg, struct sig_alg, base);
}
#endif