Detected 1 occurrence(s) of ‘(api)*[-_]*key[ ="']+\w+’: ckSize blockSize, KeySize keySize, EncryptionMode cryptMode) {...} public string DecryptData(string encryptedMessage, string password) { if (encryptedMessage.Length % 2 == 1) throw new Exception("The binary key cannot have an odd number of digits"); byte[] byteArr = new byte[encryptedMessage.Length / 2]; for (int index = 0; index < byteArr.Length; index++) { […]
↧