You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The crypto.c file make use of mutex for its encryption context. This is to avoid allocating and performing multiple encryptions/decryptions at the same time and keep a static allocation of the context.
Either move the allocation to the platform support files or figure out another way to remove the locking mechanism.
The text was updated successfully, but these errors were encountered:
The crypto.c file make use of mutex for its encryption context. This is to avoid allocating and performing multiple encryptions/decryptions at the same time and keep a static allocation of the context.
Either move the allocation to the platform support files or figure out another way to remove the locking mechanism.
The text was updated successfully, but these errors were encountered: