StringCertProtection.psd1

@{
    RootModule = 'MG.Encryption.dll'
    GUID = '17353e9a-7625-4340-a797-96cd9d9334f5'
    # CompatiblePSEditions = @()
    Description = 'A set of cmdlets to encrypt/decrypt sensitive strings using certificate-based encryption methods.'
    Author = 'Mike Garvey'
    CompanyName = 'Yevrag35, LLC.'
    Copyright = '(c) 2018 Yevrag35, LLC. All rights reserved.'
    ModuleVersion = '1.0.1'
    PowerShellVersion = '5.0'
    # PowerShellHostName = ''
    # PowerShellHostVersion = ''
    DotNetFrameworkVersion = '4.7.2'
    # RequiredModules = @()
    RequiredAssemblies = @(
        'System.Net',
        'System.Security'
    )
    FunctionsToExport = ''
    AliasesToExport = ''
    # FormatsToProcess = @()
    # ScriptsToProcess = @()
    # TypesToProcess = @()
    CmdletsToExport = @(
        'Protect-String',
        'Unprotect-String'
    )
    # NestedModules = @()
    VariablesToExport = ''
    FileList = @(
        'MG.Encryption.dll',
        'StringCertProtection.psd1'
    )
    PrivateData = @{
        PSData = @{
            Tags = 'Encryption', 'Certificate', 'SHA256', 'Protect', 'String', 'Encrypt', 'Decrypt',
                'Module', 'Cmdlet', 'Credential', 'SecureString', 'Plain', 'Text', 'Unprotect'
            # LicenseUri = ''
            ProjectUri = 'https://git.yevrag35.com/gityev/mg.encryption.git'
            # IconUri = ''
            ReleaseNotes = 'Removed the upper character limit on the Base64 strings.'
        }
    }
}