summaryrefslogtreecommitdiff
path: root/test/tpm_test/subcmd.py
blob: e0de4af9f5818d7da50be4b4d2d555a5363032d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/python
# Copyright 2015 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.

"""Subcommand codes that specify the crypto module."""

# Keep these codes in sync with include/extension.h.
AES = 0
HASH = 1
RSA = 2
EC = 3
FW_UPGRADE = 4
HKDF = 5

# The same exception class used by all tpmtest modules.
class TpmTestError(Exception):
  pass