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#.
- Host: GitHub
- URL: https://github.com/ntdls/ntdls.nasccl
- Owner: NTDLS
- License: mit
- Created: 2023-11-02T19:57:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-22T18:37:19.000Z (about 1 year ago)
- Last Synced: 2024-04-26T18:22:22.471Z (about 1 year ago)
- Topics: algorithms, cryptography, encryption, symmetric-encryption
- Language: C#
- Homepage: https://networkdls.com/
- Size: 137 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
```