Skip to content
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.

Commit

Permalink
update & repack
Browse files Browse the repository at this point in the history
  • Loading branch information
Tonyha7 committed Jun 5, 2022
1 parent 84457e6 commit 9e1737e
Show file tree
Hide file tree
Showing 21 changed files with 58 additions and 66 deletions.
4 changes: 4 additions & 0 deletions App.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.2" newVersion="4.0.1.2" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
96 changes: 48 additions & 48 deletions Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 2 additions & 14 deletions Form1.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
using NPOI.POIFS.Crypt;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace abdUI
Expand Down Expand Up @@ -203,13 +196,8 @@ public static string calc(string str, string key)
}
public static string m3759b(string str)
{
sbyte[] bytes = str.GetBytes();
MessageDigest instance = MessageDigest.getInstance("md5");
instance.reset();
instance.update(bytes);
sbyte[] digest = instance.digest();
StringBuilder sb = new StringBuilder();
foreach (sbyte b in digest)
foreach (sbyte b in str)
{
string hexString = (b & 255).ToString("x");
if (hexString.Length == 1)
Expand Down
4 changes: 2 additions & 2 deletions abdUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@
<Reference Include="System.Core" />
<Reference Include="System.Design" />
<Reference Include="System.Drawing.Design" />
<Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>packages\System.Memory.4.5.4\lib\net461\System.Memory.dll</HintPath>
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath>
</Reference>
<Reference Include="System.Numerics" />
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
Expand Down
2 changes: 1 addition & 1 deletion packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package id="androidxmldotnet" version="0.1" targetFramework="net48" />
<package id="SharpCompress" version="0.31.0" targetFramework="net48" />
<package id="System.Buffers" version="4.5.1" targetFramework="net48" />
<package id="System.Memory" version="4.5.4" targetFramework="net48" />
<package id="System.Memory" version="4.5.5" targetFramework="net48" />
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net48" />
<package id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" targetFramework="net48" />
<package id="System.Text.Encoding.CodePages" version="6.0.0" targetFramework="net48" />
Expand Down
Binary file not shown.
1 change: 0 additions & 1 deletion packages/System.Memory.4.5.4/version.txt

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions packages/System.Memory.4.5.5/version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
32b491939fbd125f304031c35038b1e14b4e3958

0 comments on commit 9e1737e

Please sign in to comment.