Metadata-Version: 2.1
Name: secure-pickle
Version: 0.0.2
Summary: A small package which can add HMACs to pickle files for integrity checks upon unpickling
Project-URL: Homepage, https://github.com/Ethan-Dowalter/secure-pickle-files
Project-URL: Bug Tracker, https://github.com/Ethan-Dowalter/secure-pickle-files/issues
Author-email: Ethan Dowalter <edowalte@uwyo.edu>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# secure-pickle-files
The "pickle" package in python enables users to export almost any type of object containing data to an external file. This file can then be simply loaded into memory whenever the need for the object arises, as opposed to regenerating the object each time. The main application of this package is for objects which are computationally expensive to generate, such as machine learning models. This repo contains a python package which streamlines the process of ensuring the integrity of a pickle file by attaching a hash-based message authentication code (HMAC) with it.

## Usage

To use this package simply run the command 'pip3 install secure-pickle' and 
