cast5.h 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /* cast5.h */
  2. /*
  3. This file is part of the ARM-Crypto-Lib.
  4. Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de)
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  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. /**
  17. * \file cast5.h
  18. * \author Daniel Otte
  19. * \date 2006-07-26
  20. * \license GPLv3 or later
  21. * \brief Implementation of the CAST5 (aka CAST-128) cipher algorithm as described in RFC 2144
  22. *
  23. */
  24. #ifndef CAST5_H_
  25. #define CAST5_H_
  26. #include <stdint.h>
  27. #ifndef BOOL
  28. #define BOOL
  29. #ifndef __BOOL
  30. #define __BOOL
  31. #ifndef __BOOL__
  32. #define __BOOL__
  33. typedef enum{false=0,true=1} bool;
  34. #endif
  35. #endif
  36. #endif
  37. /** \typedef cast5_ctx_t
  38. * \brief CAST-5 context
  39. *
  40. * A variable of this type may hold a keyschedule for the CAST-5 cipher.
  41. * This context is regulary generated by the
  42. * cast5_init(uint8_t* key, uint8_t keylength_b, cast5_ctx_t* s) function.
  43. */
  44. typedef struct cast5_ctx_st{
  45. uint32_t mask[16];
  46. uint8_t rotl[8]; /* 4 bit from every rotation key is stored here */
  47. uint8_t roth[2]; /* 1 bit from every rotation key is stored here */
  48. bool shortkey;
  49. } cast5_ctx_t;
  50. /** \fn void cast5_init(const void* key, uint16_t keylength_b, cast5_ctx_t* s);
  51. * \brief generate keyschedule/contex for CAST-5
  52. *
  53. * This function generates the keyschedule from the supplied key for the
  54. * CAST-5 cipher and stores it in a supplied ::cast5_ctx_t context.
  55. * \param key pointer to the key
  56. * \param keylength_b length of the key in bits (maximum 128 bits)
  57. * \param s pointer to the context
  58. */
  59. void cast5_init(const void* key, uint16_t keylength_b, cast5_ctx_t* s);
  60. /** \fn void cast5_enc(void* block, const cast5_ctx_t* s);
  61. * \brief encrypt a block with the CAST-5 algorithm
  62. *
  63. * This function encrypts a block of 64 bits (8 bytes) with the CAST-5 algorithm.
  64. * It uses a keyschedule as generated by the
  65. * cast5_init(void* key, uint8_t keylength_b, cast5_ctx_t* s) function.
  66. * \param block pointer to the block which gets encrypted
  67. * \param s pointer to the keyschedule/context
  68. */
  69. void cast5_enc(void* block, const cast5_ctx_t* s);
  70. /** \fn void cast5_dec(void* block, const cast5_ctx_t* s);
  71. * \brief decrypt a block with the CAST-5 algorithm
  72. *
  73. * This function decrypts a block of 64 bits (8 bytes) with the CAST-5 algorithm.
  74. * It uses a keyschedule as generated by the
  75. * cast5_init(void* key, uint8_t keylength_b, cast5_ctx_t* s) function.
  76. * \param block pointer to the block which gets decrypted
  77. * \param s pointer to the keyschedule/context
  78. */
  79. void cast5_dec(void* block, const cast5_ctx_t* s);
  80. #endif