matrix
matrix

Reputation: 64

How to use the "libtomcrypt" in C#

I want to use the libtomcrypt toolkit in C# for Encrypt-Decrypt. I'm not familiar with C, so help me. The link for the toolkit: http://www.libtom.org/?page=features&newsitems=5&whatfile=crypt

Upvotes: 0

Views: 653

Answers (1)

vidit
vidit

Reputation: 6451

You need not use a C library for cryptography in C#. It has its own classes, providing everything you need. You just have to import System.Security.Cryptography. The following links will help you further..

Code Project- Article on Cryptography in C#

C-Sharp Corner- CryptoGraphy in C#

Upvotes: 6

Related Questions