2 writes to SignatureValue
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\SignedXml.cs (2)
435
m_signature.
SignatureValue
= asymmetricSignatureFormatter.CreateSignature(hashAlg);
474
m_signature.
SignatureValue
= new byte[signatureLength / 8];
9 references to SignatureValue
System.Security.Cryptography.Xml (9)
System\Security\Cryptography\Xml\SignedXml.cs (9)
212
get { return m_signature.
SignatureValue
; }
475
Buffer.BlockCopy(hashValue, 0, m_signature.
SignatureValue
, 0, signatureLength / 8);
1050
m_signature.
SignatureValue
);
1051
return asymmetricSignatureDeformatter.VerifySignature(hashval, m_signature.
SignatureValue
!);
1074
if (m_signature.
SignatureValue
== null)
1076
if (m_signature.
SignatureValue
.Length != signatureLength / 8)
1081
SignedXmlDebugLog.LogVerifySignedInfo(this, macAlg, hashValue, m_signature.
SignatureValue
);
1083
return m_signature.
SignatureValue
.AsSpan().SequenceEqual(hashValue.AsSpan(0, m_signature.
SignatureValue
.Length));