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