We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2828c1d commit 6e44344Copy full SHA for 6e44344
pynitrokey/cli/nethsm.py
@@ -1391,6 +1391,14 @@ def system_info(ctx: Context) -> None:
1391
print(f"Software version: {info.software_version}")
1392
print(f"Hardware version: {info.hardware_version}")
1393
print(f"Build tag: {info.build_tag}")
1394
+ if info.attestation_keys:
1395
+ print("Attestation keys")
1396
+ for key, value in info.attestation_keys.items():
1397
+ print(f" {key}: {value}")
1398
+ if info.platform_configuration_registers:
1399
+ print("Platform Configuration Registers")
1400
+ for key, value in info.platform_configuration_registers.items():
1401
1402
1403
1404
@nethsm.command()
0 commit comments