(self)
| 1997 | |
| 1998 | @skip_libssl_fips_mode |
| 1999 | def test_md5_algorithm(self): |
| 2000 | H, KD = self.handler.get_algorithm_impls('MD5') |
| 2001 | self.assertEqual(H("foo"), "acbd18db4cc2f85cedef654fccc4a4d8") |
| 2002 | self.assertEqual(KD("foo", "bar"), "4e99e8c12de7e01535248d2bac85e732") |
| 2003 | |
| 2004 | @skip_libssl_fips_mode |
| 2005 | def test_sha_algorithm(self): |
nothing calls this directly
no test coverage detected