SimpleSodiumPS.psd1

@{
    RootModule           = 'SimpleSodiumPS.psm1'
    ModuleVersion        = '0.0.1'
    CompatiblePSEditions = @('Core')
    GUID                 = 'ce260d5f-5080-4a9c-96bc-9673bd83d0a7'
    Author               = 'Jonatan Rek'
    CompanyName          = 'SteelAnts'
    Copyright            = '(c) 2026 Jonatan Rek. All rights reserved.'
    Description          = 'libsodium secretbox (XSalsa20-Poly1305) encrypt/decrypt cmdlets for PowerShell 7. Automatically downloads libsodium from NuGet on first use.'
    PowerShellVersion    = '7.0'

    FunctionsToExport    = @('ConvertFrom-SodiumString','ConvertTo-SodiumString')
    CmdletsToExport      = @()
    VariablesToExport    = @()
    AliasesToExport      = @()

    PrivateData          = @{
        PSData = @{
            Tags       = @('libsodium', 'sodium', 'encryption', 'secretbox', 'cryptography', 'XSalsa20', 'Poly1305')
            ProjectUri = 'https://git.steelants.cz/JonatanRek/SimpleSodiumPS'
        }
    }
}