public_key.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /* Asymmetric public-key algorithm definitions
  2. *
  3. * See Documentation/crypto/asymmetric-keys.txt
  4. *
  5. * Copyright (C) 2012 Red Hat, Inc. All Rights Reserved.
  6. * Written by David Howells (dhowells@redhat.com)
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public Licence
  10. * as published by the Free Software Foundation; either version
  11. * 2 of the Licence, or (at your option) any later version.
  12. */
  13. #ifndef _LINUX_PUBLIC_KEY_H
  14. #define _LINUX_PUBLIC_KEY_H
  15. #include <linux/mpi.h>
  16. enum pkey_algo {
  17. PKEY_ALGO_DSA,
  18. PKEY_ALGO_RSA,
  19. PKEY_ALGO__LAST
  20. };
  21. extern const char *const pkey_algo_name[PKEY_ALGO__LAST];
  22. extern const struct public_key_algorithm *pkey_algo[PKEY_ALGO__LAST];
  23. enum pkey_hash_algo {
  24. PKEY_HASH_MD4,
  25. PKEY_HASH_MD5,
  26. PKEY_HASH_SHA1,
  27. PKEY_HASH_RIPE_MD_160,
  28. PKEY_HASH_SHA256,
  29. PKEY_HASH_SHA384,
  30. PKEY_HASH_SHA512,
  31. PKEY_HASH_SHA224,
  32. PKEY_HASH__LAST
  33. };
  34. extern const char *const pkey_hash_algo_name[PKEY_HASH__LAST];
  35. enum pkey_id_type {
  36. PKEY_ID_PGP, /* OpenPGP generated key ID */
  37. PKEY_ID_X509, /* X.509 arbitrary subjectKeyIdentifier */
  38. PKEY_ID_TYPE__LAST
  39. };
  40. extern const char *const pkey_id_type_name[PKEY_ID_TYPE__LAST];
  41. /*
  42. * Cryptographic data for the public-key subtype of the asymmetric key type.
  43. *
  44. * Note that this may include private part of the key as well as the public
  45. * part.
  46. */
  47. struct public_key {
  48. const struct public_key_algorithm *algo;
  49. u8 capabilities;
  50. #define PKEY_CAN_ENCRYPT 0x01
  51. #define PKEY_CAN_DECRYPT 0x02
  52. #define PKEY_CAN_SIGN 0x04
  53. #define PKEY_CAN_VERIFY 0x08
  54. enum pkey_algo pkey_algo : 8;
  55. enum pkey_id_type id_type : 8;
  56. union {
  57. MPI mpi[5];
  58. struct {
  59. MPI p; /* DSA prime */
  60. MPI q; /* DSA group order */
  61. MPI g; /* DSA group generator */
  62. MPI y; /* DSA public-key value = g^x mod p */
  63. MPI x; /* DSA secret exponent (if present) */
  64. } dsa;
  65. struct {
  66. MPI n; /* RSA public modulus */
  67. MPI e; /* RSA public encryption exponent */
  68. MPI d; /* RSA secret encryption exponent (if present) */
  69. MPI p; /* RSA secret prime (if present) */
  70. MPI q; /* RSA secret prime (if present) */
  71. } rsa;
  72. };
  73. };
  74. extern void public_key_destroy(void *payload);
  75. /*
  76. * Public key cryptography signature data
  77. */
  78. struct public_key_signature {
  79. u8 *digest;
  80. u8 digest_size; /* Number of bytes in digest */
  81. u8 nr_mpi; /* Occupancy of mpi[] */
  82. enum pkey_hash_algo pkey_hash_algo : 8;
  83. union {
  84. MPI mpi[2];
  85. struct {
  86. MPI s; /* m^d mod n */
  87. } rsa;
  88. struct {
  89. MPI r;
  90. MPI s;
  91. } dsa;
  92. };
  93. };
  94. struct key;
  95. extern int verify_signature(const struct key *key,
  96. const struct public_key_signature *sig);
  97. #endif /* _LINUX_PUBLIC_KEY_H */