1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /* DO NOT EDIT! This file is automatically generated. */
- #include <stddef.h>
- #include <stdint.h>
- #include "crypto.h"
- #include "crypto_internal.h"
- static const size_t root_key_len = 272;
- static const uint8_t root_key[] = {
- 0x0b, 0x01, 0x00, 0x00, 0x09, 0x00, 0x01, 0x00,
- 0x00, 0xe5, 0x0e, 0xf8, 0x6b, 0x0b, 0xa9, 0xa6,
- 0xb8, 0x7d, 0x72, 0xf9, 0x9a, 0xa8, 0x7e, 0x42,
- 0x9e, 0x4b, 0xdf, 0x99, 0xb8, 0xcc, 0x91, 0x4b,
- 0x16, 0xad, 0x0f, 0xf2, 0x7d, 0x03, 0xe6, 0x6c,
- 0xb0, 0xa8, 0x32, 0xbe, 0x53, 0x03, 0xb6, 0x6f,
- 0x9b, 0x0f, 0xff, 0x0e, 0x63, 0xe3, 0x4d, 0x39,
- 0x0c, 0xb8, 0x58, 0x4d, 0x55, 0x8e, 0x6a, 0xff,
- 0x50, 0xc9, 0x00, 0xa3, 0xb8, 0x92, 0x97, 0xf8,
- 0xf6, 0x55, 0x4c, 0x63, 0x65, 0xc7, 0x15, 0xed,
- 0x1d, 0xdc, 0xfb, 0x5f, 0x98, 0xda, 0x02, 0xf1,
- 0x72, 0xf0, 0x13, 0xd7, 0x50, 0xee, 0xc4, 0x5c,
- 0x13, 0x23, 0x7e, 0xda, 0xc9, 0xb9, 0x9a, 0xa1,
- 0x84, 0x37, 0xa2, 0xf2, 0x56, 0xdc, 0x97, 0x1b,
- 0x65, 0xa7, 0xfb, 0xb5, 0xb2, 0x32, 0xa1, 0xca,
- 0x06, 0x84, 0xc5, 0x7b, 0x76, 0x00, 0x53, 0x8a,
- 0x62, 0xed, 0x35, 0x16, 0x32, 0xd4, 0xa2, 0xda,
- 0xed, 0x51, 0xe0, 0x48, 0x19, 0x77, 0x7a, 0xc6,
- 0x4a, 0x21, 0x02, 0xd6, 0xfb, 0xe3, 0x78, 0xd9,
- 0x70, 0x83, 0xd2, 0xa8, 0x07, 0xf2, 0xa6, 0x91,
- 0x85, 0x01, 0xc4, 0xe4, 0x75, 0x0f, 0x75, 0x4b,
- 0xbc, 0xa0, 0xfd, 0x57, 0xb5, 0x30, 0x31, 0x65,
- 0x21, 0x95, 0x3b, 0x4e, 0xe5, 0xd4, 0x07, 0xcd,
- 0x61, 0xb7, 0x77, 0x45, 0x0a, 0xec, 0xf2, 0xf6,
- 0xc2, 0x79, 0xda, 0xb6, 0x93, 0xa9, 0xd1, 0xd4,
- 0x39, 0x19, 0x8a, 0xb6, 0x46, 0xaa, 0x06, 0x43,
- 0xf6, 0x06, 0x7d, 0x20, 0xb2, 0xf6, 0x21, 0x91,
- 0x97, 0x6b, 0x31, 0x4f, 0xfb, 0x40, 0x5d, 0x5e,
- 0xdc, 0x53, 0xc5, 0xf4, 0x57, 0x6e, 0xe3, 0x2e,
- 0x4f, 0x95, 0xda, 0xca, 0x82, 0xf1, 0x7a, 0x8c,
- 0xde, 0xf2, 0xb7, 0x04, 0x5a, 0xc6, 0x7a, 0xf6,
- 0xdb, 0x8e, 0x6e, 0x81, 0x0e, 0x37, 0x32, 0x6b,
- 0xb1, 0x27, 0xe1, 0xc5, 0xe2, 0x70, 0x65, 0xc3,
- 0xb8, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01
- };
- /**
- * crypto_keys_server_import_root(void):
- * Import the public part of the server root key.
- */
- int
- crypto_keys_server_import_root(void)
- {
- return (crypto_keys_import(root_key, root_key_len, ~0));
- }
|