Skip to content

Extension of the ATL Server CCryptKey Object for AES encryption.

Notifications You must be signed in to change notification settings

evil-e/aescrypt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

aescrypt

aescrypt contains 3 classes which extend the CCryptKey object of the ATL server project. This will make using AES encryption in Windows C++ source code projects very easy.

// Example usage
CCryptImportAES256Key aesKey;
HRESULT hr = aesKey.Initialize(prov, (BYTE*)key, keyLen, CCryptKey::EmptyKey, 0);

hr = aesKey.EncryptString("input string", outputbuf, &outbuflen);

This repository contains atlcrypt.h and atlcrypt.inl from the ATL Server project. The full ATL Server source code can be found at: https://atlserver.codeplex.com/

About

Extension of the ATL Server CCryptKey Object for AES encryption.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages