An open API service indexing awesome lists of open source software.

https://github.com/ntdls/ntdls.nasccl

The NetworkDLS original symmetric cipher algorithm ported to C#.
https://github.com/ntdls/ntdls.nasccl

algorithms cryptography encryption symmetric-encryption

Last synced: about 2 months ago
JSON representation

The NetworkDLS original symmetric cipher algorithm ported to C#.

Awesome Lists containing this project

README

        

# NTDLS.NASCCL

📦 Be sure to check out the NuGet package: https://www.nuget.org/packages/NTDLS.NASCCL

NetworkDLS Algorithmic Symmetric Cipher Cryptography Library. Original C++ library ported to C#

*Simple string encryption example:*

```
var cryptoStream = new CryptoStream("ThisIsTheP@$$w0Rd!");
var cipherBytes = cryptoStream.Cipher("This is some text that I would like to keep safe if that is ok with you? Oh, it is? Good!");
var decipherBytes = cryptoStream.Cipher(cipherBytes);
string decipheredText = Encoding.UTF8.GetString(decipherBytes);
```