Problem I’ve been tasked with creating some way to encrypt arbitrary text for a .NET Core app, with the following […]
Tag: encryption
Encrypted text – C# SHA256, implementation
Problem I have a C# application which needs to encrypt string and save the key as a hash. The key […]
A simple encryption scheme 2.0
Problem This is a follow up to my previous post. I’ve used a BCrypt library to create a key from […]
C# AES Encryption/Decryption or byte[] array with a custom Key/IV
Problem I wanted to create an AES encryption service which will use a custom key/iv. I want 2 methods: dycrypt/encrypt […]