(self)
| 610 | ) |
| 611 | |
| 612 | def test_case_md5_2(self): |
| 613 | self.check( |
| 614 | 'md5', |
| 615 | b'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789', |
| 616 | 'd174ab98d277d9f5a5611c2c9f419d9f', |
| 617 | usedforsecurity=False |
| 618 | ) |
| 619 | |
| 620 | @unittest.skipIf(sys.maxsize < _4G + 5, 'test cannot run on 32-bit systems') |
| 621 | @bigmemtest(size=_4G + 5, memuse=1, dry_run=False) |