SecuredArcana.psm1
<#-------------------------------------------------------------------------------------------------
ArcaneBooks - ArcaneBooks.psm1 Author: Robert C. Cain | @ArcaneCode | arcane@arcanetc.com http://arcanecode.me This code is Copyright (c) 2023 Robert C. Cain. All rights reserved. The code herein is for demonstration purposes. No warranty or guarantee is implied or expressly granted. This module may not be reproduced in whole or in part without the express written consent of the author. -----------------------------------------------------------------------------------------------#> # Run the scripts to load the functions into memory . "$PSScriptRoot/Functions/ConvertFrom-SecuredPassword.ps1" . "$PSScriptRoot/Functions/Get-SecuredCredential.ps1" . "$PSScriptRoot/Functions/New-SecureKeyFile.ps1" . "$PSScriptRoot/Functions/Write-SecuredPassword.ps1" . "$PSScriptRoot/Functions/Install-ModuleFromCode.ps1" . "$PSScriptRoot/Functions/Use-ConvertFromSecuredPassword.ps1" . "$PSScriptRoot/Functions/Use-GetSecuredCredential.ps1" . "$PSScriptRoot/Functions/Use-NewSecureKeyFile.ps1" . "$PSScriptRoot/Functions/Use-WriteSecuredPassword.ps1" . "$PSScriptRoot/Functions/Open-AboutArcaneCode.ps1" . "$PSScriptRoot/Functions/Open-SecureArcanaGitHub.ps1" . "$PSScriptRoot/Functions/Get-SecureArcanaCommands.ps1" |