crypto.h 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* Slitheen - a decoy routing system for censorship resistance
  2. * Copyright (C) 2017 Cecylia Bocovich (cbocovic@uwaterloo.ca)
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, version 3.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. *
  16. * Additional permission under GNU GPL version 3 section 7
  17. *
  18. * If you modify this Program, or any covered work, by linking or combining
  19. * it with the OpenSSL library (or a modified version of that library),
  20. * containing parts covered by the terms of the OpenSSL Licence and the
  21. * SSLeay license, the licensors of this Program grant you additional
  22. * permission to convey the resulting work. Corresponding Source for a
  23. * non-source form of such a combination shall include the source code
  24. * for the parts of the OpenSSL library used as well as that of the covered
  25. * work.
  26. */
  27. #ifndef _CRYPTO_H_
  28. #define _CRYPTO_H_
  29. #include "flow.h"
  30. #include "ptwist.h"
  31. #define n2s(c,s) ((s=(((unsigned int)(c[0]))<< 8)| \
  32. (((unsigned int)(c[1])) )),c+=2)
  33. /* Curves */
  34. int extract_parameters(flow *f, uint8_t *hs);
  35. int encrypt(flow *f, uint8_t *input, uint8_t *output, int32_t len, int32_t incoming, int32_t type, int32_t enc, uint8_t re);
  36. int fake_encrypt(flow *f, int32_t incoming);
  37. int extract_server_random(flow *f, uint8_t *hs);
  38. int compute_master_secret(flow *f);
  39. int PRF(flow *f, uint8_t *secret, int32_t secret_len,
  40. uint8_t *seed1, int32_t seed1_len,
  41. uint8_t *seed2, int32_t seed2_len,
  42. uint8_t *seed3, int32_t seed3_len,
  43. uint8_t *seed4, int32_t seed4_len,
  44. uint8_t *output, int32_t output_len);
  45. int update_finish_hash(flow *f, uint8_t *hs);
  46. int verify_finish_hash(flow *f, uint8_t *p, int32_t incoming);
  47. int init_ciphers(flow *f);
  48. void generate_client_super_keys(uint8_t *secret, client *c);
  49. int super_encrypt(client *c, uint8_t *data, uint32_t len);
  50. void check_handshake(struct packet_info *info);
  51. int check_tag(byte key[16], const byte privkey[PTWIST_BYTES],
  52. const byte tag[PTWIST_TAG_BYTES], const byte *context,
  53. size_t context_len);
  54. #define PRE_MASTER_MAX_LEN BUFSIZ
  55. #define SLITHEEN_KEYGEN_CONST "SLITHEEN_KEYGEN"
  56. #define SLITHEEN_KEYGEN_CONST_SIZE 15
  57. #define SLITHEEN_FINISHED_INPUT_CONST "SLITHEEN_FINISH"
  58. #define SLITHEEN_FINISHED_INPUT_CONST_SIZE 15
  59. #define SLITHEEN_SUPER_SECRET_SIZE 16 //extracted from slitheen ID tag
  60. #define SLITHEEN_SUPER_CONST "SLITHEEN_SUPER_ENCRYPT"
  61. #define SLITHEEN_SUPER_CONST_SIZE 22
  62. #endif