-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathLanguage.php
More file actions
34 lines (31 loc) · 729 Bytes
/
Copy pathLanguage.php
File metadata and controls
34 lines (31 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
declare(strict_types=1);
namespace StringEncrypt;
/**
* Output language for generated decryptor code (`lang` request field).
*/
enum Language: string
{
case Cpp = 'cpp';
case CSharp = 'csharp';
case VbNet = 'vbnet';
case Delphi = 'delphi';
case Java = 'java';
case JavaScript = 'js';
case Python = 'python';
case Ruby = 'ruby';
case AutoIt = 'autoit';
case PowerShell = 'powershell';
case Haskell = 'haskell';
case Masm = 'masm';
case Fasm = 'fasm';
case Go = 'go';
case Rust = 'rust';
case Swift = 'swift';
case Kotlin = 'kotlin';
case Lua = 'lua';
case Dart = 'dart';
case Php = 'php';
case Objc = 'objc';
case Nasm = 'nasm';
}