using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// Defines a wrapper object to access the cryptographic service provider (CSP) version of the Data Encryption Standard () algorithm. This class cannot be inherited.
// Token: 0x02000400 RID: 1024
[Token(Token = "0x2000400")]
[ComVisible(true)]
public sealed class DESCryptoServiceProvider : DES
{
/// Initializes a new instance of the class.
/// The Data Encryption Standard () cryptographic service provider is not available.
// Token: 0x06002392 RID: 9106 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002392")]
[Address(RVA = "0xC04380", Offset = "0xC03380", VA = "0x180C04380")]
public DESCryptoServiceProvider()
{
}
/// Creates a symmetric Data Encryption Standard () encryptor object with the specified key () and initialization vector ().
/// The secret key to use for the symmetric algorithm.
/// The initialization vector to use for the symmetric algorithm.
/// A symmetric encryptor object.
/// The value of the property is .
/// -or-
/// The value of the property is and the value of the property is not 8.
/// -or-
/// An invalid key size was used.
/// -or-
/// The algorithm key size was not available.
// Token: 0x06002393 RID: 9107 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002393")]
[Address(RVA = "0xC04060", Offset = "0xC03060", VA = "0x180C04060", Slot = "23")]
public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[] rgbIV)
{
return null;
}
/// Creates a symmetric Data Encryption Standard () decryptor object with the specified key () and initialization vector ().
/// The secret key to use for the symmetric algorithm.
/// The initialization vector to use for the symmetric algorithm.
/// A symmetric decryptor object.
/// The value of the property is .
/// -or-
/// The value of the property is and the value of the property is not 8.
/// -or-
/// An invalid key size was used.
/// -or-
/// The algorithm key size was not available.
// Token: 0x06002394 RID: 9108 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002394")]
[Address(RVA = "0xC03EF0", Offset = "0xC02EF0", VA = "0x180C03EF0", Slot = "25")]
public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[] rgbIV)
{
return null;
}
/// Generates a random key () to be used for the algorithm.
// Token: 0x06002395 RID: 9109 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002395")]
[Address(RVA = "0xC04260", Offset = "0xC03260", VA = "0x180C04260", Slot = "26")]
public override void GenerateKey()
{
}
/// Generates a random initialization vector () to use for the algorithm.
// Token: 0x06002396 RID: 9110 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002396")]
[Address(RVA = "0xC041D0", Offset = "0xC031D0", VA = "0x180C041D0", Slot = "27")]
public override void GenerateIV()
{
}
}
}