using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Security.Cryptography { /// Converts a to base 64. // Token: 0x020003F0 RID: 1008 [Token(Token = "0x20003F0")] [ComVisible(true)] public class ToBase64Transform : ICryptoTransform, IDisposable { /// Gets the input block size. /// The size of the input data blocks in bytes. // Token: 0x170004F7 RID: 1271 // (get) Token: 0x0600232A RID: 9002 RVA: 0x00016A28 File Offset: 0x00014C28 [Token(Token = "0x170004F7")] public int InputBlockSize { [Token(Token = "0x600232A")] [Address(RVA = "0x4DB5B0", Offset = "0x4DA5B0", VA = "0x1804DB5B0", Slot = "4")] get { return 0; } } /// Gets the output block size. /// The size of the output data blocks in bytes. // Token: 0x170004F8 RID: 1272 // (get) Token: 0x0600232B RID: 9003 RVA: 0x00016A40 File Offset: 0x00014C40 [Token(Token = "0x170004F8")] public int OutputBlockSize { [Token(Token = "0x600232B")] [Address(RVA = "0x680C20", Offset = "0x67FC20", VA = "0x180680C20", Slot = "5")] get { return 0; } } /// Gets a value that indicates whether multiple blocks can be transformed. /// Always . // Token: 0x170004F9 RID: 1273 // (get) Token: 0x0600232C RID: 9004 RVA: 0x00016A58 File Offset: 0x00014C58 [Token(Token = "0x170004F9")] public bool CanTransformMultipleBlocks { [Token(Token = "0x600232C")] [Address(RVA = "0x424690", Offset = "0x423690", VA = "0x180424690", Slot = "6")] get { return default(bool); } } /// Gets a value indicating whether the current transform can be reused. /// Always . // Token: 0x170004FA RID: 1274 // (get) Token: 0x0600232D RID: 9005 RVA: 0x00016A70 File Offset: 0x00014C70 [Token(Token = "0x170004FA")] public virtual bool CanReuseTransform { [Token(Token = "0x600232D")] [Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "11")] get { return default(bool); } } /// Converts the specified region of the input byte array to base 64 and copies the result to the specified region of the output byte array. /// The input to compute to base 64. /// The offset into the input byte array from which to begin using data. /// The number of bytes in the input byte array to use as data. /// The output to which to write the result. /// The offset into the output byte array from which to begin writing data. /// The number of bytes written. /// The current object has already been disposed. /// The data size is not valid. /// The parameter contains an invalid offset length. /// -or- /// The parameter contains an invalid value. /// The parameter is . /// The parameter requires a non-negative number. // Token: 0x0600232E RID: 9006 RVA: 0x00016A88 File Offset: 0x00014C88 [Token(Token = "0x600232E")] [Address(RVA = "0xD18DD0", Offset = "0xD17DD0", VA = "0x180D18DD0", Slot = "8")] public int TransformBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset) { return 0; } /// Converts the specified region of the specified byte array to base 64. /// The input to convert to base 64. /// The offset into the byte array from which to begin using data. /// The number of bytes in the byte array to use as data. /// The computed base 64 conversion. /// The current object has already been disposed. /// The parameter contains an invalid offset length. /// -or- /// The parameter contains an invalid value. /// The parameter is . /// The parameter requires a non-negative number. // Token: 0x0600232F RID: 9007 RVA: 0x00002082 File Offset: 0x00000282 [Token(Token = "0x600232F")] [Address(RVA = "0xD19030", Offset = "0xD18030", VA = "0x180D19030", Slot = "9")] public byte[] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount) { return null; } /// Releases all resources used by the current instance of the class. // Token: 0x06002330 RID: 9008 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002330")] [Address(RVA = "0xD18CE0", Offset = "0xD17CE0", VA = "0x180D18CE0", Slot = "10")] public void Dispose() { } /// Releases all resources used by the . // Token: 0x06002331 RID: 9009 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002331")] [Address(RVA = "0xD18CE0", Offset = "0xD17CE0", VA = "0x180D18CE0")] public void Clear() { } /// Releases the unmanaged resources used by the and optionally releases the managed resources. /// /// to release both managed and unmanaged resources; to release only unmanaged resources. // Token: 0x06002332 RID: 9010 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002332")] [Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "12")] protected virtual void Dispose(bool disposing) { } /// Releases the unmanaged resources used by the . // Token: 0x06002333 RID: 9011 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002333")] [Address(RVA = "0xD18D50", Offset = "0xD17D50", VA = "0x180D18D50", Slot = "1")] protected override void Finalize() { } /// Initializes a new instance of the class. // Token: 0x06002334 RID: 9012 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6002334")] [Address(RVA = "0x412370", Offset = "0x411370", VA = "0x180412370")] public ToBase64Transform() { } } }