(self)
| 683 | ) |
| 684 | |
| 685 | def test_case_md5_2(self): |
| 686 | self.check( |
| 687 | 'md5', |
| 688 | b'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789', |
| 689 | 'd174ab98d277d9f5a5611c2c9f419d9f', |
| 690 | usedforsecurity=False |
| 691 | ) |
| 692 | |
| 693 | @unittest.skipIf(sys.maxsize < _4G + 5, 'test cannot run on 32-bit systems') |
| 694 | @bigmemtest(size=_4G + 5, memuse=1, dry_run=False) |