crypto_keys_server.c 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* DO NOT EDIT! This file is automatically generated. */
  2. #include <stddef.h>
  3. #include <stdint.h>
  4. #include "crypto.h"
  5. #include "crypto_internal.h"
  6. static const size_t root_key_len = 272;
  7. static const uint8_t root_key[] = {
  8. 0x0b, 0x01, 0x00, 0x00, 0x09, 0x00, 0x01, 0x00,
  9. 0x00, 0xe5, 0x0e, 0xf8, 0x6b, 0x0b, 0xa9, 0xa6,
  10. 0xb8, 0x7d, 0x72, 0xf9, 0x9a, 0xa8, 0x7e, 0x42,
  11. 0x9e, 0x4b, 0xdf, 0x99, 0xb8, 0xcc, 0x91, 0x4b,
  12. 0x16, 0xad, 0x0f, 0xf2, 0x7d, 0x03, 0xe6, 0x6c,
  13. 0xb0, 0xa8, 0x32, 0xbe, 0x53, 0x03, 0xb6, 0x6f,
  14. 0x9b, 0x0f, 0xff, 0x0e, 0x63, 0xe3, 0x4d, 0x39,
  15. 0x0c, 0xb8, 0x58, 0x4d, 0x55, 0x8e, 0x6a, 0xff,
  16. 0x50, 0xc9, 0x00, 0xa3, 0xb8, 0x92, 0x97, 0xf8,
  17. 0xf6, 0x55, 0x4c, 0x63, 0x65, 0xc7, 0x15, 0xed,
  18. 0x1d, 0xdc, 0xfb, 0x5f, 0x98, 0xda, 0x02, 0xf1,
  19. 0x72, 0xf0, 0x13, 0xd7, 0x50, 0xee, 0xc4, 0x5c,
  20. 0x13, 0x23, 0x7e, 0xda, 0xc9, 0xb9, 0x9a, 0xa1,
  21. 0x84, 0x37, 0xa2, 0xf2, 0x56, 0xdc, 0x97, 0x1b,
  22. 0x65, 0xa7, 0xfb, 0xb5, 0xb2, 0x32, 0xa1, 0xca,
  23. 0x06, 0x84, 0xc5, 0x7b, 0x76, 0x00, 0x53, 0x8a,
  24. 0x62, 0xed, 0x35, 0x16, 0x32, 0xd4, 0xa2, 0xda,
  25. 0xed, 0x51, 0xe0, 0x48, 0x19, 0x77, 0x7a, 0xc6,
  26. 0x4a, 0x21, 0x02, 0xd6, 0xfb, 0xe3, 0x78, 0xd9,
  27. 0x70, 0x83, 0xd2, 0xa8, 0x07, 0xf2, 0xa6, 0x91,
  28. 0x85, 0x01, 0xc4, 0xe4, 0x75, 0x0f, 0x75, 0x4b,
  29. 0xbc, 0xa0, 0xfd, 0x57, 0xb5, 0x30, 0x31, 0x65,
  30. 0x21, 0x95, 0x3b, 0x4e, 0xe5, 0xd4, 0x07, 0xcd,
  31. 0x61, 0xb7, 0x77, 0x45, 0x0a, 0xec, 0xf2, 0xf6,
  32. 0xc2, 0x79, 0xda, 0xb6, 0x93, 0xa9, 0xd1, 0xd4,
  33. 0x39, 0x19, 0x8a, 0xb6, 0x46, 0xaa, 0x06, 0x43,
  34. 0xf6, 0x06, 0x7d, 0x20, 0xb2, 0xf6, 0x21, 0x91,
  35. 0x97, 0x6b, 0x31, 0x4f, 0xfb, 0x40, 0x5d, 0x5e,
  36. 0xdc, 0x53, 0xc5, 0xf4, 0x57, 0x6e, 0xe3, 0x2e,
  37. 0x4f, 0x95, 0xda, 0xca, 0x82, 0xf1, 0x7a, 0x8c,
  38. 0xde, 0xf2, 0xb7, 0x04, 0x5a, 0xc6, 0x7a, 0xf6,
  39. 0xdb, 0x8e, 0x6e, 0x81, 0x0e, 0x37, 0x32, 0x6b,
  40. 0xb1, 0x27, 0xe1, 0xc5, 0xe2, 0x70, 0x65, 0xc3,
  41. 0xb8, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01
  42. };
  43. /**
  44. * crypto_keys_server_import_root(void):
  45. * Import the public part of the server root key.
  46. */
  47. int
  48. crypto_keys_server_import_root(void)
  49. {
  50. return (crypto_keys_import(root_key, root_key_len, ~0));
  51. }