diff --git a/OshimaModules/Skills/NiuNan/变幻之心.cs b/OshimaModules/Skills/NiuNan/变幻之心.cs index 0f769a0..89f3830 100644 --- a/OshimaModules/Skills/NiuNan/变幻之心.cs +++ b/OshimaModules/Skills/NiuNan/变幻之心.cs @@ -1,5 +1,4 @@ using Milimoe.FunGame.Core.Entity; -using Milimoe.FunGame.Core.Interface.Entity; using Milimoe.FunGame.Core.Library.Constant; namespace Oshima.FunGame.OshimaModules.Skills diff --git a/OshimaModules/Skills/QuDuoduo/弱者猎手.cs b/OshimaModules/Skills/QuDuoduo/弱者猎手.cs index 9cc989c..e0619b0 100644 --- a/OshimaModules/Skills/QuDuoduo/弱者猎手.cs +++ b/OshimaModules/Skills/QuDuoduo/弱者猎手.cs @@ -1,5 +1,4 @@ -using System.Collections.Generic; -using Milimoe.FunGame.Core.Entity; +using Milimoe.FunGame.Core.Entity; using Milimoe.FunGame.Core.Library.Constant; namespace Oshima.FunGame.OshimaModules.Skills diff --git a/OshimaWebAPI/Controllers/TestController.cs b/OshimaWebAPI/Controllers/TestController.cs index e2dca23..42d2316 100644 --- a/OshimaWebAPI/Controllers/TestController.cs +++ b/OshimaWebAPI/Controllers/TestController.cs @@ -23,25 +23,25 @@ namespace Oshima.FunGame.WebAPI.Controllers { return msg.Encrypt(key); } - + [HttpGet("gethmacsha256")] public string UseHMACSHA256(string msg, string key) { return Encryption.HmacSha256(msg, key); } - + [HttpGet("getrsa")] public string GetRSA(string msg, string key) { return Encryption.RSADecrypt(msg, key); } - + [HttpGet("setrsa")] public string SetRSA(string msg, string key) { return Encryption.RSAEncrypt(msg, key); } - + /// /// 1: public, 2: private ///