Files
Nathaniel Mitchell 4b65243d9c Fix more unit tests
Signed-off-by: Nathaniel Mitchell <nathaniel.p.mitchell@intel.com>
2025-03-10 09:06:35 -07:00

63 lines
1.9 KiB
Python

# CHIPSEC: Platform Security Assessment Framework
# Copyright (c) 2023, Intel Corporation
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; Version 2.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# Contact information:
# chipsec@intel.com
#
import string
from collections.abc import Iterable
from time import strftime
from typing import AnyStr, List
def get_datetime_str() -> str:
return strftime('%a%b%d%y-%H%M%S')
def bytestostring(mbytes: AnyStr) -> str:
if isinstance(mbytes, bytes) or isinstance(mbytes, bytearray):
return mbytes.decode("latin_1")
else:
return mbytes
def stringtobytes(mstr: AnyStr) -> bytes:
if isinstance(mstr, str):
return mstr.encode("latin_1")
else:
return mstr
def join_hex_values(hex_list: List[int], size: str = "16", delimiter: str = ',') -> str:
return f'{delimiter} '.join([f'0x{val:0{size}X}' for val in hex_list])
def join_int_values(int_list: List[int], size: str = "", delimiter: str = ',') -> str:
return f'{delimiter} '.join([f'{val:{size}d}' for val in int_list])
def is_printable(seq: AnyStr) -> bool:
return set(bytestostring(seq)).issubset(set(string.printable))
def is_hex(maybe_hex: Iterable) -> bool:
return all(char in string.hexdigits for char in maybe_hex)
def make_hex_key_str(int_val: int):
str_val = f'{int_val:04X}'
return str_val