1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-20 09:09:00 +00:00
Funkin/source/io/newgrounds/crypto/Cipher.hx

8 lines
144 B
Haxe
Raw Normal View History

2020-11-01 19:16:22 +00:00
package io.newgrounds.crypto;
@:enum
abstract Cipher(String) to String{
var NONE = "none";
var AES_128 = "aes128";
var RC4 = "rc4";
}