Browse Source

Remove silly break point

Oz N Tiram 8 years ago
parent
commit
663a5c0675
1 changed files with 0 additions and 1 deletions
  1. 0 1
      pwman/util/crypto/rijndael.py

+ 0 - 1
pwman/util/crypto/rijndael.py

@@ -429,7 +429,6 @@ def encrypt(key, block):
 
 
 def decrypt(key, block):
-    import pdb; pdb.set_trace()
     return rijndael(key, len(block)).decrypt(block)