18 lines
613 B
C#
18 lines
613 B
C#
using System;
|
|
|
|
namespace System.Security.Cryptography
|
|
{
|
|
// Token: 0x02000536 RID: 1334
|
|
internal class DSASignatureDescription : SignatureDescription
|
|
{
|
|
// Token: 0x060030DB RID: 12507 RVA: 0x000A803C File Offset: 0x000A623C
|
|
public DSASignatureDescription()
|
|
{
|
|
base.DeformatterAlgorithm = "System.Security.Cryptography.DSASignatureDeformatter";
|
|
base.DigestAlgorithm = "System.Security.Cryptography.SHA1CryptoServiceProvider";
|
|
base.FormatterAlgorithm = "System.Security.Cryptography.DSASignatureFormatter";
|
|
base.KeyAlgorithm = "System.Security.Cryptography.DSACryptoServiceProvider";
|
|
}
|
|
}
|
|
}
|