Skip to content

Commit

Permalink
CRL support
Browse files Browse the repository at this point in the history
  • Loading branch information
markokr committed Aug 9, 2019
1 parent d0b4a21 commit 7ce4391
Show file tree
Hide file tree
Showing 5 changed files with 846 additions and 271 deletions.
16 changes: 8 additions & 8 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -437,31 +437,31 @@ valid-metaclass-classmethod-first-arg=cls
[DESIGN]

# Maximum number of arguments for function / method.
max-args=15
max-args=50

# Maximum number of attributes for a class (see R0902).
max-attributes=17
max-attributes=50

# Maximum number of boolean expressions in an if statement.
max-bool-expr=5
max-bool-expr=10

# Maximum number of branch for function / method body.
max-branches=50

# Maximum number of locals for function / method body.
max-locals=45
max-locals=50

# Maximum number of parents for a class (see R0901).
max-parents=7
max-parents=10

# Maximum number of public methods for a class (see R0904).
max-public-methods=420
max-public-methods=500

# Maximum number of return / yield for function / method body.
max-returns=16
max-returns=50

# Maximum number of statements in function / method body.
max-statements=150
max-statements=500

# Minimum number of public methods for a class (see R0903).
min-public-methods=0
Expand Down
9 changes: 9 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,15 @@ Sign certificate signing request::
[--out CRT_FN] [--password-file TXT_FILE]
[--reset ...]

Change CRL file::

sysca update-crl --crl CRL_FILE --ca-key KEY_FILE --ca-info CRT_FILE
--days NUM [--out CRT_FN] [--password-file TXT_FILE]
[--reason REASON_NAME]
[--revoke-cert CERT_FILE] ...
[--revoke-serial SERIAL] ...
[--crl-number NUM] [--delta-crl-number NUM]

Display contents of CSR or CRT file::

sysca show FILE
Expand Down
Loading

0 comments on commit 7ce4391

Please sign in to comment.