Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

crypto.h 589B

12345678910111213141516171819202122232425
  1. #ifndef CONFIG_CRYPTO_H
  2. #define CONFIG_CRYPTO_H
  3. /** @file
  4. *
  5. * Cryptographic configuration
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER );
  9. /** Margin of error (in seconds) allowed in signed timestamps
  10. *
  11. * We default to allowing a reasonable margin of error: 12 hours to
  12. * allow for the local time zone being non-GMT, plus 30 minutes to
  13. * allow for general clock drift.
  14. */
  15. #define TIMESTAMP_ERROR_MARGIN ( ( 12 * 60 + 30 ) * 60 )
  16. #include <config/named.h>
  17. #include NAMED_CONFIG(crypto.h)
  18. #include <config/local/crypto.h>
  19. #include LOCAL_NAMED_CONFIG(crypto.h)
  20. #endif /* CONFIG_CRYPTO_H */