entropy.psd1

@{
  RootModule = 'entropy.psm1'
  ModuleVersion = '1.0.0.0'
  CompatiblePSEditions = 'Core'
  GUID = '9665407c-6c96-4e9c-bed8-71728116fc00'
  Author = 'greg zakharov'
  Copyright = 'MIT'
  Description = 'Calculate the entropy of a byte array.'
  PowerShellVersion = '6.1'
  AliasesToExport = 'ent'
  FunctionsToExport = 'Get-Entropy'
  FileList = @(
    'entropy.psd1',
    'entropy.psm1'
  )
}