14 references to GetKeyType
System.Security.Cryptography.Cose (14)
System\Security\Cryptography\Cose\CoseSign1Message.cs (6)
388return VerifyCore(key, _content, null, associatedData, CoseHelpers.GetKeyType(key)); 427return VerifyCore(key, _content, null, associatedData, CoseHelpers.GetKeyType(key)); 469return VerifyCore(key, detachedContent, null, associatedData, CoseHelpers.GetKeyType(key)); 510return VerifyCore(key, detachedContent, null, associatedData, CoseHelpers.GetKeyType(key)); 570return VerifyCore(key, default, detachedContent, associatedData, CoseHelpers.GetKeyType(key)); 665return VerifyAsyncCore(key, detachedContent, associatedData, CoseHelpers.GetKeyType(key), cancellationToken);
System\Security\Cryptography\Cose\CoseSignature.cs (6)
109return VerifyCore(key, Message.Content.Value.Span, null, associatedData, CoseHelpers.GetKeyType(key)); 149return VerifyCore(key, Message.Content.Value.Span, null, associatedData, CoseHelpers.GetKeyType(key)); 192return VerifyCore(key, detachedContent, null, associatedData, CoseHelpers.GetKeyType(key)); 233return VerifyCore(key, detachedContent, null, associatedData, CoseHelpers.GetKeyType(key)); 294return VerifyCore(key, default, detachedContent, associatedData, CoseHelpers.GetKeyType(key)); 355return VerifyAsyncCore(key, detachedContent, associatedData, CoseHelpers.GetKeyType(key), cancellationToken);
System\Security\Cryptography\Cose\CoseSigner.cs (2)
77_keyType = CoseHelpers.GetKeyType(key); 114_keyType = CoseHelpers.GetKeyType(key);