-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkeys.c
15 lines (14 loc) · 1.63 KB
/
keys.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "ds.h"
const struct ds_kernel_key keys[] = {
{ .kernel_version = "2.6.32-00002-ga546a52-dirty", .key = {0x71, 0x66, 0x08, 0xCF, 0x60, 0x4B, 0xCC, 0x56, 0x65, 0x25, 0xA4, 0x64, 0x62, 0x02, 0x71, 0xB1} },
{ .kernel_version = "2.6.32-0008-g2f6ef39-dirty", .key = {0xD4, 0xA5, 0x7D, 0x2A, 0x87, 0xD3, 0xD2, 0xCE, 0xA2, 0x79, 0x0E, 0xE3, 0xCF, 0x4E, 0x7D, 0xB3} },
{ .kernel_version = "2.6.32-0032-g2005e8d-dirty", .key = {0x29, 0x09, 0x40, 0xA1, 0x74, 0xF1, 0x8E, 0x2B, 0xE9, 0x80, 0xF9, 0xFA, 0x51, 0x72, 0xA7, 0x4B} },
{ .kernel_version = "2.6.32-00076-g06abd49-dirty", .key = {0xC4, 0x5D, 0x3A, 0x66, 0x39, 0xE2, 0x89, 0xD4, 0x89, 0xA5, 0x4A, 0x55, 0xDC, 0xEA, 0x01, 0xDB} },
{ .kernel_version = "2.6.24.7-g5c78c383-dirty", .key = {0x25, 0xc5, 0x1b, 0xdd, 0x9f, 0xa4, 0x14, 0x73, 0x43, 0xd8, 0xb7, 0x6d, 0xc3, 0x95, 0x7e, 0xba} },
{ .kernel_version = "2.6.24.7-g3eac6a00-dirty", .key = {0x79, 0x81, 0x47, 0x7f, 0x10, 0xa3, 0x3c, 0x38, 0x93, 0x8e, 0x8b, 0xd1, 0xe1, 0x6e, 0x97, 0x51} },
{ .kernel_version = "2.6.32-00376-gb32a05c-dirty", .key = {0x35, 0xa9, 0xaf, 0x64, 0x49, 0x65, 0x1c, 0x24, 0x52, 0x39, 0xa1, 0x51, 0xb0, 0x7f, 0x45, 0xdd} },
{ .kernel_version = "2.6.32-00366-gdd3b182-dirty", .key = {0xbc, 0x6e, 0x92, 0x4a, 0xb3, 0xf8, 0x2f, 0x77, 0x53, 0x9f, 0xdd, 0x97, 0xa2, 0x5b, 0xe4, 0xea} },
{ .kernel_version = "2.6.32-00021-g7726646-dirty", .key = {0x42, 0xd3, 0x45, 0x95, 0x46, 0x55, 0x34, 0x22, 0xe1, 0xe8, 0xcd, 0xe7, 0xa8, 0x55, 0xc6, 0xa} },
};
const struct ds_kernel_key *keys_end = keys + (sizeof (keys) / sizeof(struct ds_kernel_key));
const int keys_count = sizeof (keys) / sizeof(struct ds_kernel_key);