-
Notifications
You must be signed in to change notification settings - Fork 20
Re-use the backend instance rather than creating many #202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
TheDistributor
wants to merge
1
commit into
master
Choose a base branch
from
mgallwey/cache-backend
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -53,6 +53,11 @@ | |
| # In older cryptography it's still with the regular algorithms | ||
| ARC4 = algorithms.ARC4 | ||
| arc4Imported = True | ||
| # default_backend() is an expensive call that carries no per-use | ||
| # state, so sharing one across all Cipher constructions is safe and | ||
| # reduces memory usage/accelerates GC for python programs that use a lot | ||
| # of connections (each connection calls this twice) | ||
| _DEFAULT_BACKEND = default_backend() | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You don't need to pass backend=default_backend() in 3.1 onwards since its deprecated. Perhaps make it conditional to call and pass in only for python 2.x and for python3.1 onwards by not having to call it at all and save more time? |
||
| except ImportError: | ||
| arc4Imported = False | ||
| AESImported = False | ||
|
|
@@ -371,7 +376,7 @@ def __init__(self, encrypt, key, nonce): | |
| :param nonce: The nonce for the cipher or None to create it | ||
| """ | ||
| algo = algorithms.AES(self._convert_key(key)) | ||
| cipher = Cipher(algo, mode=modes.CTR(nonce), backend=default_backend()) | ||
| cipher = Cipher(algo, mode=modes.CTR(nonce), backend=_DEFAULT_BACKEND) | ||
| self.cipher = cipher.encryptor() if encrypt else cipher.decryptor() | ||
|
|
||
| def transform(self, data): | ||
|
|
@@ -485,7 +490,7 @@ def __init__(self, encrypt, key, convert=True): | |
| # optionality of mode correctly. | ||
| # https://github.com/pyca/cryptography/issues/9464 | ||
| cipher = Cipher(algo, mode=None, # type: ignore | ||
| backend=default_backend()) | ||
| backend=_DEFAULT_BACKEND) | ||
| self.cipher = cipher.encryptor() if encrypt else cipher.decryptor() | ||
|
|
||
| def transform(self, data): | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are all usages of
_DEFAULT_BACKENDgated by a check ofarc4Imported?It might be better to have a helper function instead of a variable, and that function will initialize the global
default_backendif none is set.