You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

27 lines
595 B

using QZWebApi.Bus;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
namespace QZWebApi.Controllers
{
public class HomeController : ApiController
{
[HttpPost]
public string GetDecryptTjxx(GetDecryptTjxxInputDto input)
{
string resultMsg = TjSignUtil.Decrypt(input.DecryptValue, input.AesKey);
return resultMsg;
}
}
public class GetDecryptTjxxInputDto
{
public string DecryptValue { get; set; }
public string AesKey { get; set; }
}
}