Steamworks.NativeMethods.BDecryptTicket C# (CSharp) Method

BDecryptTicket() private method

private BDecryptTicket ( [ rgubTicketEncrypted, uint cubTicketEncrypted, [ rgubTicketDecrypted, uint &pcubTicketDecrypted, [ SizeConst = Constants.k_nSteamEncryptedAppTicketSymmetricKeyLen)]byte[]rgubKey, int cubKey ) : bool
rgubTicketEncrypted [
cubTicketEncrypted uint
rgubTicketDecrypted [
pcubTicketDecrypted uint
SizeConst [
cubKey int
return bool
		public static extern bool BDecryptTicket([In, Out] byte[] rgubTicketEncrypted, uint cubTicketEncrypted, [In, Out] byte[] rgubTicketDecrypted, ref uint pcubTicketDecrypted, [MarshalAs(UnmanagedType.LPArray, SizeConst=Constants.k_nSteamEncryptedAppTicketSymmetricKeyLen)] byte[] rgubKey, int cubKey);
NativeMethods