Project Description
The project is providing a set of handy Powershell cmdlets to do encryption\decryption\hash computation.

For example:

Import-Module CryptModule.dll

Encrypt-Item -File a.doc -Algorithm (AES ..) (It will prompt for key)
Encrypt-Item -Content 'xxx' -Algorithm (AES ..) (It will prompt for key)


Decrypt-Item -File a.enc -Algorithm (AES ..) (It will prompt for key)
Decrypt-Item -Content 'xxx' -Algorithm (AES ..) (It will prompt for key)