Invoke-Obfuscation.psd1

@{

# Script module or binary module file associated with this manifest.
RootModule = 'Invoke-Obfuscation.psm1'

# Version number of this module.
ModuleVersion = '1.1.0'

# Supported PSEditions
CompatiblePSEditions = 'Desktop', 'Core'

# ID used to uniquely identify this module
GUID = 'c52f98ce-1f63-42f7-9e8a-9e416a10ca63'

# Author of this module
Author = 'CaliNux.ps1'

# Company or vendor of this module
CompanyName = 'NA'

# Description of the functionality provided by this module
Description = 'Invoke-Obfuscation is a PowerShell script that obfuscates a given PowerShell script file by renaming functions and variables, removing comments and unnecessary whitespace, and optionally inserting junk code. It also provides deeper levels of obfuscation, including numeric obfuscation, compression, and encryption.'

# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '5.1'

# Functions to export from this module
FunctionsToExport = '*'

# Cmdlets to export from this module
CmdletsToExport = '*'

# Variables to export from this module
VariablesToExport = '*'

# Aliases to export from this module
AliasesToExport = '*'

# List of all files packaged with this module
FileList = @('Invoke-Obfuscation.psm1')

# Private data to pass to the module specified in RootModule/ModuleToProcess
PrivateData = @{
    PSData = @{

        # Tags applied to this module. These help with module discovery in online galleries.
        Tags = @('Obfuscate', 'Obfuscation', 'Hacking')
        
        # Remove or comment out the Prerelease string of this module
        Prerelease = 'Alpha'

    } # End of PSData hashtable

} # End of PrivateData hashtable

}