From 1dac2263372df2b85db5d029a45721fa158a5c9d Mon Sep 17 00:00:00 2001 From: xiubuzhe Date: Sun, 8 Oct 2023 20:59:00 +0800 Subject: first add files --- lib/Crypto/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 lib/Crypto/__init__.py (limited to 'lib/Crypto/__init__.py') diff --git a/lib/Crypto/__init__.py b/lib/Crypto/__init__.py new file mode 100644 index 0000000..9c2f83b --- /dev/null +++ b/lib/Crypto/__init__.py @@ -0,0 +1,6 @@ +__all__ = ['Cipher', 'Hash', 'Protocol', 'PublicKey', 'Util', 'Signature', + 'IO', 'Math'] + +version_info = (3, 15, '0') + +__version__ = ".".join([str(x) for x in version_info]) -- cgit v1.2.3