• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2021 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5from autotest_lib.server.cros.faft.cr50_test import Cr50Test
6
7
8class firmware_Cr50VerifyEK(Cr50Test):
9    """Verify tpm verify ek."""
10    version = 1
11
12    def run_once(self, host):
13        """Run tpm verify ek."""
14        host.run('tpm-manager initialize')
15        host.run('tpm-manager verify_endorsement')
16