Skip to content
This repository has been archived by the owner on Jun 11, 2023. It is now read-only.

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
xymy committed Mar 21, 2020
1 parent a92dd5c commit c0d3026
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/xycrypto/padding.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@


class PadderContext(metaclass=abc.ABCMeta):
"""Abstract base class for padder context."""

def __init__(self, block_size):
"""Initialize the current context."""

Expand All @@ -31,6 +33,8 @@ def _pad(padded_size):


class UnpadderContext(metaclass=abc.ABCMeta):
"""Abstract base class for unpadder context."""

def __init__(self, block_size):
"""Initialize the current context."""

Expand Down

0 comments on commit c0d3026

Please sign in to comment.