tests fixes and sprints work
This commit is contained in:
@@ -191,7 +191,13 @@ public sealed class TsaChainBundler : ITsaChainBundler
|
||||
try
|
||||
{
|
||||
var ski = new X509SubjectKeyIdentifierExtension(ext, ext.Critical);
|
||||
return Convert.FromHexString(ski.SubjectKeyIdentifier);
|
||||
var keyId = ski.SubjectKeyIdentifier;
|
||||
if (string.IsNullOrWhiteSpace(keyId))
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
return Convert.FromHexString(keyId);
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user