コード例 #1
0
ファイル: blockalgo.py プロジェクト: Legrandin/pycrypto
 def copy(self):
     clone = _GHASH(self._hash_subkey, self._bs, table_size='0K')
     _SmoothMAC._deep_copy(self, clone)
     clone._last_y = self._last_y
     return clone
コード例 #2
0
 def copy(self):
     clone = _GHASH(self._hash_subkey, self._bs)
     _SmoothMAC._deep_copy(self, clone)
     clone._last_y = self._last_y
     return clone
コード例 #3
0
ファイル: _mode_gcm.py プロジェクト: hannesvn/pycryptodome
 def copy(self):
     clone = _GHASH(self._key, self._bs)
     _SmoothMAC._deep_copy(self, clone)
     clone._last_y = self._last_y
     return clone