Link to home
Start Free TrialLog in
Avatar of Mary Regina
Mary ReginaFlag for India

asked on

Data Encryption

As a part of my project, I want to encrypt user defined data using an unbreakable encryption algorithm. I have got one AES algorithm. But it accepts plaintext as
 plaintext_hex = {'00' '11' '22' '33' '44' '55' '66' '77' ...
                 '88' '99' 'aa' 'bb' 'cc' 'dd' 'ee' 'ff'};
I am doing my project in matlab.
Avatar of gheist
gheist
Flag of Belgium image

Matlab compiler encrypts matlab code and ships the keys as part of runtime.
So how do you decrypt data?
How do you consume and process data now (.m file)
It is up to the user to encrypt his data right outside matlab.
ASKER CERTIFIED SOLUTION
Avatar of btan
btan

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial