rijndael.h 898 B

1234567891011121314151617181920212223242526
  1. /*-------------------------------------------------------------------
  2. * Example algorithms f1, f1*, f2, f3, f4, f5, f5*
  3. *-------------------------------------------------------------------
  4. *
  5. * A sample implementation of the example 3GPP authentication and
  6. * key agreement functions f1, f1*, f2, f3, f4, f5 and f5*. This is
  7. * a byte-oriented implementation of the functions, and of the block
  8. * cipher kernel function Rijndael.
  9. *
  10. * This has been coded for clarity, not necessarily for efficiency.
  11. *
  12. * The functions f2, f3, f4 and f5 share the same inputs and have
  13. * been coded together as a single function. f1, f1* and f5* are
  14. * all coded separately.
  15. *
  16. *-----------------------------------------------------------------*/
  17. #ifndef RIJNDAEL_H
  18. #define RIJNDAEL_H
  19. void RijndaelKeySchedule( u8 key[16] );
  20. void RijndaelEncrypt( u8 input[16], u8 output[16] );
  21. #endif