Encoding and Decoding Base64 Strings in Python
Δημοσιευμένα 2023-03-10 20:59:12
0
10χλμ.
The Base64 encoding is used to convert bytes that have binary or text data into ASCII characters. Encoding prevents the data from getting corrupted when it is transferred or processed through a text-only system. In this article, we will discuss about Base64 encoding and decoding and its uses to encode and decode binary and text data. Each Base64 character represents 6 bits of data. it is also important to note that it is not meant for encryption for obvious reasons.
import
base64
sample_string
=
"Hello world!"
sample_string_bytes
=
sample_string.encode(
"ascii"
)
base64_bytes
=
base64.b64encode(sample_string_bytes)
base64_string
=
base64_bytes.decode(
"ascii"
)
print
(
base64_string
)
Αναζήτηση
Κατηγορίες
- Arts
- Business
- Computers
- Παιχνίδια
- Health
- Κεντρική Σελίδα
- Kids and Teens
- Money
- News
- Recreation
- Reference
- Regional
- Science
- Shopping
- Society
- Sports
- Бизнес
- Деньги
- Дом
- Досуг
- Здоровье
- Игры
- Искусство
- Источники информации
- Компьютеры
- Наука
- Новости и СМИ
- Общество
- Покупки
- Спорт
- Страны и регионы
- World
Διαβάζω περισσότερα
Star Wars: Episode VI - Return of the Jedi. (1983)
After a daring mission to rescue Han Solo from Jabba the Hutt, the Rebels dispatch to Endor to...
How to Find and Where to Use Competitors' Databases: A Full Review
When the competition in the niche becomes very high, it becomes difficult to find new customers....
Why is Minecraft such a good game?
Introduction:
Minecraft is a game that has proven to have longevity, no matter what game is the...
How Do I Build the Right Team?
Building the right team is one of the most critical steps in achieving success for your business....
10% of the crew survived: how the Philadelphia experiment actually ended
The Philadelphia Experiment is a classified US Navy experiment staged on October 28, 1943 with...