Does pycryptodome release GIL when encrypt/decrypt? #578
Answered
by
Legrandin
DeltaLaboratory
asked this question in
Q&A
-
Does pycryptodome release GIL when encrypt/decrypt? |
Beta Was this translation helpful? Give feedback.
Answered by
Legrandin
Nov 21, 2021
Replies: 1 comment
-
Yes: all encrypt/decrypt operations are calls to C code via either |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
DeltaLaboratory
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes: all encrypt/decrypt operations are calls to C code via either
ctypes
orcffi
, and both release the GIL for each C call.