├── .gitignore ├── Authentication ├── Winapi.Schannel.pas └── Winapi.Sspi.pas ├── Cryptography ├── Winapi.BCrypt.pas ├── Winapi.NCrypt.pas ├── Winapi.NCryptProtect.pas ├── Winapi.SslProvider.pas └── Winapi.WinCrypt.pas ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicxor/WinCryptographyAPIs/HEAD/.gitignore -------------------------------------------------------------------------------- /Authentication/Winapi.Schannel.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicxor/WinCryptographyAPIs/HEAD/Authentication/Winapi.Schannel.pas -------------------------------------------------------------------------------- /Authentication/Winapi.Sspi.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicxor/WinCryptographyAPIs/HEAD/Authentication/Winapi.Sspi.pas -------------------------------------------------------------------------------- /Cryptography/Winapi.BCrypt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicxor/WinCryptographyAPIs/HEAD/Cryptography/Winapi.BCrypt.pas -------------------------------------------------------------------------------- /Cryptography/Winapi.NCrypt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicxor/WinCryptographyAPIs/HEAD/Cryptography/Winapi.NCrypt.pas -------------------------------------------------------------------------------- /Cryptography/Winapi.NCryptProtect.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicxor/WinCryptographyAPIs/HEAD/Cryptography/Winapi.NCryptProtect.pas -------------------------------------------------------------------------------- /Cryptography/Winapi.SslProvider.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicxor/WinCryptographyAPIs/HEAD/Cryptography/Winapi.SslProvider.pas -------------------------------------------------------------------------------- /Cryptography/Winapi.WinCrypt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicxor/WinCryptographyAPIs/HEAD/Cryptography/Winapi.WinCrypt.pas -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicxor/WinCryptographyAPIs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magicxor/WinCryptographyAPIs/HEAD/README.md --------------------------------------------------------------------------------