Files
smcryptoutils/SMCryptoUtils/ISignUtil.cs

16 lines
326 B
C#
Raw Normal View History

2023-03-02 22:57:29 +08:00
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SMCryptoUtils
{
public interface ISignUtil
{
string getObjString(object obj);
string getSignText(JObject jsonObject, string appSecret);
}
}