Home
last modified time | relevance | path

Searched refs:signature (Results 1 – 3 of 3) sorted by relevance

/kernel/module/
Ddecompress.c65 const u8 signature[] = { 0x1f, 0x8b, 0x08 }; in module_gzip_header_len() local
68 if (size < len || memcmp(buf, signature, sizeof(signature))) in module_gzip_header_len()
152 static const u8 signature[] = { 0xfd, '7', 'z', 'X', 'Z', 0 }; in module_xz_decompress() local
159 if (size < sizeof(signature) || in module_xz_decompress()
160 memcmp(buf, signature, sizeof(signature))) { in module_xz_decompress()
DKconfig106 bool "Module signature verification"
109 Check modules for valid signatures upon load: the signature
163 signature generation. This algorithm _must_ be built into the kernel
164 directly so that signature verification can take place. It is not
166 the signature on that module.
/kernel/
Dptrace.c817 .signature = task->rseq_sig, in ptrace_get_rseq_configuration()