Check if device is fips capable before creating an SCP session

This commit is contained in:
Dennis Fokin 2024-08-20 13:47:18 +02:00
parent a3f9ace174
commit 7c4b9ff9cb
No known key found for this signature in database
GPG Key ID: 870B88256690D8BC

View File

@ -521,6 +521,7 @@ class ScpConnectionNode(ConnectionNode):
self.fips_capable = info.fips_capable self.fips_capable = info.fips_capable
self.scp_params = None self.scp_params = None
try: try:
if self.fips_capable != 0:
scp = SecurityDomainSession(connection) scp = SecurityDomainSession(connection)
for ref in scp.get_key_information().keys(): for ref in scp.get_key_information().keys():