I2C toy code
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

5 роки тому
12345678910111213141516171819202122
  1. /* LibTomCrypt, modular cryptographic library -- Tom St Denis
  2. *
  3. * LibTomCrypt is a library that provides various cryptographic
  4. * algorithms in a highly modular and flexible manner.
  5. *
  6. * The library is free for all purposes without any express
  7. * guarantee it works.
  8. */
  9. /* small demo app that just includes a cipher/hash/prng */
  10. #include <tomcrypt.h>
  11. int main(void)
  12. {
  13. register_cipher(&rijndael_enc_desc);
  14. register_prng(&yarrow_desc);
  15. register_hash(&sha256_desc);
  16. return 0;
  17. }
  18. /* ref: $Format:%D$ */
  19. /* git commit: $Format:%H$ */
  20. /* commit time: $Format:%ai$ */