public ActionResult <bool> Check([FromBody] CheckModel model)
 {
     return(Ok(_cryptoService.Check(model.Text, model.Signature)));
 }