Zendbit.Tools 1.0.7

There is a newer version of this package available.
See the version list below for details.
dotnet add package Zendbit.Tools --version 1.0.7
NuGet\Install-Package Zendbit.Tools -Version 1.0.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Zendbit.Tools" Version="1.0.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Zendbit.Tools --version 1.0.7
#r "nuget: Zendbit.Tools, 1.0.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Zendbit.Tools as a Cake Addin
#addin nuget:?package=Zendbit.Tools&version=1.0.7

// Install Zendbit.Tools as a Cake Tool
#tool nuget:?package=Zendbit.Tools&version=1.0.7

Zendbit.Tools

Small helper for code productivity

License MIT

Search and install the nuget : Zendbit.Tools

Install-Package Zendbit.Tools -Version 1.0.6
using Zendbit.Tools.Encryption


// compute has with sha1
var hashed = SHA1Crypt.New().ComputeHash("this will hash");

// base64 encode
var encoded = Base64Crypt.New().Encode("string to be encode");
var decoded = Base64Crypt.New().Decode(encoded);

// XOR encryption
var xorEncrypted = XORCrypt.New().Encode("will encrpted");
var xorDecrypted = XORCrypt.New().Decode(xorEncrypted);
using Zendbit.Tools.IO

// read as byte async
var data = await FileOp.New().ReadBytesAsync("data.txt");

// read as text async
var data = await FileOp.New().ReadTextAsync("data.txt");

// read as byte
var data = FileOp.New().ReadBytes("data.txt");

// read as text
var data = FileOp.New().ReadText("data.txt");

// path helper
// path will return to specific os example for windows and unix is different
// parameter will using :: delimiter for the path
// example we use parameter
// mydata::files::sendit
// will convert to mydata/files/sendit on unix
// will convert to mydata\\files\\sendit on windows
var myPath = FileOp.New().Create("mydata::files::sendit")
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.1

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Zendbit.Tools:

Package Downloads
Zendbit.Blazor.Storage

Implement web storage and session using JSInterop for Server Side Blazor and Razor with enpcryption support

Zendbit.Blazor.Client.Storage

Implement web storage and session using JSInterop for Blazor Client with enpcryption support

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.8 596 8/24/2019
1.0.7 482 8/21/2019
1.0.6 490 8/19/2019
1.0.5 486 8/19/2019

version 1.0.0 contain
- Crypto tools
1. SHA1 hash
2. Base64
3. XOR encription