Skip to content

Commit

Permalink
removed unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
froznsm committed Feb 3, 2021
1 parent e5b8730 commit c4da818
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/AES_generator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from time import perf_counter


def mult_gal(a, b):
Expand Down
3 changes: 1 addition & 2 deletions tests/test_AES_encrypt.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from time import perf_counter
from os import urandom, getcwd
from os.path import isfile, join, splitext, expanduser
from os.path import join
import pytest
import ctypes
import pyaes
Expand Down
6 changes: 2 additions & 4 deletions wrapper.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import ctypes
from os.path import isfile, join, splitext, expanduser, exists
from os import cpu_count, getcwd, urandom, mkdir
from os.path import exists, isfile, join
from os import cpu_count, getcwd, mkdir
from subprocess import check_output
import hashlib
import binascii
import click
from src.key_expansion import expand_key
from src.AES_generator import gen_mult_lookup, gen_sbox, gen_inverse_sbox
Expand Down Expand Up @@ -80,7 +79,6 @@ def setup():
@click.group()
def cli():
"""AES-128 encryption and decryption for text and files"""
pass


def pad_input(ba):
Expand Down

0 comments on commit c4da818

Please sign in to comment.