This module provides two small advanced functions that convert UTF8 strings to and from Base64 encoding.
NAME
ConvertFrom-Base64
SYNOPSIS
Converts a Base64 encoded string to UTF8
SYNTAX
ConvertFrom-Base64 [-String] <String> [<CommonParameters>]
DESCRIPTION
Delegates to the underlying System.Text.Encoding and System.Convert classes
to convert the Base64 input string to a byte[] and then back to a UTF8 string
NAME
ConvertTo-Base64
SYNOPSIS
Converts a UTF string to Base64
SYNTAX
ConvertTo-Base64 [-String] <String> [<CommonParameters>]
DESCRIPTION
Delegates to the underlying System.Text.Encoding and System.Convert classes
to convert the UTF8 input string to a byte[] and then back to Base64
Install-Module -Name ConvertBase64Strings
- Build process
- Release process
- Documentation
- Script signing