StringEncrypt.psd1

@{
    RootModule        = 'StringEncrypt.psm1'
    ModuleVersion     = '1.0.0'
    GUID              = 'e7f392ee-ab5d-42fa-842a-b58cea114027'
    Author            = 'Bartosz Wójcik'
    CompanyName       = 'PELock'
    Copyright         = '(c) 2026 Bartosz Wójcik / PELock. All rights reserved.'
    Description       = 'PowerShell Gallery Web API client for StringEncrypt. Encrypt strings and generate language-specific decryptors via https://www.stringencrypt.com/api.php.'
    PowerShellVersion = '5.1'
    FunctionsToExport = @(
        'New-StringEncrypt'
    )
    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()
    PrivateData       = @{
        PSData = @{
            Tags         = @(
                'StringEncrypt',
                'Encryption',
                'Obfuscation',
                'PELock',
                'API',
                'Security'
            )
            LicenseUri   = 'https://www.apache.org/licenses/LICENSE-2.0'
            ProjectUri   = 'https://www.stringencrypt.com'
            ReleaseNotes = @'
## 1.0.0

- Initial PowerShell Gallery release
- StringEncrypt class with Command / Language / NewLine enums
- Fluent setters and Send() matching the PHP SDK
- New-StringEncrypt — factory for the client
'@

        }
    }
}