📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

str-basic-encryption

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

str-basic-encryption

Simple library to encrypt strings with MD5, SHA256 and SHA512 hashes

0.0.1
PyPI
Maintainers
1

String Basic Encryption

Python simple library to encrypt strings with MD5, SHA256 and SHA512 hashes

Installation

pip install str-basic-encryption

Usage

Basic Usage:

from str_basic_encryption import StrEncryption

encryptor = StrEncryption()

some_text = "Hello World!"
result = encryptor.str2md5(some_text)
print(f"Encrypted String: {result}")

Keywords

str

FAQs

Did you know?

Socket

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.

Install

Related posts