├── .editorconfig ├── .gitattributes ├── .gitignore ├── Mdcrypt.sln ├── Mdcrypt ├── Mdcrypt.csproj ├── MdcryptContext.cs ├── MdcryptEngine.cs ├── MdcryptException.cs ├── MdcryptUtils.cs ├── Protection.cs ├── ProtectionParameters.cs ├── ProtectionPhase.cs ├── ProtectionPipeline.cs └── UnreachableException.cs └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/Mdcrypt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/Mdcrypt/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/Mdcrypt/HEAD/.gitignore -------------------------------------------------------------------------------- /Mdcrypt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/Mdcrypt/HEAD/Mdcrypt.sln -------------------------------------------------------------------------------- /Mdcrypt/Mdcrypt.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/Mdcrypt/HEAD/Mdcrypt/Mdcrypt.csproj -------------------------------------------------------------------------------- /Mdcrypt/MdcryptContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/Mdcrypt/HEAD/Mdcrypt/MdcryptContext.cs -------------------------------------------------------------------------------- /Mdcrypt/MdcryptEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/Mdcrypt/HEAD/Mdcrypt/MdcryptEngine.cs -------------------------------------------------------------------------------- /Mdcrypt/MdcryptException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/Mdcrypt/HEAD/Mdcrypt/MdcryptException.cs -------------------------------------------------------------------------------- /Mdcrypt/MdcryptUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/Mdcrypt/HEAD/Mdcrypt/MdcryptUtils.cs -------------------------------------------------------------------------------- /Mdcrypt/Protection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/Mdcrypt/HEAD/Mdcrypt/Protection.cs -------------------------------------------------------------------------------- /Mdcrypt/ProtectionParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/Mdcrypt/HEAD/Mdcrypt/ProtectionParameters.cs -------------------------------------------------------------------------------- /Mdcrypt/ProtectionPhase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/Mdcrypt/HEAD/Mdcrypt/ProtectionPhase.cs -------------------------------------------------------------------------------- /Mdcrypt/ProtectionPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/Mdcrypt/HEAD/Mdcrypt/ProtectionPipeline.cs -------------------------------------------------------------------------------- /Mdcrypt/UnreachableException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/Mdcrypt/HEAD/Mdcrypt/UnreachableException.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/Mdcrypt/HEAD/README.md --------------------------------------------------------------------------------