2 writes to SignatureValue
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\SignedXml.cs (2)
426
m_signature.
SignatureValue
= asymmetricSignatureFormatter.CreateSignature(hashAlg);
462
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
; }
463
Buffer.BlockCopy(hashValue, 0, m_signature.
SignatureValue
, 0, signatureLength / 8);
1035
m_signature.
SignatureValue
);
1036
return asymmetricSignatureDeformatter.VerifySignature(hashval, m_signature.
SignatureValue
!);
1056
if (m_signature.
SignatureValue
== null)
1058
if (m_signature.
SignatureValue
.Length != signatureLength / 8)
1063
SignedXmlDebugLog.LogVerifySignedInfo(this, macAlg, hashValue, m_signature.
SignatureValue
);
1065
return m_signature.
SignatureValue
.AsSpan().SequenceEqual(hashValue.AsSpan(0, m_signature.
SignatureValue
.Length));