Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
37 lines
1.2 KiB
Python
Executable File
37 lines
1.2 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# Script that generates lib/crypto/fips.h
|
|
#
|
|
# Copyright 2025 Google LLC
|
|
|
|
import hashlib
|
|
import hmac
|
|
|
|
fips_test_data = b"fips test data\0\0"
|
|
fips_test_key = b"fips test key\0\0\0"
|
|
|
|
def print_static_u8_array_definition(name, value):
|
|
print('')
|
|
print(f'static const u8 {name}[] __initconst __maybe_unused = {{')
|
|
for i in range(0, len(value), 8):
|
|
line = '\t' + ''.join(f'0x{b:02x}, ' for b in value[i:i+8])
|
|
print(f'{line.rstrip()}')
|
|
print('};')
|
|
|
|
print('/* SPDX-License-Identifier: GPL-2.0-or-later */')
|
|
print(f'/* This file was generated by: gen-fips-testvecs.py */')
|
|
print()
|
|
print('#include <linux/fips.h>')
|
|
|
|
print_static_u8_array_definition("fips_test_data", fips_test_data)
|
|
print_static_u8_array_definition("fips_test_key", fips_test_key)
|
|
|
|
for alg in 'sha1', 'sha256', 'sha512':
|
|
ctx = hmac.new(fips_test_key, digestmod=alg)
|
|
ctx.update(fips_test_data)
|
|
print_static_u8_array_definition(f'fips_test_hmac_{alg}_value', ctx.digest())
|
|
|
|
print_static_u8_array_definition(f'fips_test_sha3_256_value',
|
|
hashlib.sha3_256(fips_test_data).digest())
|