Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 6fdca3c5ab55d6a74277efcae2db9828f567a06a 18 lines 457 B view raw
1/* SPDX-License-Identifier: GPL-2.0+ */ 2/* 3 * Module signature handling. 4 * 5 * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved. 6 * Written by David Howells (dhowells@redhat.com) 7 */ 8 9#ifndef _LINUX_MODULE_SIGNATURE_H 10#define _LINUX_MODULE_SIGNATURE_H 11 12#include <linux/types.h> 13#include <uapi/linux/module_signature.h> 14 15int mod_check_sig(const struct module_signature *ms, size_t file_len, 16 const char *name); 17 18#endif /* _LINUX_MODULE_SIGNATURE_H */