Advertisement
Advertisement
| 06.12.2008 at 03:11AM PDT, ID: 23478824 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: |
1)
X509Certificate2 aCertificate = new X509Certificate2(UnicodeEncoding.Unicode.GetBytes(Signature));
X509Chain chain = new X509Chain();
chain.ChainPolicy.RevocationFlag = X509RevocationFlag.EntireChain;
chain.ChainPolicy.RevocationMode = X509RevocationMode.Online;
chain.ChainPolicy.UrlRetrievalTimeout = new TimeSpan(0, 1, 0);
chain.ChainPolicy.VerificationFlags = X509VerificationFlags.NoFlag;
bool chainIsValid = chain.Build(aCertificate);
2)
byte[] data = Encoding.Unicode.GetBytes(Data); //original data
SHA1 sha = new SHA1CryptoServiceProvider();
byte[] hash = sha.ComputeHash(data);
RSACryptoServiceProvider RSAP = (RSACryptoServiceProvider)aCert.PublicKey.Key;
//aCert is X509Certificate2 from code above
RSAPKCS1SignatureDeformatter RSADeformatter = new RSAPKCS1SignatureDeformatter(RSAP);
RSADeformatter.SetHashAlgorithm("SHA1");
if (RSADeformatter.VerifySignature(hash, sig))
{
return true;
}
else
{
return false;
}
|