Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Unified Diff: autotest/firmware_VbootCrypto/control

Issue 3143029: vboot_reference: add in the VbootCrypto tests into vboot_reference git repo (Closed) Base URL: http://src.chromium.org/git/vboot_reference.git
Patch Set: Updated Makefile some, and .py file to reflect parallel make changes into main autotest tree Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | autotest/firmware_VbootCrypto/firmware_VbootCrypto.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: autotest/firmware_VbootCrypto/control
diff --git a/autotest/firmware_VbootCrypto/control b/autotest/firmware_VbootCrypto/control
new file mode 100644
index 0000000000000000000000000000000000000000..6542ea8b70cc07b23e0fb5c0d65019300044b075
--- /dev/null
+++ b/autotest/firmware_VbootCrypto/control
@@ -0,0 +1,42 @@
+# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+AUTHOR = "ChromeOS Team"
+NAME = "firmware_VbootCrypto"
+PURPOSE = """
+Verifies Firmware Verified Boot Reference Implementation, its components, and
+crypto performance.
+"""
+CRITERIA = """
+This test is a benchmark.
+
+Errors in any of the following tests will cause a failure:
+ - _sha_test()
+ - _rsa_test()
+ - _image_verification_test()
+ - _rollback_tests()
+ - _splicing_tests()
+"""
+TIME = "LONG"
+TEST_CATEGORY = "Functional"
+TEST_CLASS = "firmware"
+TEST_TYPE = "client"
+
+DOC = """
+This test implements various RSA and SHA by creating and verifying various
+keys and hashes. It will generate public key signatures using sha1, sha256,
+and sha512 algorithms with key lengths of 1024, 2048, 4096, and 8192. RSA
+padding tests will then be run to verify them. Tests are also run to verify
+the correctness of firmware and kernel image verification.
+"""
+
+test_suites = [
+ 'crypto', # RSA Signature Verification and SHA* Correctness.
+ 'verification', # Firmware and Kernel Image Verification.
+ 'benchmarks', # Crypto and Image Verification benchmarks.
+ 'rollback', # Firmware/Kernel Rollback Prevention.
+ 'splicing', # Image Splicing Attack.
+]
+for suite in test_suites:
+ job.run_test('firmware_VbootCrypto', suite=suite, tag=suite)
« no previous file with comments | « no previous file | autotest/firmware_VbootCrypto/firmware_VbootCrypto.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698