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