We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
https://www.tarantool.io/en/doc/2.1/reference/reference_lua/crypto/#incremental-methods-in-the-crypto-module The example:
c = crypto.cipher.aes192.cbc.encrypt.new() c:init() c:update('A', 'key') c:update('B', 'key') print(c:result()) c:free()
It is wrong. key should be passed to new method, not update, and only once. Also, iv argument is mandatory.
key
new
update
iv
The text was updated successfully, but these errors were encountered:
6ae391b
pgulutzan
No branches or pull requests
https://www.tarantool.io/en/doc/2.1/reference/reference_lua/crypto/#incremental-methods-in-the-crypto-module
The example:
It is wrong.
key
should be passed tonew
method, notupdate
, and only once. Also,iv
argument is mandatory.The text was updated successfully, but these errors were encountered: