summaryrefslogtreecommitdiffstats
path: root/qemu/roms/ipxe/src/config/crypto.h
diff options
context:
space:
mode:
authorRajithaY <rajithax.yerrumsetty@intel.com>2017-04-25 03:31:15 -0700
committerRajitha Yerrumchetty <rajithax.yerrumsetty@intel.com>2017-05-22 06:48:08 +0000
commitbb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch)
treeca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/roms/ipxe/src/config/crypto.h
parenta14b48d18a9ed03ec191cf16b162206998a895ce (diff)
Adding qemu as a submodule of KVMFORNFV
This Patch includes the changes to add qemu as a submodule to kvmfornfv repo and make use of the updated latest qemu for the execution of all testcase Change-Id: I1280af507a857675c7f81d30c95255635667bdd7 Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'qemu/roms/ipxe/src/config/crypto.h')
-rw-r--r--qemu/roms/ipxe/src/config/crypto.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/qemu/roms/ipxe/src/config/crypto.h b/qemu/roms/ipxe/src/config/crypto.h
deleted file mode 100644
index bccfc04b8..000000000
--- a/qemu/roms/ipxe/src/config/crypto.h
+++ /dev/null
@@ -1,58 +0,0 @@
-#ifndef CONFIG_CRYPTO_H
-#define CONFIG_CRYPTO_H
-
-/** @file
- *
- * Cryptographic configuration
- *
- */
-
-FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
-
-/** RSA public-key algorithm */
-#define CRYPTO_PUBKEY_RSA
-
-/** AES-CBC block cipher */
-#define CRYPTO_CIPHER_AES_CBC
-
-/** MD5 digest algorithm
- *
- * Note that use of MD5 is implicit when using TLSv1.1 or earlier.
- */
-#define CRYPTO_DIGEST_MD5
-
-/** SHA-1 digest algorithm
- *
- * Note that use of SHA-1 is implicit when using TLSv1.1 or earlier.
- */
-#define CRYPTO_DIGEST_SHA1
-
-/** SHA-224 digest algorithm */
-#define CRYPTO_DIGEST_SHA224
-
-/** SHA-256 digest algorithm
- *
- * Note that use of SHA-256 is implicit when using TLSv1.2.
- */
-#define CRYPTO_DIGEST_SHA256
-
-/** SHA-384 digest algorithm */
-#define CRYPTO_DIGEST_SHA384
-
-/** SHA-512 digest algorithm */
-#define CRYPTO_DIGEST_SHA512
-
-/** Margin of error (in seconds) allowed in signed timestamps
- *
- * We default to allowing a reasonable margin of error: 12 hours to
- * allow for the local time zone being non-GMT, plus 30 minutes to
- * allow for general clock drift.
- */
-#define TIMESTAMP_ERROR_MARGIN ( ( 12 * 60 + 30 ) * 60 )
-
-#include <config/named.h>
-#include NAMED_CONFIG(crypto.h)
-#include <config/local/crypto.h>
-#include LOCAL_NAMED_CONFIG(crypto.h)
-
-#endif /* CONFIG_CRYPTO_H */