本文整理汇总了C#中DigestAlgorithm.Equals方法的典型用法代码示例。如果您正苦于以下问题:C# DigestAlgorithm.Equals方法的具体用法?C# DigestAlgorithm.Equals怎么用?C# DigestAlgorithm.Equals使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DigestAlgorithm
的用法示例。
在下文中一共展示了DigestAlgorithm.Equals方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: EncryptDigest
/// <exception cref="Sharpen.NoSuchAlgorithmException"></exception>
public override byte[] EncryptDigest(byte[] digestValue, DigestAlgorithm digestAlgo
, IDssPrivateKeyEntry keyEntry)
{
try
{
ByteArrayOutputStream digestInfo = new ByteArrayOutputStream();
//jbonilla: cambio de enum a clase.
if (digestAlgo.Equals(DigestAlgorithm.SHA1))
{
digestInfo.Write(Constants.SHA1_DIGEST_INFO_PREFIX);
}
else
{
if (digestAlgo.Equals(DigestAlgorithm.SHA256))
{
digestInfo.Write(Constants.SHA256_DIGEST_INFO_PREFIX);
}
else
{
if (digestAlgo.Equals(DigestAlgorithm.SHA256))
{
digestInfo.Write(Constants.SHA512_DIGEST_INFO_PREFIX);
}
}
}
digestInfo.Write(digestValue);
//Sharpen.Cipher cipher = Sharpen.Cipher.GetInstance(keyEntry.GetSignatureAlgorithm
// ().GetPadding());
IBufferedCipher cipher = CipherUtilities.GetCipher(keyEntry.GetSignatureAlgorithm
().GetPadding());
//cipher.Init(Sharpen.Cipher.ENCRYPT_MODE, ((KSPrivateKeyEntry)keyEntry).GetPrivateKey
// ());
cipher.Init(true, ((KSPrivateKeyEntry)keyEntry).PrivateKey);
return cipher.DoFinal(digestInfo.ToByteArray());
}
catch (IOException e)
{
// Writing in a ByteArrayOutputStream. Should never happens.
throw new RuntimeException(e);
}
/*catch (NoSuchPaddingException e)
{
throw new RuntimeException(e);
}*/
catch (InvalidKeyException e)
{
throw new RuntimeException(e);
}
/*catch (IllegalBlockSizeException e)
{
throw new RuntimeException(e);
}
catch (BadPaddingException)
{
// More likely the password is not good.
throw new BadPasswordException(BadPasswordException.MSG.PKCS12_BAD_PASSWORD);
}*/
}