資源簡介
SM加密
代碼片段和文件信息
using?System;
using?System.Globalization;
using?System.Text;
namespace?smcrypto
{
????///?
????///?字節數組操作擴展類
????///?
????static?class?ByteUtils
????{
????????internal?static?byte[]?AsciiBytes(string?s)
????????{
????????????byte[]?bytes?=?new?byte[s.Length];
????????????for?(int?i?=?0;?i?????????????{
????????????????bytes[i]?=?(byte)s[i];
????????????}
????????????return?bytes;
????????}
????????internal?static?byte[]?HexToByteArray(this?string?hexString)
????????{
????????????byte[]?bytes?=?new?byte[hexString.Length?/?2];
????????????for?(int?i?=?0;?i?????????????{
????????????????string?s?=?hexString.Substring(i?2);
????????????????bytes[i?/?2]?=?byte.Parse(s?Numberstyles.HexNumber?null);
????????????}
???????????
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2017-08-21?15:07??smcrypto-master\
?????文件????????2518??2017-08-21?15:07??smcrypto-master\.gitattributes
?????文件????????4305??2017-08-21?15:07??smcrypto-master\.gitignore
?????文件????????1095??2017-08-21?15:07??smcrypto-master\smcrypto.sln
?????目錄???????????0??2017-08-21?15:07??smcrypto-master\smcrypto\
?????文件????????2401??2017-08-21?15:07??smcrypto-master\smcrypto\ByteUtils.cs
?????文件????????3916??2017-08-21?15:07??smcrypto-master\smcrypto\Chiper.cs
?????文件?????????554??2017-08-21?15:07??smcrypto-master\smcrypto\Program.cs
?????目錄???????????0??2017-08-21?15:07??smcrypto-master\smcrypto\Properties\
?????目錄???????????0??2017-08-21?15:07??smcrypto-master\smcrypto\Properties\PublishProfiles\
?????文件?????????610??2017-08-21?15:07??smcrypto-master\smcrypto\Properties\PublishProfiles\FolderProfile.pubxm
?????文件????????4155??2017-08-21?15:07??smcrypto-master\smcrypto\SM2.cs
?????文件????????4254??2017-08-21?15:07??smcrypto-master\smcrypto\SM2Utils.cs
?????文件???????11151??2017-08-21?15:07??smcrypto-master\smcrypto\SM3.cs
?????文件???????11317??2017-08-21?15:07??smcrypto-master\smcrypto\SM4.cs
?????文件????????3777??2017-08-21?15:07??smcrypto-master\smcrypto\SM4Utils.cs
?????文件?????????274??2017-08-21?15:07??smcrypto-master\smcrypto\smcrypto.csproj
?????文件??????????51??2019-11-15?09:33??smcrypto-master\SN.txt
評論
共有 條評論