Ejemplo n.º 1
0
def _keygen_tests(tpm):
    for data in _KEYGEN_INPUTS:
        key_len, e, label = data
        test_name = 'RSA-KEYGEN:%d:%d:%s' % data
        cmd = _keygen_cmd(key_len, e, label)

        wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
        result = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)
        result_len = len(result)
        if result_len != int(key_len / 8 * 1.5):
            raise subcmd.TpmTestError('%s error:%s' %
                                      (test_name, utils.hex_dump(result)))

        N = int(binascii.b2a_hex(result[0:result_len * 2 / 3]), 16)
        p = int(binascii.b2a_hex(result[result_len * 2 / 3:]), 16)
        q = N / p
        if not rsa.prime.is_prime(p):
            raise subcmd.TpmTestError('%s error:%s' %
                                      (test_name, utils.hex_dump(result)))
        if not rsa.prime.is_prime(q):
            raise subcmd.TpmTestError('%s error:%s' %
                                      (test_name, utils.hex_dump(result)))
        if p == q:
            raise subcmd.TpmTestError('%s error:%s' %
                                      (test_name, utils.hex_dump(result)))
        print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 2
0
def _keygen_tests(tpm):
  for data in _KEYGEN_INPUTS:
    key_len, e, label, expected_N = data
    test_name = 'RSA-KEYGEN:%d:%d:%s' % data[:-1]
    cmd = _keygen_cmd(key_len, e, label)

    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
    result = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)
    result_len = len(result)
    if result_len != int(key_len / 8 * 1.5):
      raise subcmd.TpmTestError('%s error:%s' % (
        test_name, utils.hex_dump(result)))

    N = int(binascii.b2a_hex(result[0:result_len * 2 / 3]), 16)
    if expected_N and N != expected_N:
      raise subcmd.TpmTestError('%s error:%s' % (
          test_name, utils.hex_dump(result)))
    p = int(binascii.b2a_hex(result[result_len * 2 / 3:]), 16)
    q = N / p
    if not rsa.prime.is_prime(p):
      raise subcmd.TpmTestError('%s error:%s' % (
          test_name, utils.hex_dump(result)))
    if not rsa.prime.is_prime(q):
      raise subcmd.TpmTestError('%s error:%s' % (
          test_name, utils.hex_dump(result)))
    if p == q:
      raise subcmd.TpmTestError('%s error:%s' % (
          test_name, utils.hex_dump(result)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 3
0
def _primegen_tests(tpm):
    for data in _PRIMEGEN_INPUTS:
        key_len = data
        test_name = 'RSA-PRIMEGEN:%d' % data
        seed = rsa.randnum.read_random_bits(key_len / 2)
        assert len(seed) == key_len / 16
        # dcrypto interface is little-endian.
        cmd = _primegen_cmd(seed[::-1])

        wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
        result = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)
        result_len = len(result)
        if result_len != key_len / 16:
            raise subcmd.TpmTestError('%s error:%s' %
                                      (test_name, utils.hex_dump(result)))

        p = int(binascii.b2a_hex(result[::-1]), 16)
        if not rsa.prime.is_prime(p):
            raise subcmd.TpmTestError('%s error:%s' %
                                      (test_name, utils.hex_dump(result)))
        calculated = _prime_from_seed(seed)
        if p != calculated:
            raise subcmd.TpmTestError('%s error:%s' %
                                      (test_name, utils.hex_dump(result)))
        print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 4
0
def _primegen_tests(tpm):
  for data in _PRIMEGEN_INPUTS:
    key_len = data
    test_name = 'RSA-PRIMEGEN:%d' % data
    seed = rsa.randnum.read_random_bits(key_len / 2)
    assert len(seed) == key_len / 16
    # dcrypto interface is little-endian.
    cmd = _primegen_cmd(seed[::-1])

    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
    result = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)
    result_len = len(result)
    if result_len != key_len / 16:
      raise subcmd.TpmTestError('%s error:%s' % (
        test_name, utils.hex_dump(result)))

    p = int(binascii.b2a_hex(result[::-1]), 16)
    if not rsa.prime.is_prime(p):
      raise subcmd.TpmTestError('%s error:%s' % (
          test_name, utils.hex_dump(result)))
    calculated = _prime_from_seed(seed)
    if p != calculated:
      raise subcmd.TpmTestError('%s error:%s' % (
          test_name, utils.hex_dump(result)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 5
0
def _encrypt_tests(tpm):
    msg = 'Hello CR50!'

    for data in _ENCRYPT_INPUTS:
        padding, hashing, key_len = data
        test_name = 'RSA-ENC:%s:%s:%d' % data
        cmd = _encrypt_cmd(_RSA_PADDING[padding], _HASH[hashing], key_len, msg)
        wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
        ciphertext = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)

        cmd = _decrypt_cmd(_RSA_PADDING[padding], _HASH[hashing], key_len,
                           ciphertext)
        wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
        plaintext = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)
        if padding == 'NULL':
            # Check for leading zeros.
            if reduce(lambda x, y: x | y,
                      map(ord, plaintext[:len(plaintext) - len(msg)])):
                raise subcmd.TpmTestError('%s error:%s%s' %
                                          (test_name, utils.hex_dump(msg),
                                           utils.hex_dump(plaintext)))
            else:
                plaintext = plaintext[len(plaintext) - len(msg):]
        if msg != plaintext:
            raise subcmd.TpmTestError(
                '%s error:%s%s' %
                (test_name, utils.hex_dump(msg), utils.hex_dump(plaintext)))
        print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 6
0
def _encrypt_tests(tpm):
  msg = 'Hello CR50!'

  for data in _ENCRYPT_INPUTS:
    padding, hashing, key_len = data
    test_name = 'RSA-ENC:%s:%s:%d' % data
    cmd = _encrypt_cmd(_RSA_PADDING[padding], _HASH[hashing], key_len, msg)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
    ciphertext = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)

    cmd = _decrypt_cmd(_RSA_PADDING[padding], _HASH[hashing],
                       key_len, ciphertext)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
    plaintext = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)
    if padding == 'NULL':
      # Check for leading zeros.
      if reduce(lambda x, y: x | y,
                map(ord, plaintext[:len(plaintext) - len(msg)])):
        raise subcmd.TpmTestError('%s error:%s%s' % (
          test_name, utils.hex_dump(msg), utils.hex_dump(plaintext)))
      else:
        plaintext = plaintext[len(plaintext) - len(msg):]
    if msg != plaintext:
      raise subcmd.TpmTestError('%s error:%s%s' % (
          test_name, utils.hex_dump(msg), utils.hex_dump(plaintext)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 7
0
def get_attribute(tdesc, attr_name, required=True):
    """Retrieve an attribute value from an XML node.

  Args:
    tdesc: an Element of the ElementTree, a test descriptor containing
      necessary information to run a single encryption/description
      session.
    attr_name: a string, the name of the attribute to retrieve.
    required: a Boolean, if True - the attribute must be present in the
      descriptor, otherwise it is considered optional
  Returns:
    The attribute value as a string (ascii or binary)
  Raises:
    CryptoError: on various format errors, or in case a required attribute is
      not found, the error message describes the problem.

  """
    # Fields stored in hex format by default.
    default_hex = ('cipher_text', 'iv', 'key')

    data = tdesc.find(attr_name)
    if data is None:
        if required:
            raise CryptoError('node "%s" does not have attribute "%s"' %
                              (tdesc.get('name'), attr_name))
        return ''

    # Attribute is present, does it have to be decoded from hex?
    cell_format = data.get('format')
    if not cell_format:
        if attr_name in default_hex:
            cell_format = 'hex'
        else:
            cell_format = 'ascii'
    elif cell_format not in ('hex', 'ascii'):
        raise CryptoError('%s:%s, unrecognizable format "%s"' %
                          (tdesc.get('name'), attr_name, cell_format))

    text = ' '.join(x.strip() for x in data.text.splitlines() if x)
    if cell_format == 'ascii':
        return text

    # Drop spaces from hex representation.
    text = text.replace(' ', '')
    if len(text) & 3:
        raise CryptoError('%s:%s %swrong hex number size' %
                          (tdesc.get('name'), attr_name, utils.hex_dump(text)))
    # Convert text to binary
    value = ''
    for x in range(len(text) / 8):
        try:
            value += struct.pack('<I', int('0x%s' % text[8 * x:8 * (x + 1)],
                                           16))
        except ValueError:
            raise CryptoError(
                '%s:%s %swrong hex value' %
                (tdesc.get('name'), attr_name, utils.hex_dump(text)))
    return value
Ejemplo n.º 8
0
def get_attribute(tdesc, attr_name, required=True):
  """Retrieve an attribute value from an XML node.

  Args:
    tdesc: an Element of the ElementTree, a test descriptor containing
      necessary information to run a single encryption/description
      session.
    attr_name: a string, the name of the attribute to retrieve.
    required: a Boolean, if True - the attribute must be present in the
      descriptor, otherwise it is considered optional
  Returns:
    The attribute value as a string (ascii or binary)
  Raises:
    subcmd.TpmTestError: on various format errors, or in case a required
      attribute is not found, the error message describes the problem.

  """
  # Fields stored in hex format by default.
  default_hex = ('cipher_text', 'iv', 'key')

  data = tdesc.find(attr_name)
  if data is None:
    if required:
      raise subcmd.TpmTestError('node "%s" does not have attribute "%s"' %
                        (tdesc.get('name'), attr_name))
    return ''

  # Attribute is present, does it have to be decoded from hex?
  cell_format = data.get('format')
  if not cell_format:
    if attr_name in default_hex:
      cell_format = 'hex'
    else:
      cell_format = 'ascii'
  elif cell_format not in ('hex', 'ascii'):
    raise subcmd.TpmTestError('%s:%s, unrecognizable format "%s"' %
                      (tdesc.get('name'), attr_name, cell_format))

  text = ' '.join(x.strip() for x in data.text.splitlines() if x)
  if cell_format == 'ascii':
    return text

  # Drop spaces from hex representation.
  text = text.replace(' ', '')
  if len(text) & 3:
    raise subcmd.TpmTestError('%s:%s %swrong hex number size' %
                      (tdesc.get('name'), attr_name, utils.hex_dump(text)))
  # Convert text to binary
  value = ''
  for x in range(len(text)/8):
    try:
      value += struct.pack('<I', int('0x%s' % text[8*x:8*(x+1)], 16))
    except ValueError:
      raise subcmd.TpmTestError('%s:%s %swrong hex value' %
                        (tdesc.get('name'), attr_name, utils.hex_dump(text)))
  return value
Ejemplo n.º 9
0
def _x509_verify_tests(tpm):
  test_name = 'RSA-X509-2048-VERIFY'
  cmd = _x509_verify_cmd(2048)
  wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
  valid = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)
  expected = '\x01'
  if valid != expected:
    raise subcmd.TpmTestError('%s error:%s%s' % (
      test_name, utils.hex_dump(valid), utils.hex_dump(expected)))
  print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 10
0
def _x509_verify_tests(tpm):
  test_name = 'RSA-X509-2048-VERIFY'
  cmd = _x509_verify_cmd(2048)
  wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
  valid = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)
  expected = '\x01'
  if valid != expected:
    raise subcmd.TpmTestError('%s error:%s%s' % (
      test_name, utils.hex_dump(valid), utils.hex_dump(expected)))
  print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 11
0
def _keytest_tests(tpm):
  for data in _KEYTEST_INPUTS:
    key_len, = data
    test_name = 'RSA-KEYTEST:%d' % data
    cmd = _keytest_cmd(key_len)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
    valid = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)
    expected = '\x01'
    if valid != expected:
      raise subcmd.TpmTestError('%s error:%s%s' % (
          test_name, utils.hex_dump(valid), utils.hex_dump(expected)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 12
0
def _keygen_test(tpm):
  for data in _KEYGEN_INPUTS:
    curve_id, = data
    test_name = 'ECC-KEYGEN:%s' % data
    cmd = _keygen_cmd(_ECC_CURVES[curve_id])
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.ECC, cmd))
    valid = tpm.unwrap_ext_response(subcmd.ECC, wrapped_response)
    expected = '\x01'
    if valid != expected:
      raise subcmd.TpmTestError('%s error:%s:%s' % (
        test_name, utils.hex_dump(valid), utils.hex_dump(expected)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 13
0
def _rfc_tests(tpm):
  for data in _RFC_TEST_INPUTS:
    IKM, salt, info, OKM = map(a2b, data[:-1])
    test_name = 'HKDF:SHA256:%s' % data[-1]
    cmd = _rfc_test_cmd(salt, IKM, info, len(OKM))
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.HKDF, cmd))
    result = tpm.unwrap_ext_response(subcmd.HKDF, wrapped_response)

    if result != OKM:
      raise subcmd.TpmTestError('%s error:%s%s' % (
          test_name, utils.hex_dump(result), utils.hex_dump(OKM)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 14
0
def _keytest_tests(tpm):
  for data in _KEYTEST_INPUTS:
    key_len, = data
    test_name = 'RSA-KEYTEST:%d' % data
    cmd = _keytest_cmd(key_len)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
    valid = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)
    expected = '\x01'
    if valid != expected:
      raise subcmd.TpmTestError('%s error:%s%s' % (
          test_name, utils.hex_dump(valid), utils.hex_dump(expected)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 15
0
def _rfc_tests(tpm):
    for data in _RFC_TEST_INPUTS:
        IKM, salt, info, OKM = map(a2b, data[:-1])
        test_name = 'HKDF:SHA256:%s' % data[-1]
        cmd = _rfc_test_cmd(salt, IKM, info, len(OKM))
        wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.HKDF, cmd))
        result = tpm.unwrap_ext_response(subcmd.HKDF, wrapped_response)

        if result != OKM:
            raise subcmd.TpmTestError(
                '%s error:%s%s' %
                (test_name, utils.hex_dump(result), utils.hex_dump(OKM)))
        print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 16
0
def _keyderive_test(tpm):
  for data in _KEYDERIVE_INPUTS:
    curve_id, seed_bytes = data
    seed = os.urandom(seed_bytes)
    test_name = 'ECC-KEYDERIVE:%s' % data[0]
    cmd = _keyderive_cmd(_ECC_CURVES[curve_id], seed)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.ECC, cmd))
    valid = tpm.unwrap_ext_response(subcmd.ECC, wrapped_response)
    expected = '\x01'
    if valid != expected:
      raise subcmd.TpmTestError('%s error:%s:%s' % (
        test_name, utils.hex_dump(valid), utils.hex_dump(expected)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 17
0
def _compat_test(tpm):
  for data in _ECIES_COMPAT_INPUTS:
    auth, plaintext, iv, ciphertext, d, salt, info = data[:-1]
    test_name = 'ECIES-TEST:%s' % data[-1]

    cmd = _decrypt_cmd(auth, ciphertext, iv, d, salt, info)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.ECIES, cmd))
    decrypted = tpm.unwrap_ext_response(subcmd.ECIES, wrapped_response)

    expected = auth + plaintext
    if decrypted != expected:
      raise subcmd.TpmTestError('%s error:%s:%s' % (
          test_name, utils.hex_dump(decrypted), utils.hex_dump(expected)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 18
0
def _compat_test(tpm):
  for data in _ECIES_COMPAT_INPUTS:
    auth, plaintext, iv, ciphertext, d, salt, info = data[:-1]
    test_name = 'ECIES-TEST:%s' % data[-1]

    cmd = _decrypt_cmd(auth, ciphertext, iv, d, salt, info)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.ECIES, cmd))
    decrypted = tpm.unwrap_ext_response(subcmd.ECIES, wrapped_response)

    expected = auth + plaintext
    if decrypted != expected:
      raise subcmd.TpmTestError('%s error:%s:%s' % (
          test_name, utils.hex_dump(decrypted), utils.hex_dump(expected)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 19
0
def trng_test(tpm):
  """Download entropy samples from TRNG

    Command structure, shared out of band with the test running on the target:

    field     |    size  |                  note
    ===================================================================
    text_len  |    2     | size of the text to process, big endian

  Args:
    tpm: a tpm object used to communicate with the device

  Raises:
    subcmd.TpmTestError: on unexpected target responses
  """
  with open('/tmp/trng_output', 'wb') as f:
    for x in range(0, TRNG_SAMPLE_COUNT):
      wrapped_response = tpm.command(tpm.wrap_ext_command(TRNG_TEST_CC,
                                     get_random_command(TRNG_SAMPLE_SIZE)))
      if wrapped_response[:12] != get_random_command_rsp(TRNG_SAMPLE_SIZE):
        raise subcmd.TpmTestError("Unexpected response to '%s': %s" %
                                 ("trng", utils.hex_dump(wrapped_response)))
      f.write(wrapped_response[12:])
      print('%s %d%%\r' %( utils.cursor_back(), (x/10)), end=""),
  print('%sSUCCESS: %s' % (utils.cursor_back(), 'trng'))
Ejemplo n.º 20
0
def _sign_tests(tpm):
  msg = 'Hello CR50!'

  for data in _SIGN_INPUTS:
    padding, hashing, key_len = data
    test_name = 'RSA-SIGN:%s:%s:%d' % data
    cmd = _sign_cmd(_RSA_PADDING[padding], _HASH[hashing], key_len, msg)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
    signature = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)

    cmd = _verify_cmd(_RSA_PADDING[padding], _HASH[hashing],
                      key_len, signature, msg)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
    verified = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)
    expected = '\x01'
    if verified != expected:
      raise subcmd.TpmTestError('%s error:%s%s' % (
          test_name, utils.hex_dump(verified), utils.hex_dump(expected)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 21
0
def _sign_tests(tpm):
  msg = 'Hello CR50!'

  for data in _SIGN_INPUTS:
    padding, hashing, key_len = data
    test_name = 'RSA-SIGN:%s:%s:%d' % data
    cmd = _sign_cmd(_RSA_PADDING[padding], _HASH[hashing], key_len, msg)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
    signature = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)

    cmd = _verify_cmd(_RSA_PADDING[padding], _HASH[hashing],
                      key_len, signature, msg)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
    verified = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)
    expected = '\x01'
    if verified != expected:
      raise subcmd.TpmTestError('%s error:%s%s' % (
          test_name, utils.hex_dump(verified), utils.hex_dump(expected)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 22
0
def _sign_test(tpm):
  msg = 'Hello CR50'

  for data in _SIGN_INPUTS:
    curve_id, sign_mode = data
    test_name = 'ECC-SIGN:%s:%s' % data
    cmd = _sign_cmd(_ECC_CURVES[curve_id], _HASH_FUNC[curve_id],
                    _SIGN_MODE[sign_mode], msg)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.ECC, cmd))
    signature = tpm.unwrap_ext_response(subcmd.ECC, wrapped_response)

    cmd = _verify_cmd(_ECC_CURVES[curve_id], _HASH_FUNC[curve_id],
                      _SIGN_MODE[sign_mode], msg, signature)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.ECC, cmd))
    verified = tpm.unwrap_ext_response(subcmd.ECC, wrapped_response)
    expected = '\x01'
    if verified != expected:
      raise subcmd.TpmTestError('%s error:%s:%s' % (
        test_name, utils.hex_dump(verified), utils.hex_dump(expected)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 23
0
def _ecies_test(tpm):
  for data in _ECIES_INPUTS:
    auth, input, iv, d, pubx, puby, salt, info = data[:-1]
    test_name = 'ECIES-TEST:%s' % data[-1]
    cmd = _encrypt_cmd(auth, input, iv, pubx, puby, salt, info)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.ECIES, cmd))
    encrypted = tpm.unwrap_ext_response(subcmd.ECIES, wrapped_response)
    # check length of encrypted.
    if not encrypted:
      raise subcmd.TpmTestError('%s error:%s' % (
          test_name, 'null encrypted'))

    cmd = _decrypt_cmd(auth, encrypted, iv, d, salt, info)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.ECIES, cmd))
    decrypted = tpm.unwrap_ext_response(subcmd.ECIES, wrapped_response)

    expected = auth + input
    if decrypted != expected:
      raise subcmd.TpmTestError('%s error:%s:%s' % (
          test_name, utils.hex_dump(decrypted), utils.hex_dump(expected)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 24
0
def _ecies_test(tpm):
  for data in _ECIES_INPUTS:
    auth, input, iv, d, pubx, puby, salt, info = data[:-1]
    test_name = 'ECIES-TEST:%s' % data[-1]
    cmd = _encrypt_cmd(auth, input, iv, pubx, puby, salt, info)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.ECIES, cmd))
    encrypted = tpm.unwrap_ext_response(subcmd.ECIES, wrapped_response)
    # check length of encrypted.
    if not encrypted:
      raise subcmd.TpmTestError('%s error:%s' % (
          test_name, 'null encrypted'))

    cmd = _decrypt_cmd(auth, encrypted, iv, d, salt, info)
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.ECIES, cmd))
    decrypted = tpm.unwrap_ext_response(subcmd.ECIES, wrapped_response)

    expected = auth + input
    if decrypted != expected:
      raise subcmd.TpmTestError('%s error:%s:%s' % (
          test_name, utils.hex_dump(decrypted), utils.hex_dump(expected)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 25
0
def _verify_tests(tpm):
  for data in _VERIFY_INPUTS:
    msg = rsa.randnum.read_random_bits(256)
    padding, hashing, key_len = data
    test_name = 'RSA-VERIFY:%s:%s:%d' % data

    key = _KEYS[key_len]
    signer = _SIGNER[padding].new(key)
    h = _HASHER[hashing].new()
    h.update(msg)
    signature = signer.sign(h)

    cmd = _verify_cmd(_RSA_PADDING[padding], _HASH[hashing],
                      key_len, signature, h.digest())
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.RSA, cmd))
    verified = tpm.unwrap_ext_response(subcmd.RSA, wrapped_response)
    expected = '\x01'
    if verified != expected:
      raise subcmd.TpmTestError('%s error:%s%s' % (
          test_name, utils.hex_dump(verified), utils.hex_dump(expected)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 26
0
def drbg_test(tpm):
    """Runs DRBG test case.

  Args:
    tpm: a tpm object used to communicate with the device

  Raises:
    subcmd.TpmTestError: on unexpected target responses
  """

    for test in test_inputs:
        drbg_op, drbg_params = test
        if drbg_op == DRBG_INIT:
            entropy, nonce, perso = drbg_params
            cmd = _drbg_init_cmd(drbg_op, a2b(entropy), a2b(nonce), a2b(perso))
            response = tpm.command(tpm.wrap_ext_command(subcmd.DRBG_TEST, cmd))
            if response != EMPTY_DRBG_RESPONSE:
                raise subcmd.TpmTestError(
                    "Unexpected response to DRBG_INIT: %s" %
                    (utils.hex_dump(wrapped_response)))
        elif drbg_op == DRBG_RESEED:
            entropy, inp1, inp2 = drbg_params
            cmd = _drbg_init_cmd(drbg_op, a2b(entropy), a2b(inp1), a2b(inp2))
            response = tpm.command(tpm.wrap_ext_command(subcmd.DRBG_TEST, cmd))
            if response != EMPTY_DRBG_RESPONSE:
                raise subcmd.TpmTestError(
                    "Unexpected response to DRBG_RESEED: %s" %
                    (utils.hex_dump(wrapped_response)))
        elif drbg_op == DRBG_GENERATE:
            inp, expected = drbg_params
            cmd = _drbg_gen_cmd(a2b(inp), a2b(expected))
            response = tpm.command(tpm.wrap_ext_command(subcmd.DRBG_TEST, cmd))
            if expected != '':
                result = response[12:]
                if a2b(expected) != result:
                    raise subcmd.TpmTestError(
                        'error:\nexpected %s\nreceived %s' % (utils.hex_dump(
                            a2b(expected)), utils.hex_dump(result)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), 'DRBG test'))
Ejemplo n.º 27
0
def crypto_run(node_name, op_type, key, iv, in_text, out_text, tpm):
  """Perform a basic operation(encrypt or decrypt).

  This function creates an extended command with the requested parameters,
  sends it to the device, and then compares the response to the expected
  value.

  Args:
    node_name: a string, the name of the XML node this data comes from. The
      format of the name is "<enc type>:<submode> ....", where <enc type> is
      the major encryption mode (say AED or DES) and submode - a variant of
      the major scheme, if exists.

   op_type: an int, encodes the operation to perform (encrypt/decrypt), passed
     directly to the device as a field in the extended command
   key: a binary string
   iv: a binary string, might be empty
   in_text: a binary string, the input of the encrypt/decrypt operation
   out_text: a binary string, might be empty, the expected output of the
     operation. Note that it could be shorter than actual output (padded to
     integer number of blocks), in which case only its length of bytes is
     compared debug_mode: a Boolean, if True - enables tracing on the console
   tpm: a TPM object to send extended commands to an initialized TPM

  Returns:
    The actual binary string, result of the operation, if the
    comparison with the expected value was successful.

  Raises:
    subcmd.TpmTestError: in case there were problems parsing the node name, or
      verifying the operation results.

  """
  mode_name, submode_name = node_name.split(':')
  submode_name = submode_name[:3].upper()

  mode = SUPPORTED_MODES.get(mode_name.upper())
  if not mode:
    raise subcmd.TpmTestError('unrecognizable mode in node "%s"' % node_name)

  submode = mode.submodes.get(submode_name, 0)
  cmd = '%c' % op_type    # Encrypt or decrypt
  cmd += '%c' % submode   # A particular type of a generic algorithm.
  cmd += '%c' % len(key)
  cmd += key
  cmd += '%c' % len(iv)
  if iv:
    cmd += iv
  cmd += struct.pack('>H', len(in_text))
  cmd += in_text
  if tpm.debug_enabled():
    print('%d:%d cmd size' % (op_type, mode.subcmd),
          len(cmd), utils.hex_dump(cmd))
  wrapped_response = tpm.command(tpm.wrap_ext_command(mode.subcmd, cmd))
  real_out_text = tpm.unwrap_ext_response(mode.subcmd, wrapped_response)
  if out_text:
    if len(real_out_text) > len(out_text):
      real_out_text = real_out_text[:len(out_text)]  # Ignore padding
    if real_out_text != out_text:
      if tpm.debug_enabled():
        print('Out text mismatch in node %s:\n' % node_name)
      else:
        raise subcmd.TpmTestError(
          'Out text mismatch in node %s, operation %d:\n'
          'In text:%sExpected out text:%sReal out text:%s' % (
            node_name, op_type,
            utils.hex_dump(in_text),
            utils.hex_dump(out_text),
            utils.hex_dump(real_out_text)))
  return real_out_text
Ejemplo n.º 28
0
 def dump(self, ftype='bytes', size=512, before=32):
     buf = self.process.read_bytes(self.value - before, size)
     print((utils.hex_dump(buf, self.value - before, ftype=ftype)))
Ejemplo n.º 29
0
 def dump(self, ftype = 'bytes', size = 512, before = 32):
     buf = self.process.read_bytes(self.value - before, size)
     print utils.hex_dump(buf, self.value - before, ftype=ftype)
Ejemplo n.º 30
0
def hash_test(tpm):
  """Exercise multiple hash threads simultaneously.

    Command structure, shared out of band with the test running on the target:

    field     |    size  |                  note
    ===================================================================
    hash_cmd  |    1     | 0 - start, 1 - cont., 2 - finish, 4 - single
    hash_mode |    1     | 0 - sha1, 1 - sha256
    handle    |    1     | session handle, ignored in 'single' mode
    text_len  |    2     | size of the text to process, big endian
    text      | text_len | text to hash

  Args:
    tpm: a tpm object used to communicate with the device

  Raises:
    HashError: on unexpected target responses
  """

  contexts = {}

  function_map = {
    MODE_SHA1: ('sha1', hashlib.sha1),
    MODE_SHA256: ('sha256', hashlib.sha256)
  }

  cmd_map = {
    'start': CMD_START,
    'cont': CMD_CONT,
    'finish': CMD_FINISH,
    'single': CMD_SINGLE
  }

  for test in test_inputs:
    hash_mode, cmd_name, handle, text = test

    mode_name, hash_func = function_map[hash_mode]
    hash_cmd = cmd_map[cmd_name]
    test_name = '%s:%s:%d' % (mode_name, cmd_name, handle)

    cmd = '%c' % hash_cmd
    cmd += '%c' % hash_mode
    cmd += '%c' % handle   # Ignored for single shots
    cmd += struct.pack('>H', len(text))
    cmd += text
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.HASH, cmd))
    if hash_cmd in (CMD_START, CMD_CONT):
      if hash_cmd == CMD_START:
        contexts[handle] = hash_func()
      h = contexts[handle]
      h.update(text)
      if wrapped_response != EMPTY_RESPONSE:
        raise HashError("Unexpected response to '%s': %s" %
                        (test_name, utils.hex_dump(wrapped_response)))
      continue
    if hash_cmd == CMD_FINISH:
      h = contexts[handle]
    elif hash_cmd == CMD_SINGLE:
      h = hash_func()
    else:
      raise HashError('Unknown command %d' % hash_cmd)
    h.update(text)
    digest = h.digest()
    result = wrapped_response[12:]
    if result != h.digest():
      raise HashError('%s error:%s%s' % (test_name,
                                         utils.hex_dump(digest),
                                         utils.hex_dump(result)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))
Ejemplo n.º 31
0
def hash_test(tpm):
  """Exercise multiple hash threads simultaneously.

    Command structure, shared out of band with the test running on the target:

    field     |    size  |                  note
    ===================================================================
    hash_cmd  |    1     | 0 - start, 1 - cont., 2 - finish, 4 - single
    hash_mode |    1     | 0 - sha1, 1 - sha256
    handle    |    1     | session handle, ignored in 'single' mode
    text_len  |    2     | size of the text to process, big endian
    text      | text_len | text to hash

  Args:
    tpm: a tpm object used to communicate with the device

  Raises:
    subcmd.TpmTestError: on unexpected target responses
  """

  contexts = {}

  function_map = {
    MODE_SHA1: ('sha1', hashlib.sha1),
    MODE_SHA256: ('sha256', hashlib.sha256)
  }

  cmd_map = {
    'start': CMD_START,
    'cont': CMD_CONT,
    'finish': CMD_FINISH,
    'single': CMD_SINGLE
  }

  for test in test_inputs:
    hash_mode, cmd_name, handle, text = test

    mode_name, hash_func = function_map[hash_mode]
    hash_cmd = cmd_map[cmd_name]
    test_name = '%s:%s:%d' % (mode_name, cmd_name, handle)

    cmd = '%c' % hash_cmd
    cmd += '%c' % hash_mode
    cmd += '%c' % handle   # Ignored for single shots
    cmd += struct.pack('>H', len(text))
    cmd += text
    wrapped_response = tpm.command(tpm.wrap_ext_command(subcmd.HASH, cmd))
    if hash_cmd in (CMD_START, CMD_CONT):
      if hash_cmd == CMD_START:
        contexts[handle] = hash_func()
      h = contexts[handle]
      h.update(text)
      if wrapped_response != EMPTY_RESPONSE:
        raise subcmd.TpmTestError("Unexpected response to '%s': %s" %
                        (test_name, utils.hex_dump(wrapped_response)))
      continue
    if hash_cmd == CMD_FINISH:
      h = contexts[handle]
    elif hash_cmd == CMD_SINGLE:
      h = hash_func()
    else:
      raise subcmd.TpmTestError('Unknown command %d' % hash_cmd)
    h.update(text)
    digest = h.digest()
    result = wrapped_response[12:]
    if result != h.digest():
      raise subcmd.TpmTestError('%s error:%s%s' % (test_name,
                                         utils.hex_dump(digest),
                                         utils.hex_dump(result)))
    print('%sSUCCESS: %s' % (utils.cursor_back(), test_name))