Skip to content

Instantly share code, notes, and snippets.

View ginxx009's full-sized avatar
🏠
Working from home

Ginx009 ginxx009

🏠
Working from home
View GitHub Profile
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;
@ginxx009
ginxx009 / Decrypt.cs
Last active August 20, 2025 05:44
Encryption & Decryption MD5 C#
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;