-
Java client send the encrypted message by using import package javax.crypto.Cipher;
val cipher = Cipher.getInstance("AES/CTR/NoPadding"); |
Beta Was this translation helpful? Give feedback.
Answered by
fuchsnj
Jul 5, 2023
Replies: 1 comment 2 replies
-
It should be one of the following, I'm not sure which one Java uses by default here. It should be easy enough to test with an encrypted payload at https://playground.vrl.dev/ (VRL runs client side here, but please don't submit secrets just to be safe)
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
None of these might actually work, it seems like Java uses a different "endianness" than VRL currently supports. More info here: #297