Steamworks.SteamEncryptedAppTicket.BDecryptTicket C# (CSharp) Method

BDecryptTicket() public static method

public static BDecryptTicket ( byte rgubTicketEncrypted, uint cubTicketEncrypted, byte rgubTicketDecrypted, uint &pcubTicketDecrypted, byte rgubKey, int cubKey ) : bool
rgubTicketEncrypted byte
cubTicketEncrypted uint
rgubTicketDecrypted byte
pcubTicketDecrypted uint
rgubKey byte
cubKey int
return bool
		public static bool BDecryptTicket(byte[] rgubTicketEncrypted, uint cubTicketEncrypted, byte[] rgubTicketDecrypted, ref uint pcubTicketDecrypted, byte[] rgubKey, int cubKey) {
			InteropHelp.TestIfPlatformSupported();
			return NativeMethods.BDecryptTicket(rgubTicketEncrypted, cubTicketEncrypted, rgubTicketDecrypted, ref pcubTicketDecrypted, rgubKey, cubKey);
		}