Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
File Transfer Service
fts-rest
Commits
e2b2808f
Commit
e2b2808f
authored
May 03, 2021
by
Mihai Patrascoiu
Browse files
Merge branch 'delegate-2048bit-keys' into 'develop'
FTS-1700
change key size for delegated proxy to 2048 See merge request
!46
parents
092d3a3f
80e6dd31
Pipeline
#2564204
passed with stage
in 2 minutes and 20 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/fts3rest/fts3rest/controllers/delegation.py
View file @
e2b2808f
...
...
@@ -72,7 +72,7 @@ def _generate_proxy_request():
Returns:
A tuple (X509 request, generated private key)
"""
key_pair
=
RSA
.
gen_key
(
1024
,
65537
,
callback
=
_mute_callback
)
key_pair
=
RSA
.
gen_key
(
2048
,
65537
,
callback
=
_mute_callback
)
pkey
=
EVP
.
PKey
()
pkey
.
assign_rsa
(
key_pair
)
x509_request
=
X509
.
Request
()
...
...
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