├── .gitattributes ├── 9781484243749.jpg ├── AES ├── AES.csproj ├── AesEncryption.cs └── Program.cs ├── AppliedCryptography.sln ├── Contributing.md ├── DES ├── DES.csproj ├── DesEncryption.cs └── Program.cs ├── DigitalSignature ├── DigitalSignature.cs ├── DigitalSignature.csproj └── Program.cs ├── HMAC ├── HMAC.cs ├── HMAC.csproj └── Program.cs ├── HashPassword ├── Hash.cs ├── HashPassword.csproj └── Program.cs ├── Hashing ├── Hashing.csproj ├── Hashng.cs └── Program.cs ├── Hybrid ├── AesEncryption.cs ├── EncryptedPacket.cs ├── Hybrid.csproj ├── HybridEncryption.cs ├── Program.cs └── RSAWithRSAParameterKey.cs ├── HybridWithIntegrity ├── AesEncryption.cs ├── EncryptedPacket.cs ├── HybridEncryption.cs ├── HybridWithIntegrity.csproj ├── Program.cs └── RSAWithRSAParameterKey.cs ├── HybridWithIntegrityAndSignature ├── AesEncryption.cs ├── DigitalSignature.cs ├── EncryptedPacket.cs ├── HybridEncryption.cs ├── HybridWithIntegrityAndSignature.csproj ├── Program.cs └── RSAWithRSAParameterKey.cs ├── KV_DigitalSignatures ├── DigitalSignatures.csproj ├── FakeKeyVault.cs ├── Hash.cs ├── IKeyVault.cs ├── KeyVault.cs ├── KeyVaultBase.cs └── Program.cs ├── KV_HybridWithIntegrityAndSignature ├── AesEncryption.cs ├── EncryptedPacket.cs ├── HybridEncryption.cs ├── HybridWithIntegrityAndSignature.csproj ├── IKeyVault.cs ├── KeyVault.cs ├── KeyVaultBase.cs └── Program.cs ├── KV_KeyWrapping ├── AesEncryption.cs ├── IKeyVault.cs ├── KeyVault.cs ├── KeyVaultBase.cs ├── KeyWrapping.csproj ├── Program.cs └── SecureRandom.cs ├── KV_PasswordProtection ├── IKeyVault.cs ├── KeyVault.cs ├── KeyVaultBase.cs ├── PBKDF2.cs ├── PasswordProtection.csproj ├── Program.cs └── SecureRandom.cs ├── KV_Secrets ├── IKeyVault.cs ├── KeyVault.cs ├── KeyVaultBase.cs ├── Program.cs └── Secrets.csproj ├── KV_SimpleEncryptDecrypt ├── IKeyVault.cs ├── KeyVault.cs ├── KeyVaultBase.cs ├── Program.cs └── SimpleEncryptDecrypt.csproj ├── LICENSE.txt ├── PBKDF2 ├── PBKDF2.cs ├── PBKDF2.csproj └── Program.cs ├── ProofOfWorkTest ├── Program.cs ├── ProofOfWork.cs └── ProofOfWorkTest.csproj ├── README.md ├── RSA ├── Program.cs ├── RSA.csproj ├── RSAWithCSPKey.cs ├── RSAWithRSAParameterKey.cs └── RSAWithXMLKey.cs ├── RandomNumber ├── Program.cs ├── Random.cs └── RandomNumber.csproj ├── TripleDES ├── Program.cs ├── TripleDES.csproj └── TripleDesEncryption.cs └── errata.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/.gitattributes -------------------------------------------------------------------------------- /9781484243749.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/9781484243749.jpg -------------------------------------------------------------------------------- /AES/AES.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/AES/AES.csproj -------------------------------------------------------------------------------- /AES/AesEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/AES/AesEncryption.cs -------------------------------------------------------------------------------- /AES/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/AES/Program.cs -------------------------------------------------------------------------------- /AppliedCryptography.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/AppliedCryptography.sln -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/Contributing.md -------------------------------------------------------------------------------- /DES/DES.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/DES/DES.csproj -------------------------------------------------------------------------------- /DES/DesEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/DES/DesEncryption.cs -------------------------------------------------------------------------------- /DES/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/DES/Program.cs -------------------------------------------------------------------------------- /DigitalSignature/DigitalSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/DigitalSignature/DigitalSignature.cs -------------------------------------------------------------------------------- /DigitalSignature/DigitalSignature.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/DigitalSignature/DigitalSignature.csproj -------------------------------------------------------------------------------- /DigitalSignature/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/DigitalSignature/Program.cs -------------------------------------------------------------------------------- /HMAC/HMAC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HMAC/HMAC.cs -------------------------------------------------------------------------------- /HMAC/HMAC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HMAC/HMAC.csproj -------------------------------------------------------------------------------- /HMAC/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HMAC/Program.cs -------------------------------------------------------------------------------- /HashPassword/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HashPassword/Hash.cs -------------------------------------------------------------------------------- /HashPassword/HashPassword.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HashPassword/HashPassword.csproj -------------------------------------------------------------------------------- /HashPassword/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HashPassword/Program.cs -------------------------------------------------------------------------------- /Hashing/Hashing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/Hashing/Hashing.csproj -------------------------------------------------------------------------------- /Hashing/Hashng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/Hashing/Hashng.cs -------------------------------------------------------------------------------- /Hashing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/Hashing/Program.cs -------------------------------------------------------------------------------- /Hybrid/AesEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/Hybrid/AesEncryption.cs -------------------------------------------------------------------------------- /Hybrid/EncryptedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/Hybrid/EncryptedPacket.cs -------------------------------------------------------------------------------- /Hybrid/Hybrid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/Hybrid/Hybrid.csproj -------------------------------------------------------------------------------- /Hybrid/HybridEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/Hybrid/HybridEncryption.cs -------------------------------------------------------------------------------- /Hybrid/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/Hybrid/Program.cs -------------------------------------------------------------------------------- /Hybrid/RSAWithRSAParameterKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/Hybrid/RSAWithRSAParameterKey.cs -------------------------------------------------------------------------------- /HybridWithIntegrity/AesEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HybridWithIntegrity/AesEncryption.cs -------------------------------------------------------------------------------- /HybridWithIntegrity/EncryptedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HybridWithIntegrity/EncryptedPacket.cs -------------------------------------------------------------------------------- /HybridWithIntegrity/HybridEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HybridWithIntegrity/HybridEncryption.cs -------------------------------------------------------------------------------- /HybridWithIntegrity/HybridWithIntegrity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HybridWithIntegrity/HybridWithIntegrity.csproj -------------------------------------------------------------------------------- /HybridWithIntegrity/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HybridWithIntegrity/Program.cs -------------------------------------------------------------------------------- /HybridWithIntegrity/RSAWithRSAParameterKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HybridWithIntegrity/RSAWithRSAParameterKey.cs -------------------------------------------------------------------------------- /HybridWithIntegrityAndSignature/AesEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HybridWithIntegrityAndSignature/AesEncryption.cs -------------------------------------------------------------------------------- /HybridWithIntegrityAndSignature/DigitalSignature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HybridWithIntegrityAndSignature/DigitalSignature.cs -------------------------------------------------------------------------------- /HybridWithIntegrityAndSignature/EncryptedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HybridWithIntegrityAndSignature/EncryptedPacket.cs -------------------------------------------------------------------------------- /HybridWithIntegrityAndSignature/HybridEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HybridWithIntegrityAndSignature/HybridEncryption.cs -------------------------------------------------------------------------------- /HybridWithIntegrityAndSignature/HybridWithIntegrityAndSignature.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HybridWithIntegrityAndSignature/HybridWithIntegrityAndSignature.csproj -------------------------------------------------------------------------------- /HybridWithIntegrityAndSignature/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HybridWithIntegrityAndSignature/Program.cs -------------------------------------------------------------------------------- /HybridWithIntegrityAndSignature/RSAWithRSAParameterKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/HybridWithIntegrityAndSignature/RSAWithRSAParameterKey.cs -------------------------------------------------------------------------------- /KV_DigitalSignatures/DigitalSignatures.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_DigitalSignatures/DigitalSignatures.csproj -------------------------------------------------------------------------------- /KV_DigitalSignatures/FakeKeyVault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_DigitalSignatures/FakeKeyVault.cs -------------------------------------------------------------------------------- /KV_DigitalSignatures/Hash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_DigitalSignatures/Hash.cs -------------------------------------------------------------------------------- /KV_DigitalSignatures/IKeyVault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_DigitalSignatures/IKeyVault.cs -------------------------------------------------------------------------------- /KV_DigitalSignatures/KeyVault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_DigitalSignatures/KeyVault.cs -------------------------------------------------------------------------------- /KV_DigitalSignatures/KeyVaultBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_DigitalSignatures/KeyVaultBase.cs -------------------------------------------------------------------------------- /KV_DigitalSignatures/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_DigitalSignatures/Program.cs -------------------------------------------------------------------------------- /KV_HybridWithIntegrityAndSignature/AesEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_HybridWithIntegrityAndSignature/AesEncryption.cs -------------------------------------------------------------------------------- /KV_HybridWithIntegrityAndSignature/EncryptedPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_HybridWithIntegrityAndSignature/EncryptedPacket.cs -------------------------------------------------------------------------------- /KV_HybridWithIntegrityAndSignature/HybridEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_HybridWithIntegrityAndSignature/HybridEncryption.cs -------------------------------------------------------------------------------- /KV_HybridWithIntegrityAndSignature/HybridWithIntegrityAndSignature.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_HybridWithIntegrityAndSignature/HybridWithIntegrityAndSignature.csproj -------------------------------------------------------------------------------- /KV_HybridWithIntegrityAndSignature/IKeyVault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_HybridWithIntegrityAndSignature/IKeyVault.cs -------------------------------------------------------------------------------- /KV_HybridWithIntegrityAndSignature/KeyVault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_HybridWithIntegrityAndSignature/KeyVault.cs -------------------------------------------------------------------------------- /KV_HybridWithIntegrityAndSignature/KeyVaultBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_HybridWithIntegrityAndSignature/KeyVaultBase.cs -------------------------------------------------------------------------------- /KV_HybridWithIntegrityAndSignature/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_HybridWithIntegrityAndSignature/Program.cs -------------------------------------------------------------------------------- /KV_KeyWrapping/AesEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_KeyWrapping/AesEncryption.cs -------------------------------------------------------------------------------- /KV_KeyWrapping/IKeyVault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_KeyWrapping/IKeyVault.cs -------------------------------------------------------------------------------- /KV_KeyWrapping/KeyVault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_KeyWrapping/KeyVault.cs -------------------------------------------------------------------------------- /KV_KeyWrapping/KeyVaultBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_KeyWrapping/KeyVaultBase.cs -------------------------------------------------------------------------------- /KV_KeyWrapping/KeyWrapping.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_KeyWrapping/KeyWrapping.csproj -------------------------------------------------------------------------------- /KV_KeyWrapping/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_KeyWrapping/Program.cs -------------------------------------------------------------------------------- /KV_KeyWrapping/SecureRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_KeyWrapping/SecureRandom.cs -------------------------------------------------------------------------------- /KV_PasswordProtection/IKeyVault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_PasswordProtection/IKeyVault.cs -------------------------------------------------------------------------------- /KV_PasswordProtection/KeyVault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_PasswordProtection/KeyVault.cs -------------------------------------------------------------------------------- /KV_PasswordProtection/KeyVaultBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_PasswordProtection/KeyVaultBase.cs -------------------------------------------------------------------------------- /KV_PasswordProtection/PBKDF2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_PasswordProtection/PBKDF2.cs -------------------------------------------------------------------------------- /KV_PasswordProtection/PasswordProtection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_PasswordProtection/PasswordProtection.csproj -------------------------------------------------------------------------------- /KV_PasswordProtection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_PasswordProtection/Program.cs -------------------------------------------------------------------------------- /KV_PasswordProtection/SecureRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_PasswordProtection/SecureRandom.cs -------------------------------------------------------------------------------- /KV_Secrets/IKeyVault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_Secrets/IKeyVault.cs -------------------------------------------------------------------------------- /KV_Secrets/KeyVault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_Secrets/KeyVault.cs -------------------------------------------------------------------------------- /KV_Secrets/KeyVaultBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_Secrets/KeyVaultBase.cs -------------------------------------------------------------------------------- /KV_Secrets/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_Secrets/Program.cs -------------------------------------------------------------------------------- /KV_Secrets/Secrets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_Secrets/Secrets.csproj -------------------------------------------------------------------------------- /KV_SimpleEncryptDecrypt/IKeyVault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_SimpleEncryptDecrypt/IKeyVault.cs -------------------------------------------------------------------------------- /KV_SimpleEncryptDecrypt/KeyVault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_SimpleEncryptDecrypt/KeyVault.cs -------------------------------------------------------------------------------- /KV_SimpleEncryptDecrypt/KeyVaultBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_SimpleEncryptDecrypt/KeyVaultBase.cs -------------------------------------------------------------------------------- /KV_SimpleEncryptDecrypt/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_SimpleEncryptDecrypt/Program.cs -------------------------------------------------------------------------------- /KV_SimpleEncryptDecrypt/SimpleEncryptDecrypt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/KV_SimpleEncryptDecrypt/SimpleEncryptDecrypt.csproj -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PBKDF2/PBKDF2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/PBKDF2/PBKDF2.cs -------------------------------------------------------------------------------- /PBKDF2/PBKDF2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/PBKDF2/PBKDF2.csproj -------------------------------------------------------------------------------- /PBKDF2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/PBKDF2/Program.cs -------------------------------------------------------------------------------- /ProofOfWorkTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/ProofOfWorkTest/Program.cs -------------------------------------------------------------------------------- /ProofOfWorkTest/ProofOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/ProofOfWorkTest/ProofOfWork.cs -------------------------------------------------------------------------------- /ProofOfWorkTest/ProofOfWorkTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/ProofOfWorkTest/ProofOfWorkTest.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/README.md -------------------------------------------------------------------------------- /RSA/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/RSA/Program.cs -------------------------------------------------------------------------------- /RSA/RSA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/RSA/RSA.csproj -------------------------------------------------------------------------------- /RSA/RSAWithCSPKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/RSA/RSAWithCSPKey.cs -------------------------------------------------------------------------------- /RSA/RSAWithRSAParameterKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/RSA/RSAWithRSAParameterKey.cs -------------------------------------------------------------------------------- /RSA/RSAWithXMLKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/RSA/RSAWithXMLKey.cs -------------------------------------------------------------------------------- /RandomNumber/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/RandomNumber/Program.cs -------------------------------------------------------------------------------- /RandomNumber/Random.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/RandomNumber/Random.cs -------------------------------------------------------------------------------- /RandomNumber/RandomNumber.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/RandomNumber/RandomNumber.csproj -------------------------------------------------------------------------------- /TripleDES/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/TripleDES/Program.cs -------------------------------------------------------------------------------- /TripleDES/TripleDES.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/TripleDES/TripleDES.csproj -------------------------------------------------------------------------------- /TripleDES/TripleDesEncryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/TripleDES/TripleDesEncryption.cs -------------------------------------------------------------------------------- /errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/applied-crypto-.net-azure/HEAD/errata.md --------------------------------------------------------------------------------