├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── validate.yml ├── LICENSE ├── PSEncrypt ├── LICENSE ├── PSEncrypt.Format.ps1xml ├── PSEncrypt.Types.ps1xml ├── PSEncrypt.psd1 ├── PSEncrypt.psm1 ├── changelog.md ├── functions │ ├── Export-PseCertificate.ps1 │ ├── Get-PseCertificate.ps1 │ ├── Get-PseContact.ps1 │ ├── Import-PseContact.ps1 │ ├── New-PseCertificate.ps1 │ ├── Protect-PseDocument.ps1 │ ├── Remove-PseContact.ps1 │ ├── Set-PseCertificate.ps1 │ ├── Unprotect-PseDocument.ps1 │ └── readme.md └── internal │ ├── functions │ ├── New-ErrorRecord.ps1 │ ├── Resolve-PathEx.ps1 │ ├── Show-SaveFileDialog.ps1 │ └── readme.md │ └── scripts │ ├── initialize.ps1 │ ├── readme.md │ └── tabcompletion.ps1 ├── readme.md └── tests ├── functions └── readme.md ├── general ├── FileIntegrity.Exceptions.ps1 ├── FileIntegrity.Tests.ps1 ├── Help.Exceptions.ps1 ├── Help.Tests.ps1 ├── Manifest.Tests.ps1 └── PSScriptAnalyzer.Tests.ps1 ├── pester.ps1 └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/LICENSE -------------------------------------------------------------------------------- /PSEncrypt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/LICENSE -------------------------------------------------------------------------------- /PSEncrypt/PSEncrypt.Format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/PSEncrypt.Format.ps1xml -------------------------------------------------------------------------------- /PSEncrypt/PSEncrypt.Types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/PSEncrypt.Types.ps1xml -------------------------------------------------------------------------------- /PSEncrypt/PSEncrypt.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/PSEncrypt.psd1 -------------------------------------------------------------------------------- /PSEncrypt/PSEncrypt.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/PSEncrypt.psm1 -------------------------------------------------------------------------------- /PSEncrypt/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/changelog.md -------------------------------------------------------------------------------- /PSEncrypt/functions/Export-PseCertificate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/functions/Export-PseCertificate.ps1 -------------------------------------------------------------------------------- /PSEncrypt/functions/Get-PseCertificate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/functions/Get-PseCertificate.ps1 -------------------------------------------------------------------------------- /PSEncrypt/functions/Get-PseContact.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/functions/Get-PseContact.ps1 -------------------------------------------------------------------------------- /PSEncrypt/functions/Import-PseContact.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/functions/Import-PseContact.ps1 -------------------------------------------------------------------------------- /PSEncrypt/functions/New-PseCertificate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/functions/New-PseCertificate.ps1 -------------------------------------------------------------------------------- /PSEncrypt/functions/Protect-PseDocument.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/functions/Protect-PseDocument.ps1 -------------------------------------------------------------------------------- /PSEncrypt/functions/Remove-PseContact.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/functions/Remove-PseContact.ps1 -------------------------------------------------------------------------------- /PSEncrypt/functions/Set-PseCertificate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/functions/Set-PseCertificate.ps1 -------------------------------------------------------------------------------- /PSEncrypt/functions/Unprotect-PseDocument.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/functions/Unprotect-PseDocument.ps1 -------------------------------------------------------------------------------- /PSEncrypt/functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/functions/readme.md -------------------------------------------------------------------------------- /PSEncrypt/internal/functions/New-ErrorRecord.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/internal/functions/New-ErrorRecord.ps1 -------------------------------------------------------------------------------- /PSEncrypt/internal/functions/Resolve-PathEx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/internal/functions/Resolve-PathEx.ps1 -------------------------------------------------------------------------------- /PSEncrypt/internal/functions/Show-SaveFileDialog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/internal/functions/Show-SaveFileDialog.ps1 -------------------------------------------------------------------------------- /PSEncrypt/internal/functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/internal/functions/readme.md -------------------------------------------------------------------------------- /PSEncrypt/internal/scripts/initialize.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/internal/scripts/initialize.ps1 -------------------------------------------------------------------------------- /PSEncrypt/internal/scripts/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/internal/scripts/readme.md -------------------------------------------------------------------------------- /PSEncrypt/internal/scripts/tabcompletion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/PSEncrypt/internal/scripts/tabcompletion.ps1 -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/readme.md -------------------------------------------------------------------------------- /tests/functions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/tests/functions/readme.md -------------------------------------------------------------------------------- /tests/general/FileIntegrity.Exceptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/tests/general/FileIntegrity.Exceptions.ps1 -------------------------------------------------------------------------------- /tests/general/FileIntegrity.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/tests/general/FileIntegrity.Tests.ps1 -------------------------------------------------------------------------------- /tests/general/Help.Exceptions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/tests/general/Help.Exceptions.ps1 -------------------------------------------------------------------------------- /tests/general/Help.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/tests/general/Help.Tests.ps1 -------------------------------------------------------------------------------- /tests/general/Manifest.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/tests/general/Manifest.Tests.ps1 -------------------------------------------------------------------------------- /tests/general/PSScriptAnalyzer.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/tests/general/PSScriptAnalyzer.Tests.ps1 -------------------------------------------------------------------------------- /tests/pester.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/tests/pester.ps1 -------------------------------------------------------------------------------- /tests/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FriedrichWeinmann/PSEncrypt/HEAD/tests/readme.md --------------------------------------------------------------------------------