Skip to content

This module contains cryptography handling functions to implement in a Python project.

License

Notifications You must be signed in to change notification settings

osfunapps/os-crypto-py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

This module contains cryptography handling functions to implement in a Python project.

Installation

Install via pip:

pip install os-crypto-handler

Usage

Require the toolbox:

from os_crypto import crypto_tools

crpyto tools

# will encrypt a data block
def encrypt(data, key, iv, mode=AES.MODE_CBC, padding_size=AES.block_size)


# will decrypt a data block
def decrypt(data, key, iv, mode=AES.MODE_CBC, padding_size=AES.block_size)

Links

GitHub - osapps

Licence

ISC# os-crypto-py

About

This module contains cryptography handling functions to implement in a Python project.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages