/

Quick Start with ByteHide Storage

Once you have installed the ByteHide Storage package, you can quickly start using it to secure your sensitive data in your .NET projects. This guide will help you get started with ByteHide Storage in Visual Studio.

Install Storage from NuGet packages manager

NuGet\Install-Package ByteHide.Storage --version latest

Initialize Storage

var storage = new StorageManager();

Note: Create your environment variables

BYTEHIDE_STORAGE_TOKEN your project token.

BYTEHIDE_STORAGE_PHRASE_ENCRYPTION your encryption phrase.

var storage = new StorageManager("196712ef-29c5-0000-0000-00c00c000000", "<phrase_encryption>");

Note: Consider using a secure method to store the project token and encryption phrase

Upload File

bool uploaded = storage.Set("main/images/photo.jpg", image);

Download File

var file = storage.Get("main/images/photo.jpg");

If we want to take full advantage of ByteHide Storage's potential and make our files more secure, we can encrypt them before uploading them to the server.

Previous
Handling files