PSCompareHash.psd1

@{
    RootModule = 'PSCompareHash.psm1'
    ModuleVersion = '1.1.0'
    CompatiblePSEditions = @('Desktop', 'Core')
    GUID = '6e42b8e7-8f2f-4898-bc45-48c8a91cdb5b'
    Author = 'kalichuza'
    CompanyName = 'kalichuza'
    Description = 'A module for comparing file hashes and generating independent object hashes.'
    PowerShellVersion = '5.1'
    RequiredModules = @()
    RequiredAssemblies = @()
    FunctionsToExport = @('Test-FileHash', 'Get-ObjectHash')
    CmdletsToExport = @()
    VariablesToExport = @()
    AliasesToExport = @()
    NestedModules = @()
    DscResourcesToExport = @()
    FileList = @()
    PrivateData = @{
        PSData = @{
            Tags = @('Hashing', 'Security', 'Comparison')
            ReleaseNotes = 'Fixed directory hashing in Test-FileHash and ensured proper function exports.'
        }
    }
    HelpInfoURI = ''
    DefaultCommandPrefix = ''
}