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
It would be extremely beneficial to support variables while configuring the module. This will give us the possibility to implement rotating IV for each encrypted session.
In addition, it allows us to mix the current module nicely with other extensions: e.g njs. Here is an example about the desired behaviour:
set $encryptionKey "abcdefghijklmnopqrstuvwxyz123456";
set $encryptionIV "1234567812345678";
encrypted_session_key $encryptionKey;
encrypted_session_iv $encryptionIV;
I would expect this to work but unfortunately the code treats this literally.
The text was updated successfully, but these errors were encountered:
It would be extremely beneficial to support variables while configuring the module. This will give us the possibility to implement rotating IV for each encrypted session.
In addition, it allows us to mix the current module nicely with other extensions: e.g njs. Here is an example about the desired behaviour:
I would expect this to work but unfortunately the code treats this literally.
The text was updated successfully, but these errors were encountered: