mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-01-03 18:59:03 +00:00
7 lines
132 B
Haxe
7 lines
132 B
Haxe
|
package io.newgrounds.crypto;
|
||
|
|
||
|
@:enum
|
||
|
abstract EncryptionFormat(String) to String {
|
||
|
var BASE_64 = "base64";
|
||
|
var HEX = "hex";
|
||
|
}
|