Skip to content

lkf57/Base-64-Python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Base-64-Python

About

This program, written in Python 3, does Base 64 encoding and decoding using this process of changing 3 sets of 8 bits into 4 sets of 6-bits:

Original Data: A n d

ASCII Values: 65 110 100

8-bit Values: 01000001 01101110 01100100

6-bit Values: 010000 010110 111001 100100

6-bit Base 10 Values: 16 22 57 36

Base-64 Values: Q W 5 k

The program asks the user if they would like to encode or decode, then promps for a string in the correct format to be encoded or decoded, proforms the correct action, and outputs the result.

Written March 31, 2022 by Lauren Farr.

License

This software is free to use under the MIT License

About

A Base 64 encoder and decoder written in Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages