Beispiel #1
0
        public async Task <IActionResult> GetVigenereCipherEncode([FromQuery] CipherVigenereDto dto)
        {
            string result = _cipherService.ExecVigenereCipher(Mode.Encrypt, dto);

            return(Ok(result));
        }