diff options
| author | J08nY | 2022-06-22 17:22:49 +0200 |
|---|---|---|
| committer | J08nY | 2022-06-22 17:22:49 +0200 |
| commit | f550a366fe10e30cda76f3b36ea322b024c5f7fb (patch) | |
| tree | 866dfac2a524c5b712ffacdd828312b0d2d47e52 | |
| parent | 747f4ae880ae390bd3fa829242b3a811294a85ec (diff) | |
| download | sec-certs-f550a366fe10e30cda76f3b36ea322b024c5f7fb.tar.gz sec-certs-f550a366fe10e30cda76f3b36ea322b024c5f7fb.tar.zst sec-certs-f550a366fe10e30cda76f3b36ea322b024c5f7fb.zip | |
Fix loading of CC InternalState with hashes in it.
| -rw-r--r-- | sec_certs/sample/common_criteria.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sec_certs/sample/common_criteria.py b/sec_certs/sample/common_criteria.py index ae5a171d..ac4163f4 100644 --- a/sec_certs/sample/common_criteria.py +++ b/sec_certs/sample/common_criteria.py @@ -110,8 +110,12 @@ class CommonCriteriaCert( self, st_download_ok: bool = True, report_download_ok: bool = True, + st_pdf_hash: Optional[str] = None, + report_pdf_hash: Optional[str] = None, st_convert_ok: bool = True, report_convert_ok: bool = True, + st_txt_hash: Optional[str] = None, + report_txt_hash: Optional[str] = None, st_extract_ok: bool = True, report_extract_ok: bool = True, errors: Optional[List[str]] = None, |
