Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caucase
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
caucase
Commits
184b9b8d
Commit
184b9b8d
authored
6 years ago
by
Vincent Pelletier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ca: Fold a local into its only usage place.
parent
e8eeb3ce
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
caucase/ca.py
caucase/ca.py
+3
-4
No files found.
caucase/ca.py
View file @
184b9b8d
...
...
@@ -291,9 +291,6 @@ class CertificateAuthority(object):
ca_crt
=
ca_key_pair
[
'crt'
]
public_key
=
csr
.
public_key
()
subject_key_identifier
=
x509
.
SubjectKeyIdentifier
.
from_public_key
(
public_key
,
)
now
=
datetime
.
datetime
.
utcnow
()
builder
=
x509
.
CertificateBuilder
(
subject_name
=
template_csr
.
subject
,
...
...
@@ -311,7 +308,9 @@ class CertificateAuthority(object):
critical
=
True
,
# "MAY appear as critical or non-critical"
),
Extension
(
subject_key_identifier
,
x509
.
SubjectKeyIdentifier
.
from_public_key
(
public_key
,
),
critical
=
False
,
# "MUST mark this extension as non-critical"
),
Extension
(
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment