aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAgeFilesLines
...
| | | * demo + dumping + keyword extractionStanislav Boboň2020-11-251-0/+36
| |_|/ |/| |
* | | hotfix, badly called method parse_algorithmsAdam Janovsky2020-11-251-1/+1
| |/ |/|
* | Merge pull request #16 from petrs/fix-serializationadamjanovsky2020-11-252-77/+100
|\ \ | | | | | | Fix to_dict() copies, inherit serialization
| * | Fix (i)mutability issues when calling to_dict()Adam Janovsky2020-11-252-6/+8
| | |
| * | Merge branch 'master' into fix-serializationAdam Janovsky2020-11-258-74/+110
| |\ \ | |/ / |/| |
* | | Merge pull request #17 from petrs/replace-relative-importsadamjanovsky2020-11-258-34/+31
|\ \ \ | | | | | | | | Repalce relative imports with absolute imports, move entrypoints to project root
| * | | Fix errors in switch to absolute importsAdam Janovsky2020-11-253-14/+5
| | |/ | |/| | | | | | | | | | | | | - Move entry point `process_certificates.py` to root directory - Move entry point `fils_certificates.py` to root directory - Do corresponding changes in setup.py
| * | Repalce relative imports with absolute importsAdam Janovsky2020-11-247-28/+34
|/ / | | | | | | | | Done only in OOP parts of the repository. Plus, modified a `process_certificates.py` to append to syspath, so that it can be run from the `./sec-certs` dir.
| * Fix to_dict() copies, inherit serializationAdam Janovsky2020-11-242-33/+15
|/ | | | | | | | The methods to_dict() in Certificate and Dataset classes and subclasses now use copy of their self.__dict__. Furthermore, if possible, to_dict() and from_dict() methods are now inherited from the superclass.
* fips: oop working (#15)Stanislav Boboň2020-11-2011-338/+743
| | | | | | | | | | | | | | | | | | | | | | | | | | | * FIPS Certificate constructor * Parsing of single certificate done * Downloading files * Create dataset of objects * demo + dumping + keyword extraction * wait for approval + everything changed * non trivial amount of changes to make this work * modified tests to work with new fips html files * merge comments resolved (first commit) * merge comments resolved (second commit) * realizing a better idea is to leave it alone * commit #3 Co-authored-by: Stanislav Boboň <xbobon@fi.muni.cz>
* add installation of python virtualenvPetr Svenda2020-11-191-0/+6
|
* Merge pull request #13 from petrs/serialization-typesadamjanovsky2020-11-187-52/+58
|\ | | | | simplified (de)serialization using explicit _type attribute
| * simplified (de)serialization using explicit _type attributeAdam Janovsky2020-11-187-52/+58
|/
* Merge pull request #12 from petrs/cc-oop-testsadamjanovsky2020-11-169-36/+957
|\ | | | | oop tests and deserialization from json
| * sorting keys in list when serializing into jsonAdam Janovsky2020-11-161-1/+1
| |
| * Added basic OOP tests for CC dataset and certAdam Janovsky2020-11-167-3/+872
| |
| * demo of dataset deserializationAdam Janovsky2020-11-161-1/+7
| |
| * added deserialization from jsonAdam Janovsky2020-11-162-19/+48
| |
| * Possible to get only archived/active/none crtsAdam Janovsky2020-11-161-10/+29
| |
| * .Adam Janovsky2020-11-131-3/+1
|/
* hot fix: order of abstractmethod and property decoratorsAdam Janovsky2020-11-121-1/+1
|
* fixed types in merge methodsAdam Janovsky2020-11-122-2/+2
|
* Merge branch 'master' of github.com:petrs/sec-certsAdam Janovsky2020-11-122-13/+21
|\
| * Merge pull request #11 from petrs/dataset_classesadamjanovsky2020-11-112-13/+21
| |\ | | | | | | Dataset classes
| | * Merge branch 'master' into dataset_classesAdam Janovsky2020-11-110-0/+0
| | |\ | | |/ | |/|
| | * Added new project requirementsAdam Janovsky2020-11-112-13/+21
| | |
* | | Union[type, None] -> Optional[type]Adam Janovsky2020-11-122-29/+36
|/ / | | | | | | Plus adding some abstract methods
* | Merge pull request #10 from petrs/dataset_classesadamjanovsky2020-11-117-2/+642
|\| | | | | Dataset classes
| * Merge branch 'dataset_classes' of github.com:petrs/sec-certs into ↵Adam Janovsky2020-11-110-0/+0
| |\ | | | | | | | | | dataset_classes
| | * added oop demo scriptAdam Janovsky2020-11-111-0/+28
| | |
| * | added oop demo scriptAdam Janovsky2020-11-112-0/+29
| |/
| * Alpha version of OOP certificates.Adam Janovsky2020-11-116-138/+522
| | | | | | | | | | | | | | | | | | | | Currently missing features: - Tests - Sample script - Exceptions - Robbust logging - Acive/Archived certificate distinguisher - Some methods are not implemented
| * Merge branch 'dataset_classes' of github.com:petrs/sec-certs into ↵Adam Janovsky2020-10-284-32/+64
| |\ | | | | | | | | | dataset_classes
| | * further advances on mockup classes, meta (csv, html) parsers introducedAdam Janovsky2020-10-253-9/+72
| | |
| | * mockup classes for Dataset and Certificateadamjanovsky2020-10-236-2/+88
| | |
| * | progress on class hierarchyAdam Janovsky2020-10-285-65/+111
| | |
| * | further advances on mockup classes, meta (csv, html) parsers introducedAdam Janovsky2020-10-283-9/+72
| | |
| * | mockup classes for Dataset and Certificateadamjanovsky2020-10-286-2/+88
|/ /
* | Update README.mdPetr Svenda2020-10-271-2/+2
| |
* | Add basic tests.J08nY2020-10-275-5/+54
| |
* | Fips - bs4, added parsing (#9)Stanislav Boboň2020-10-244-165/+206
|/ | | | | | | | | | | | | | | | | | | | | | | * fixed KeyErrors and added simplier table finding * remove duplicities in json * use bs4 to parse web files * search for broken pdfs, saner pdf opening * better html parsing * more exceptions handled * more fields to parse * added more rules * type hinting added * common dict + Path functions Co-authored-by: Stanislav Boboň <xbobon@fi.muni.cz>
* Update README, add logo, add docs, add test dir.J08nY2020-10-226-33/+222
|
* Fix block_cipher_modes key in output.J08nY2020-10-211-1/+1
|
* Add conversion of files to text.J08nY2020-10-203-66/+44
|
* fixed help argument in clickStanislav Boboň2020-10-201-4/+4
|
* Cleanup FIPS downloads.J08nY2020-10-204-63/+74
|
* Merge pull request #8 from petrs/fipsJán Jančár2020-10-203-48/+111
|\ | | | | fips basic functionality
| * @ -> :Stanislav Boboň2020-10-201-33/+33
| |
| * imports changedStanislav Boboň2020-10-201-2/+2
| |
| * fstrings in downloadsStanislav Boboň2020-10-202-29/+30
| |