Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Author: Google | |
| 2 # See the LICENSE file for legal information regarding use of this file. | |
| 3 | |
| 4 """Pure-Python AES-GCM implementation.""" | |
| 5 | |
| 6 from .aesgcm import AESGCM | |
| 7 from .rijndael import rijndael | |
| 8 | |
| 9 | |
|
agl
2015/01/29 19:38:17
extra blank line not needed?
davidben
2015/01/29 21:40:59
Done.
| |
| 10 def new(key): | |
| 11 return AESGCM(key, "python", rijndael(key, 16).encrypt) | |
| OLD | NEW |