You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rsa_aes_cbc_sha1.c 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright (C) 2015 Michael Brown <mbrown@fensystems.co.uk>.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of the
  7. * License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  17. * 02110-1301, USA.
  18. *
  19. * You can also choose to distribute this program under the terms of
  20. * the Unmodified Binary Distribution Licence (as given in the file
  21. * COPYING.UBDL), provided that you have satisfied its requirements.
  22. */
  23. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  24. #include <byteswap.h>
  25. #include <ipxe/rsa.h>
  26. #include <ipxe/aes.h>
  27. #include <ipxe/sha1.h>
  28. #include <ipxe/tls.h>
  29. /** TLS_RSA_WITH_AES_128_CBC_SHA cipher suite */
  30. struct tls_cipher_suite tls_rsa_with_aes_128_cbc_sha __tls_cipher_suite (03) = {
  31. .code = htons ( TLS_RSA_WITH_AES_128_CBC_SHA ),
  32. .key_len = ( 128 / 8 ),
  33. .pubkey = &rsa_algorithm,
  34. .cipher = &aes_cbc_algorithm,
  35. .digest = &sha1_algorithm,
  36. };
  37. /** TLS_RSA_WITH_AES_256_CBC_SHA cipher suite */
  38. struct tls_cipher_suite tls_rsa_with_aes_256_cbc_sha __tls_cipher_suite (04) = {
  39. .code = htons ( TLS_RSA_WITH_AES_256_CBC_SHA ),
  40. .key_len = ( 256 / 8 ),
  41. .pubkey = &rsa_algorithm,
  42. .cipher = &aes_cbc_algorithm,
  43. .digest = &sha1_algorithm,
  44. };