Skip to content

PowerShell module to help convert strings to and from Base64 encoding

License

Notifications You must be signed in to change notification settings

charliebillen/ConvertBase64Strings

Repository files navigation

Convert Base64 Strings

CI

This module provides two small advanced functions that convert UTF8 strings to and from Base64 encoding.

ConvertFrom-Base64

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

ConvertTo-Base64

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

Installation

Install-Module -Name ConvertBase64Strings

Progress

  • Build process
  • Release process
  • Documentation
  • Script signing

About

PowerShell module to help convert strings to and from Base64 encoding

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published