24 lines
855 B
C#
24 lines
855 B
C#
using System;
|
|
|
|
namespace System.Security.Cryptography
|
|
{
|
|
// Token: 0x02000537 RID: 1335
|
|
internal class RSAPKCS1SHA1SignatureDescription : SignatureDescription
|
|
{
|
|
// Token: 0x060030DC RID: 12508 RVA: 0x000A807C File Offset: 0x000A627C
|
|
public RSAPKCS1SHA1SignatureDescription()
|
|
{
|
|
base.DeformatterAlgorithm = "System.Security.Cryptography.RSAPKCS1SignatureDeformatter";
|
|
base.DigestAlgorithm = "System.Security.Cryptography.SHA1CryptoServiceProvider";
|
|
base.FormatterAlgorithm = "System.Security.Cryptography.RSAPKCS1SignatureFormatter";
|
|
base.KeyAlgorithm = "System.Security.Cryptography.RSACryptoServiceProvider";
|
|
}
|
|
|
|
// Token: 0x060030DD RID: 12509 RVA: 0x000A80BC File Offset: 0x000A62BC
|
|
public override AsymmetricSignatureDeformatter CreateDeformatter(AsymmetricAlgorithm key)
|
|
{
|
|
return base.CreateDeformatter(key);
|
|
}
|
|
}
|
|
}
|