Posh-SecretSharing.psd1

@{
    RootModule        = 'Posh-SecretSharing.psm1'
    ModuleVersion     = '0.5.0'
    GUID              = '49699a6c-b5d0-4b77-8bfc-5688976c6652'
    Author            = 'MS-LUF'
    CompanyName       = 'lucas-cueff.com'
    Copyright         = '(c) 2026 lucas-cueff.com Distributed under Artistic Licence 2.0 (https://opensource.org/licenses/artistic-license-2.0).'
    Description       = 'Pure PowerShell implementation of Shamir Secret Sharing (SLIP-0039).'
    PowerShellVersion = '5.1'
    FunctionsToExport = @(
        'New-SecretSharingSecret',
        'New-SecretSharingPassword',
        'Split-SecretSharingSecret',
        'Join-SecretSharingSecret'
    )
    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()
    FileList          = @('Posh-SecretSharing.psm1')
    PrivateData       = @{
        PSData = @{
            Tags = @('Security', 'Cryptography', 'ShamirSecretSharing', 'SLIP-0039')
            LicenseUri = 'https://opensource.org/licenses/artistic-license-2.0'
            ProjectUri = 'https://github.com/MS-LUF/Posh-SecretSharing'
            ReleaseNotes = 'v0.5.0 - first release of the module. See README.md for information.'
        }
    }
}