PS_EncryptedCredentials.psd1

@{
    RootModule        = 'PS_EncryptedCredentials.psm1'
    ModuleVersion     = '1.0.2'
    GUID              = 'a1b2c3d4-e5f6-4a5b-8c9d-0e1f2a3b4d5e'
    Author            = 'Jared Heinrichs'
    CompanyName       = 'https://jaredheinrichs.substack.com'
    Copyright         = '(c) 2026. All rights reserved.'
    Description       = 'A module for managing encrypted PowerShell credentials stored as XML files using DPAPI encryption.'
    PowerShellVersion = '5.1'
    
    FunctionsToExport = @(
        'Set-EncryptedCredentialXML',
        'Get-EncryptedCredentialXML'
    )
    
    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()
    
    PrivateData = @{
        PSData = @{
            Tags       = @('Credentials', 'Security', 'Encryption', 'DPAPI', 'XML')
            ProjectUri = 'https://jaredheinrichs.substack.com'
            LicenseUri = 'https://jaredheinrichs.substack.com'
            ReleaseNotes = '1.0.0 - Initial release'
        }
    }
}