The computeID method in the CryptoCertificate class has been updated to handle errors when exporting keys. Previously, if the key export method failed, the method would throw an exception and stop processing. Now, if the export fails, the method will skip that key and continue processing. This fix ensures that the computeID method can handle errors gracefully and provides a more robust behavior.
The
computeID
method in theCryptoCertificate
class has been updated to handle errors when exporting keys. Previously, if the key export method failed, the method would throw an exception and stop processing. Now, if the export fails, the method will skip that key and continue processing. This fix ensures that thecomputeID
method can handle errors gracefully and provides a more robust behavior.