-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
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
What if i have to change the padding mode #9
Comments
@nasyx-rakeeb Did you figure it out? I am having the same scenario |
@mina68 i then used a built-in nodejs module |
you can also check out this repository , i wrote this code when i was trying to convert the csharp RijndaelManaged encryption method to Javascript, its written in pure js, but i really dont know if its working as expected, i did check it when i found crypto |
@nasyx-rakeeb such a huge effort there! |
i don't know if its still in my pc, i cant seem to find it but i ll take
a look and let you know
…On Sun, 11 Dec 2022, 9:06 pm mina68, ***@***.***> wrote:
@nasyx-rakeeb <https://github.com/nasyx-rakeeb> such a huge effort there!
I tried to implement it with crypto but with no luck so far, will be so
grateful if you can show me a snippet for the code
—
Reply to this email directly, view it on GitHub
<#9 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AVMRHW33URKPEXQKUAKLZVTWMXYGRANCNFSM6AAAAAARL4GQ4Y>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
I know this is farther into the future than is likely relevant to you anymore, but (for posterity's sake) Rijndael 128 is apparently equivalent to AES 128, due to the fact that the block and key size for that algorithm is 128, but other byte strengths of Rijndael (e.g., 192 and 256) has block sizes that match the key sizes. Different byte strengths of AES have the key being that byte strength, but AES locks the block size to 128, rendering the built-in This link is a StackOverflow answer that I came across that explains it perhaps a little better than I could: |
can you please help me out, i am trying to convert below
c#/dotnet
piece of code ot javascript usingrijndael-js
package but i can't make it work.The text was updated successfully, but these errors were encountered: