ACT_Security 2.2.2.1
See the version list below for details.
dotnet add package ACT_Security --version 2.2.2.1
NuGet\Install-Package ACT_Security -Version 2.2.2.1
<PackageReference Include="ACT_Security" Version="2.2.2.1" />
paket add ACT_Security --version 2.2.2.1
#r "nuget: ACT_Security, 2.2.2.1"
// Install ACT_Security as a Cake Addin #addin nuget:?package=ACT_Security&version=2.2.2.1 // Install ACT_Security as a Cake Tool #tool nuget:?package=ACT_Security&version=2.2.2.1
ACT Security Provides Basic - Non Production Ready - Security / Hashing Functions. Example:
To Protect Data: var _Data = System.IO.File.ReadAllBytes(FileToProtect); if (_Data == null) { throw new Exception("Error // ADD CUSTOM STUFF HERE"); } var _DataBytes = ACT.Core.Security.ProtectData.Protect(_Data, true); string _ProtectedFileName = Path.ChangeExtension(FileToProtect, Path.GetExtension(FileToProtect) + "ACTP"); System.IO.File.WriteAllBytes(_ProtectedFileName, _DataBytes);
To Generate Hash: string _HashedData = ACT.Core.Security.Hashing.SHAHashing.StringToSHA256Hash(key_Password_ToHash, false)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net6.0
- ACT_Extension_Library (>= 2.1.8.1)
- ACT_Interfaces (>= 2.1.7)
- BouncyCastle.NetCore (>= 1.9.0)
- DeviceId.Windows (>= 6.2.0)
- System.Management (>= 6.0.0)
- System.Security.Cryptography.Primitives (>= 4.3.0)
- System.Security.Cryptography.ProtectedData (>= 6.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on ACT_Security:
Package | Downloads |
---|---|
ACT_CORE
Core Engine that Manages ACT Applications and offers standardized quick development helper. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Adjusted some Basic Settings