14 references to GetKeyType
System.Security.Cryptography.Cose (14)
System\Security\Cryptography\Cose\CoseSign1Message.cs (6)
406return VerifyCore(key, _content, null, associatedData, CoseHelpers.GetKeyType(key)); 448return VerifyCore(key, _content, null, associatedData, CoseHelpers.GetKeyType(key)); 496return VerifyCore(key, detachedContent, null, associatedData, CoseHelpers.GetKeyType(key)); 540return VerifyCore(key, detachedContent, null, associatedData, CoseHelpers.GetKeyType(key)); 606return VerifyCore(key, default, detachedContent, associatedData, CoseHelpers.GetKeyType(key)); 707return VerifyAsyncCore(key, detachedContent, associatedData, CoseHelpers.GetKeyType(key), cancellationToken);
System\Security\Cryptography\Cose\CoseSignature.cs (6)
112return VerifyCore(key, Message.Content.Value.Span, null, associatedData, CoseHelpers.GetKeyType(key)); 155return VerifyCore(key, Message.Content.Value.Span, null, associatedData, CoseHelpers.GetKeyType(key)); 204return VerifyCore(key, detachedContent, null, associatedData, CoseHelpers.GetKeyType(key)); 248return VerifyCore(key, detachedContent, null, associatedData, CoseHelpers.GetKeyType(key)); 315return VerifyCore(key, default, detachedContent, associatedData, CoseHelpers.GetKeyType(key)); 382return VerifyAsyncCore(key, detachedContent, associatedData, CoseHelpers.GetKeyType(key), cancellationToken);
System\Security\Cryptography\Cose\CoseSigner.cs (2)
78_keyType = CoseHelpers.GetKeyType(key); 118_keyType = CoseHelpers.GetKeyType(key);