MappingEncrypt.psd1
|
@{ RootModule = 'MappingEncrypt.psm1' ModuleVersion = '0.2.1' GUID = 'da609008-476d-46bb-af17-4a440499061d' Author = 'MD Faisal Qureshi' CompanyName = 'MD Faisal Qureshi' Copyright = '(c) 2024 MD Faisal Qureshi. All rights reserved.' Description = 'A custom character encoding module for encrypting PowerShell scripts. PowerShell port of the mapping-encrypt package; uses the same private Cloudflare mapping worker.' PowerShellVersion = '5.1' FunctionsToExport = @( 'ConvertTo-MappingEncoded', 'ConvertFrom-MappingEncoded', 'Protect-MappingScript', 'Unprotect-MappingScript', 'Invoke-MappingPackage' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @('mapping-encode', 'mapping-decode') PrivateData = @{ PSData = @{ Tags = @('encoding', 'encryption', 'obfuscation', 'mapping', 'cloudflare', 'protect') LicenseUri = 'https://github.com/mfq2412/Mapping/blob/main/LICENSE' ProjectUri = 'https://github.com/mfq2412/Mapping' ReleaseNotes = 'PowerShell port with encode/decode behavior identical to the Python mapping-encrypt package, backed by the shared Cloudflare mapping worker.' } } } |