,使开发人员可以使用网络库来简化加密技术,实际上是使用它
资 源 简 介
Project has been moved to [github](https://github.com/jasonlaflair/EfficientlyLazy.Crypto)
.Net library to simplify cryptography
Encryption engine wrapping up RijndaelManaged
Simple implemention
ICryptoEngine engine = new RijndaelEngine("encryptionKey");
Complex implemention
ICryptoEngine engine = new RijndaelEngine("encryptionKey") .SetInitVector("16CharacterValue") .SetKeySize(KeySize.Key256Bit) .SetRandomSaltLength(15, 25) .SetSalt("ExtractSaltDataTextHere") .SetIterations(50) .SetEncoding(Encoding.ASCII);
Encryption engine wrapping up DPAPI
Simple implemention
ICryptoEngine engine = new DPAPIEngine(KeyType.UserKey);
Complex implemention
ICryptoEngine en
文 件 列 表
v40
EfficientlyLazy.Crypto.XML
EfficientlyLazy.Crypto.pdb
EfficientlyLazy.Crypto.dll
EfficientlyLazy.Crypto.chm
v35
EfficientlyLazy.Crypto.chm
EfficientlyLazy.Crypto.xml
EfficientlyLazy.Crypto.pdb
EfficientlyLazy.Crypto.dll
v20
EfficientlyLazy.Crypto.chm
EfficientlyLazy.Crypto.xml
EfficientlyLazy.Crypto.pdb
EfficientlyLazy.Crypto.dll
Demo
EfficientlyLazy.Crypto.Demo.exe
EfficientlyLazy.Crypto.dll