2 writes to SignatureValue
System.Security (2)
system\security\cryptography\xml\signedxml.cs (2)
388
m_signature.
SignatureValue
= asymmetricSignatureFormatter.CreateSignature(hashAlg);
437
m_signature.
SignatureValue
= new byte[signatureLength / 8];
9 references to SignatureValue
System.Security (9)
system\security\cryptography\xml\signedxml.cs (9)
203
get { return m_signature.
SignatureValue
; }
438
Buffer.BlockCopy(hashValue, 0, m_signature.
SignatureValue
, 0, signatureLength / 8);
991
m_signature.
SignatureValue
);
992
return asymmetricSignatureDeformatter.VerifySignature(hashval, m_signature.
SignatureValue
);
1012
if (m_signature.
SignatureValue
== null)
1014
if (m_signature.
SignatureValue
.Length != signatureLength / 8)
1019
SignedXmlDebugLog.LogVerifySignedInfo(this, macAlg, hashValue, m_signature.
SignatureValue
);
1020
for (int i=0; i<m_signature.
SignatureValue
.Length; i++) {
1021
if (m_signature.
SignatureValue
[i] != hashValue[i]) return false;