NTDLS.NASCCL

Status: Stable
Released: 2024-12-31
License: MIT License

This is open source under the MIT License. You can obtain the source code from GitHub or browse the releases for source code associated with specific versions. If you make any changes which you feel improves this application, please feel free to submit a pull - request.

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);