aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/sec_certs/model
Commit message (Collapse)AuthorAgeFilesLines
* Fix Norway cert_id parsing in schemes.J08nY2023-04-251-1/+3
|
* Fix black issue.J08nY2023-04-211-1/+0
|
* Merge branch 'fix/dup-dedup' into issue/324-Switch-from-NVD-data-feeds-to-APIJ08nY2023-04-215-44/+259
|\
| * More comments in matching.J08nY2023-04-182-0/+12
| |
| * Add match filtering based on validation date.J08nY2023-04-181-4/+12
| |
| * Fix annotations import.J08nY2023-04-181-3/+4
| |
| * Make CCSchemeDataset an actual dataset.J08nY2023-04-183-9/+12
| |
| * Abstract out matching scores.J08nY2023-04-183-30/+29
| |
| * Fix FIPSmatcher iterable.J08nY2023-04-171-1/+2
| |
| * Revert "Ditch the __init__ package imports."J08nY2023-04-171-0/+16
| | | | | | | | This reverts commit 89b3d880088b5c30fa10036f280e73b1c1aee05e.
| * Change matcher API to not ref dataset.J08nY2023-04-173-18/+15
| |
| * Share code between FIPS and CC matching.J08nY2023-04-143-64/+68
| |
| * Ditch the __init__ package imports.J08nY2023-04-141-16/+0
| |
| * Remove indirect imports from __init__ from our code.J08nY2023-04-141-3/+3
| |
| * Add CC scheme matching for datasets.J08nY2023-04-141-17/+55
| |
| * Move CC Scheme dataset to separate file.J08nY2023-04-111-1/+10
| |
| * Process cert name and entry name the same.J08nY2023-04-112-5/+4
| |
| * Move cert name and vendor name normalization functions and share them.J08nY2023-04-113-60/+40
| |
| * Move snapshot maching code to matcher.J08nY2023-04-111-6/+48
| |
| * Add CC and FIPS matching classes.J08nY2023-04-113-1/+123
| |
* | replace some ifs with dictionaray setdefaultAdam Janovsky2023-04-191-4/+1
| |
* | defer few importsAdam Janovsky2023-04-161-1/+2
|/
* Drop inheritance from sklearn objects.J08nY2023-02-102-7/+7
| | | | | | | | It is unused and causes big memory usag spikes on their import due to their inefficient import practice: https://github.com/scikit-learn/scikit-learn/issues/25590 We don't actually use their API anywhere (afaik).
* add flake8-simplify to ruffAdam Janovsky2023-02-031-1/+1
|
* pin linter versions, fix some lint problemsAdam Janovsky2023-02-032-2/+1
|
* fix some return statementsAdam Janovsky2023-02-031-7/+5
|
* ruff enforce comprehensionsAdam Janovsky2023-02-033-4/+4
|
* adds some pylint checks to ruffAdam Janovsky2023-01-271-1/+1
|
* Rename CommonCriteriaCert -> CCCertificateAdam Janovsky2022-12-102-16/+16
|
* rename common_criteria modules to ccAdam Janovsky2022-12-092-2/+2
|
* flat -> src layout (#294)adamjanovsky2022-12-096-0/+1047
- Some mypy fixes - Flat layout -> src layout - Ditch `setup.py` and `setup.cfg` in favour of `pyproject.toml` - Non-pinned requirements moved from `requirements/*.in` to `pyproject.toml`