Funkin/source/io/newgrounds/crypto/Cipher.hx

8 lines
144 B
Haxe
Raw Normal View History

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