We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I am main developer of Ruqola (KDE Rocket chat client). I want to implement encryption. you can see how it works "https://docs.rocket.chat/customer-center/security-center/end-to-end-encryption-specifications"
Mainly we need to generate key: "crypto.subtle.generateKey({name: 'RSA-OAEP', modulusLength: 2048, publicExponent: new Uint8Array([0x01, 0x00, 0x01]), hash: {name: 'SHA-256'}}, true, ['encrypt', 'decrypt']);"
and RocketChat.E2E.crypto.generateKey({name: 'AES-CBC', length: 128}, true, ['encrypt', 'decrypt'])
Do you think that your lib can be use in my case ?
Thanks Regards
The text was updated successfully, but these errors were encountered:
Hi, I have no code on generating keys, generating a key is not part of the AES specification.
Do you know how those keys are generated?
Sorry, something went wrong.
hi, we use https://github.com/RocketChat/Rocket.Chat/tree/2bf8edab056dbc5e0d40aeae2c4472f729ec09d9/app/e2e/client code here. and https://github.com/RocketChat/Rocket.Chat/blob/2bf8edab056dbc5e0d40aeae2c4472f729ec09d9/app/e2e/client/helper.js
We need to port to qt :)
WE use a module crypto it seems
thanks
No branches or pull requests
Hi,
I am main developer of Ruqola (KDE Rocket chat client).
I want to implement encryption.
you can see how it works "https://docs.rocket.chat/customer-center/security-center/end-to-end-encryption-specifications"
Mainly we need to generate key:
"crypto.subtle.generateKey({name: 'RSA-OAEP', modulusLength: 2048,
publicExponent: new Uint8Array([0x01, 0x00, 0x01]), hash: {name: 'SHA-256'}},
true, ['encrypt', 'decrypt']);"
and
RocketChat.E2E.crypto.generateKey({name: 'AES-CBC', length: 128}, true,
['encrypt', 'decrypt'])
Do you think that your lib can be use in my case ?
Thanks
Regards
The text was updated successfully, but these errors were encountered: