Skip to content

Nefilime/base64-powershell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

base64-powershell

Little PS module for base64 encoding and decoding.

   Import-Module .\base64-powershell\base64.psm1
  1. ConvertTo-Base64:

    • This function encodes text into Base64 format.
    • It takes one argument: the text to be encoded.
    • It returns a Base64-encoded string.
    • Example usage:
         "Hello, World!" | ConvertTo-Base64
  2. ConvertFrom-Base64:

    • This function decodes a Base64 string back into plain text.
    • It takes one argument: a Base64-encoded string.
    • It returns the original text.
    • Example usage:
         "SGVsbG8sIFdvcmxkIQ==" | ConvertFrom-Base64

About

Base64 like Cmdlet for PowerShell.

Resources

License

Stars

Watchers

Forks