This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections; | |
| using UnityEngine; | |
| using PaulKevin; | |
| public class Baccarat_BetBoard : MonoBehaviour | |
| { | |
| //[SerializeField] protected GameObject[] prefab_big_road = null; | |
| //[SerializeField] Transform[] pos_big_road = null; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public string Decrypt(string ciphertext) | |
| { | |
| try | |
| { | |
| byte[] data = Convert.FromBase64String(ciphertext); | |
| using var aes = Aes.Create(); | |
| aes.Key = _key; | |
| aes.Mode = CipherMode.CBC; | |
| aes.Padding = PaddingMode.PKCS7; |
OlderNewer