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 algorithm. This class cannot be inherited. // Token: 0x0200041B RID: 1051 [Token(Token = "0x200041B")] [ComVisible(true)] public sealed class TripleDESCryptoServiceProvider : TripleDES { /// Initializes a new instance of the class. /// The cryptographic service provider is not available. // Token: 0x0600236B RID: 9067 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600236B")] [Address(RVA = "0x2E02FC0", Offset = "0x2E01DC0", VA = "0x182E02FC0")] public TripleDESCryptoServiceProvider() { } /// Creates a symmetric 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. /// /// The initialization vector must be 8 bytes long. If it is longer than 8 bytes, it is truncated and an exception is not thrown. Before you call , check the length of the initialization vector and throw an exception if it is too long. /// 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: 0x0600236C RID: 9068 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x600236C")] [Address(RVA = "0x2E02D40", Offset = "0x2E01B40", VA = "0x182E02D40", Slot = "23")] public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[] rgbIV) { return null; } /// Creates a symmetric 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: 0x0600236D RID: 9069 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x600236D")] [Address(RVA = "0x2E02C50", Offset = "0x2E01A50", VA = "0x182E02C50", Slot = "25")] public override ICryptoTransform CreateDecryptor(byte[] rgbKey, byte[] rgbIV) { return null; } /// Generates a random to be used for the algorithm. // Token: 0x0600236E RID: 9070 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600236E")] [Address(RVA = "0x2E02EC0", Offset = "0x2E01CC0", VA = "0x182E02EC0", Slot = "26")] public override void GenerateKey() { } /// Generates a random initialization vector () to use for the algorithm. // Token: 0x0600236F RID: 9071 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600236F")] [Address(RVA = "0x2E02E30", Offset = "0x2E01C30", VA = "0x182E02E30", Slot = "27")] public override void GenerateIV() { } } }