pal_crypto.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /* Copyright (C) 2014 Stony Brook University
  2. This file is part of Graphene Library OS.
  3. Graphene Library OS is free software: you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public License
  5. as published by the Free Software Foundation, either version 3 of the
  6. License, or (at your option) any later version.
  7. Graphene Library OS is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>. */
  13. /*
  14. * Cryptographic primitive abstractions. This layer provides a way to
  15. * change the crypto library without changing the rest of Graphene code
  16. * by providing a small crypto library adaptor implementing these methods.
  17. */
  18. #ifndef PAL_CRYPTO_H
  19. #define PAL_CRYPTO_H
  20. #define SHA256_DIGEST_LEN 32
  21. #ifdef CRYPTO_USE_WOLFSSL
  22. #define CRYPTO_PROVIDER_SPECIFIED
  23. #include "crypto/wolfssl/cmac.h"
  24. #include "crypto/wolfssl/aes.h"
  25. #include "crypto/wolfssl/sha256.h"
  26. #include "crypto/wolfssl/dh.h"
  27. #include "crypto/wolfssl/rsa.h"
  28. typedef SHA256 LIB_SHA256_CONTEXT;
  29. #define DH_SIZE 128
  30. typedef struct {
  31. uint8_t priv[DH_SIZE];
  32. uint32_t priv_size;
  33. DhKey key;
  34. } LIB_DH_CONTEXT __attribute__((aligned(DH_SIZE)));
  35. typedef struct RSAKey LIB_RSA_KEY;
  36. #endif /* CRYPTO_USE_WOLFSSL */
  37. #ifdef CRYPTO_USE_MBEDTLS
  38. #define CRYPTO_PROVIDER_SPECIFIED
  39. #include "crypto/mbedtls/mbedtls/cmac.h"
  40. typedef struct AES LIB_AES_CONTEXT;
  41. #include "crypto/mbedtls/mbedtls/dhm.h"
  42. #include "crypto/mbedtls/mbedtls/rsa.h"
  43. #include "crypto/mbedtls/mbedtls/sha256.h"
  44. typedef mbedtls_sha256_context LIB_SHA256_CONTEXT;
  45. /* DH_SIZE is tied to the choice of parameters in mbedtls_dh.c. */
  46. #define DH_SIZE 256
  47. #include "crypto/mbedtls/mbedtls/dhm.h"
  48. typedef mbedtls_dhm_context LIB_DH_CONTEXT;
  49. typedef mbedtls_rsa_context LIB_RSA_KEY;
  50. typedef struct {
  51. mbedtls_cipher_type_t cipher;
  52. mbedtls_cipher_context_t ctx;
  53. } LIB_AESCMAC_CONTEXT;
  54. #endif /* CRYPTO_USE_MBEDTLS */
  55. #ifndef CRYPTO_PROVIDER_SPECIFIED
  56. # error "Unknown crypto provider. Set CRYPTO_PROVIDER in Makefile"
  57. #endif
  58. /* SHA256 */
  59. int lib_SHA256Init(LIB_SHA256_CONTEXT *context);
  60. int lib_SHA256Update(LIB_SHA256_CONTEXT *context, const uint8_t *data,
  61. uint64_t len);
  62. int lib_SHA256Final(LIB_SHA256_CONTEXT *context, uint8_t *output);
  63. /* Diffie-Hellman Key Exchange */
  64. int lib_DhInit(LIB_DH_CONTEXT *context);
  65. int lib_DhCreatePublic(LIB_DH_CONTEXT *context, uint8_t *public,
  66. uint64_t *public_size);
  67. int lib_DhCalcSecret(LIB_DH_CONTEXT *context, uint8_t *peer, uint64_t peer_size,
  68. uint8_t *secret, uint64_t *secret_size);
  69. void lib_DhFinal(LIB_DH_CONTEXT *context);
  70. /* AES-CMAC */
  71. int lib_AESCMAC(const uint8_t *key, uint64_t key_len, const uint8_t *input,
  72. uint64_t input_len, uint8_t *mac, uint64_t mac_len);
  73. /* note: 'lib_AESCMAC' is the combination of 'lib_AESCMACInit',
  74. * 'lib_AESCMACUpdate', and 'lib_AESCMACFinish'. */
  75. int lib_AESCMACInit(LIB_AESCMAC_CONTEXT * context,
  76. const uint8_t *key, uint64_t key_len);
  77. int lib_AESCMACUpdate(LIB_AESCMAC_CONTEXT * context, const uint8_t * input,
  78. uint64_t input_len);
  79. int lib_AESCMACFinish(LIB_AESCMAC_CONTEXT * context, uint8_t * mac,
  80. uint64_t mac_len);
  81. /* RSA. Limited functionality. */
  82. // Initializes the key structure
  83. int lib_RSAInitKey(LIB_RSA_KEY *key);
  84. // Must call lib_RSAInitKey first
  85. int lib_RSAGenerateKey(LIB_RSA_KEY *key, uint64_t length_in_bits,
  86. uint64_t exponent);
  87. int lib_RSAExportPublicKey(LIB_RSA_KEY *key, uint8_t *e, uint64_t *e_size,
  88. uint8_t *n, uint64_t *n_size);
  89. int lib_RSAImportPublicKey(LIB_RSA_KEY *key, const uint8_t *e, uint64_t e_size,
  90. const uint8_t *n, uint64_t n_size);
  91. // Sign and verify signatures.
  92. // This function must implement RSA signature verification using PKCS#1 v1.5
  93. // padding, with SHA256 as the hash mechanism. These signatures are generated
  94. // by the Graphene filesystem build (so outside of a running Graphene
  95. // application), but are verified within the Graphene application.
  96. int lib_RSAVerifySHA256(LIB_RSA_KEY *key, const uint8_t *signature,
  97. uint64_t signature_len, uint8_t *signed_data_out,
  98. uint64_t signed_data_out_len);
  99. // Frees memory allocated in lib_RSAInitKey.
  100. int lib_RSAFreeKey(LIB_RSA_KEY *key);
  101. #endif