SYMBOL INDEX (32 symbols across 5 files) FILE: Android/CryptLib.java class CryptLib (line 34) | public class CryptLib { type EncryptMode (line 39) | private enum EncryptMode { method CryptLib (line 49) | public CryptLib() throws NoSuchAlgorithmException, NoSuchPaddingExcept... method md5 (line 62) | public static final String md5(final String inputString) { method encryptDecrypt (line 104) | private String encryptDecrypt(String _inputText, String _encryptionKey, method SHA256 (line 182) | public static String SHA256 (String text, int length) throws NoSuchAlg... method encrypt (line 227) | public String encrypt(String _plainText, String _key, String _iv) method decrypt (line 252) | public String decrypt(String _encryptedText, String _key, String _iv) method generateRandomIV (line 265) | public static String generateRandomIV(int length) FILE: C-Sharp/CryptLib.cs class CryptLib (line 23) | public class CryptLib type EncryptMode (line 32) | private enum EncryptMode {ENCRYPT, DECRYPT}; method GenerateRandomIV (line 51) | internal static string GenerateRandomIV(int length) { method CryptLib (line 69) | public CryptLib() method encryptDecrypt (line 94) | private String encryptDecrypt (string _inputText, string _encryptionKe... method encrypt (line 142) | public string encrypt (string _plainText, string _key, string _initVec... method decrypt (line 159) | public string decrypt(string _encryptedText, string _key, string _init... method getHashSha256 (line 174) | public static string getHashSha256(string text, int length) method MD5Hash (line 191) | private static string MD5Hash(string text) FILE: C-Sharp/HowToUse.cs class test (line 1) | public class test { method Main (line 2) | public static void Main (String []args) FILE: Node/dist/CryptLib.js function defineProperties (line 9) | function defineProperties(target, props) { for (var i = 0; i < props.len... function _interopRequireDefault (line 11) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob... function _classCallCheck (line 13) | function _classCallCheck(instance, Constructor) { if (!(instance instanc... function CryptLib (line 39) | function CryptLib() { FILE: Node/src/CryptLib.js class CryptLib (line 19) | class CryptLib { method constructor (line 21) | constructor() { method _encryptDecrypt (line 44) | _encryptDecrypt(text, key, initVector, isEncrypt) { method _isCorrectLength (line 91) | _isCorrectLength(length) { method generateRandomIV (line 99) | generateRandomIV(length) { method getHashSha256 (line 122) | getHashSha256(key, length) { method encrypt (line 145) | encrypt(plainText, key, initVector) { method decrypt (line 157) | decrypt(encryptedText, key, initVector) {