byron
Hi guys,
I battling to decrypt a string that was encrypted using this
encrypt | Dart package. link in flutter.
AES Encryption
privateKEY = “%8R=&PfC5SXT:pRF2vF[5zCTy}M7CX]J”
privateINV = “}Lq5Wu~nkr\Vdfm~”
Encrypted string = “rMCS4wiyvQH7nXx6slP6rA==”
Actual massage should be = “Fantastic”
The flutter code to encrypt is
Using this library to encrypt text only.
import 'package:encrypt/encrypt.dart';
import 'package:flutter_dotenv/flutter_dotenv.dart';
class EncryptAESData {
static Encrypted encrypted;
static var decrypted;
static String encryptAES(data) {
final key = Key.fromUtf8(dotenv.env['privateKEY']);
final iv = IV.fromUtf8(dotenv.env['privateINV']);
final encrypter = Encrypter(AES(key));
encrypted = encrypter.encrypt(data, iv: iv);
return encrypted.base64;
}
static decryptAES(data) {
final key = Key.fromUtf8(dotenv.env['privateKEY']);
final iv = IV.fromUtf8(dotenv.env['privateINV']);
final encrypter = Encrypter(AES(key));
String decrypted = "";
if (data != "") {
try {
decrypted = encrypter.decrypt(Encrypted.fromBase64(data), iv: iv);
} catch (exception) {
decrypted = data;
}
}
return decrypted;
}
}
I’m getting nothing back and i suspect the :crypto.crypto_one_time function i’m using is getting the wrong binary arguments
Here is an example of how i’m getting the binary from the string, if thats even what i’m supposed to do
b_password = :crypto.hash(:md5, privateKEY)
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
I think I’ve found a small improvement I could contribute to <%= web_namespace %>.CoreComponents (installer/templates/phx_web/compo...
New
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
ChristopheBelpaire
It should work with something like :
but your iv length is 15 bytes, and it should be 16 :
byron
Thanks for the reply ChristopheBelpaire,
does the iv argument have to be binary when given to the one_time function and the key can be a string?
because when i try Base.decode16! the key i get (ArgumentError) non-alphabet digit found: “%” as that how other Help with crypto module - crypto_one_time method - (ArgumentError) argument error Issue - #2 by NobbZ users have done
al2o3cr
:crypto.hashis definitely digging in the wrong spot.The post from @ChristopheBelpaire almost has it, but the cipher + mode need to match the defaults that
encryptis using:AESModeisSIC, also known asCTRIn addition, the given IV has an explicit
\in it, so it needs to be written as\\inside".Putting it all together:
HOWEVER
Using a fixed IV in CTR mode is BAD. Real bad. The original code you posted gets the IV from
dotenv, which leads me to believe the same value is used for every encryption.Reusing an IV for CTR mode means that an attacker that knows ONE plaintext and the corresponding ciphertext can read ANY shorter ciphertext, because the “key stream” is identical for every encryption operation.
A demonstration:
This prints:
Generally, you want to use a mode like CTR with an IV that is sent along with the encrypted result and “never” reused. I put “never” in quotes because most implementations settle for something like a 128-bit cryptographically-random number, which could technically repeat if you collected about 2^64 of them but is close enough to “never” for most purposes.
byron
Hi al2o3cr You legend! this worked very well, may i ask why there is “\a\a\a\a\a\a\a\a\a\a” after the result?
voltone
That’s PKCS#7 padding, to make the message length a multiple of the block size. You can strip it by passing
encrypt: false, padding: :pkcs_paddinginstead of justfalseas the last argument.