2 writes to SignatureValue
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\SignedXml.cs (2)
429
m_signature.
SignatureValue
= asymmetricSignatureFormatter.CreateSignature(hashAlg);
465
m_signature.
SignatureValue
= new byte[signatureLength / 8];
9 references to SignatureValue
System.Security.Cryptography.Xml (9)
System\Security\Cryptography\Xml\SignedXml.cs (9)
206
get { return m_signature.
SignatureValue
; }
466
Buffer.BlockCopy(hashValue, 0, m_signature.
SignatureValue
, 0, signatureLength / 8);
1038
m_signature.
SignatureValue
);
1039
return asymmetricSignatureDeformatter.VerifySignature(hashval, m_signature.
SignatureValue
!);
1059
if (m_signature.
SignatureValue
== null)
1061
if (m_signature.
SignatureValue
.Length != signatureLength / 8)
1066
SignedXmlDebugLog.LogVerifySignedInfo(this, macAlg, hashValue, m_signature.
SignatureValue
);
1068
return m_signature.
SignatureValue
.AsSpan().SequenceEqual(hashValue.AsSpan(0, m_signature.
SignatureValue
.Length));