ArkticFish.BitShiftEncryption
1.1.1
See the version list below for details.
dotnet add package ArkticFish.BitShiftEncryption --version 1.1.1
NuGet\Install-Package ArkticFish.BitShiftEncryption -Version 1.1.1
<PackageReference Include="ArkticFish.BitShiftEncryption" Version="1.1.1" />
paket add ArkticFish.BitShiftEncryption --version 1.1.1
#r "nuget: ArkticFish.BitShiftEncryption, 1.1.1"
// Install ArkticFish.BitShiftEncryption as a Cake Addin #addin nuget:?package=ArkticFish.BitShiftEncryption&version=1.1.1 // Install ArkticFish.BitShiftEncryption as a Cake Tool #tool nuget:?package=ArkticFish.BitShiftEncryption&version=1.1.1
Coding examples.
// Encrypt string with string. var enc = ""; BitshiftEncryption.EncryptStringWithString("value", "key", ref enc);
// Decrypt string with string. var norm = ""; BitshiftEncryption.DecryptStringWithString(enc, "key", ref norm);
// Encrypt file with string. BitshiftEncryption.EncryptFileWithString(@"C:\Path.jpg", "key", @"C:\Path.jpg.enc");
// Decrypt file with string. BitshiftEncryption.DecryptFileWithString(@"C:\Path.jpg.enc", "key", @"C:\Path.jpg");
// Encrypt file with file. BitshiftEncryption.EncryptFileWithFile(@"C:\Path.jpg", @"C:\Path\key.txt", @"C:\Path.jpg.enc");
// Decrypt file with file. BitshiftEncryption.DecryptFileWithFile(@"C:\Path.jpg.enc", @"C:\Path\key.txt", @"C:\Path.jpg");
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Added standard public methods. Added standard comments to methods, classes, and parameters.