EncryptionShell.psd1
@{ RootModule = 'EncryptionShell.psm1' Description ='The ES (EncryptionShell) Powershell module is a simple collection of cmdlets for encrypting and decrypting data.' ModuleVersion = '0.0.0' Author = 'Pietro Ciaccio | LinkedIn: https://www.linkedin.com/in/pietrociaccio | Twitter: @PietroCiac' FunctionsToExport = @( 'Get-ESHash' 'Write-ESData' 'Read-ESData' ) GUID = '7fdbf9d9-9ddc-4119-bf8a-2730fb9c3c85' PowerShellVersion = '5.1' PrivateData = @{ PSData = @{ Tags = @('Powershell',"Encryption") ReleaseNotes = @' EncryptionShell # 0.0.0 Initial * Initial release. '@ } } } |