Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
.. image:: https://travis-ci.org/joeblackwaslike/base58check.svg?branch=master :target: https://travis-ci.org/joeblackwaslike/base58check :alt: Build Status
.. image:: https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat :target: https://github.com/joeblackwaslike/base58check :alt: Github Repo
.. image:: https://img.shields.io/pypi/v/base58check.svg :target: https://pypi.python.org/pypi/base58check :alt: Pypi Version
.. image:: https://img.shields.io/pypi/l/base58check.svg :target: https://pypi.python.org/pypi/base58check :alt: Pypi License
.. image:: https://img.shields.io/pypi/wheel/base58check.svg :target: https://pypi.python.org/pypi/base58check :alt: Pypi Wheel
.. image:: https://img.shields.io/pypi/pyversions/base58check.svg :target: https://pypi.python.org/pypi/base58check :alt: Pypi Versions
Joe Black | me@joeblack.nyc | github <https://github.com/joeblackwaslike>
_
A python implementation of the Base58Check encoding scheme.
The Base58Check encoding scheme is a modified Base 58 binary-to-text encoding. More generically, Base58Check encoding is used for encoding byte arrays in Bitcoin into human-typable strings.
PLEASE NOTE\ : For consistency with encoding schemes in python, encode inputs must be bytes and will be enforced. Use .encode('ascii')
on text input to encode to bytes.
.. code-block:: shell
pip3 install base58check
.. code-block:: python
import base58check
encoding ^^^^^^^^
.. code-block:: python
base58check.b58encode(b'1BoatSLRHtKNngkdXEeobR76b53LETtpyT') b'\x00v\x80\xad\xec\x8e\xab\xca\xba\xc6v\xbe\x9e\x83\x85J\xde\x0b\xd2,\xdb\x0b\xb9`\xde'
decoding (input can be text or bytes here) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.. code-block:: python
base58check.b58decode('\x00v\x80\xad\xec\x8e\xab\xca\xba\xc6v\xbe\x9e\x83\x85J\xde\x0b\xd2,\xdb\x0b\xb9`\xde') b'1BoatSLRHtKNngkdXEeobR76b53LETtpyT'
CHANGELOG <CHANGELOG.md>
_FAQs
Base58check encoding and decoding of binary data
We found that base58check demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.