Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Networking and Web Programming
»
AES-128 ECB decrypt example
Free Pascal
Website
Downloads
Wiki
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Bugtracker
IRC channel
Latest SVN
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Lazarus 2.0.12 hangs on o...
by
wp
[
Today
at 11:33:03 am]
Is BGRABitmap threadsafe?
by
pcurtis
[
Today
at 11:25:30 am]
Contemporary Pascal Discu...
by
PascalDragon
[
Today
at 11:14:54 am]
[SOLVED] Q: method repla...
by
d7_2_laz
[
Today
at 11:08:48 am]
memo and smileys
by
MarkMLl
[
Today
at 10:58:24 am]
Order of parameter evalua...
by
PascalDragon
[
Today
at 10:50:47 am]
[SOLVED] canvas
by
PascalDragon
[
Today
at 10:42:43 am]
porting an Indy app from ...
by
GetMem
[
Today
at 10:38:44 am]
porting an Indy app from ...
by
tonyhur
[
Today
at 10:30:47 am]
Function to provision an ...
by
howardpc
[
Today
at 10:16:32 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: AES-128 ECB decrypt example (Read 419 times)
CC
Full Member
Posts: 142
AES-128 ECB decrypt example
«
on:
January 29, 2021, 02:27:27 am »
Hi,
as the title says it.
I have looked around but I could not find anything truly useful.
Logged
lainz
Hero Member
Posts: 4007
Leandro Diaz
Re: AES-128 ECB decrypt example
«
Reply #1 on:
January 29, 2021, 03:53:02 am »
In other words Rijndael.
https://wiki.freepascal.org/DCPcrypt
Check that package, it has useful demos.
Logged
https://lainz.github.io/
- My Website
https://lazpaint.github.io/
- Download LazPaint
trev
Global Moderator
Hero Member
Posts: 1379
Former Delphi 1-7, 10.2 User
Re: AES-128 ECB decrypt example
«
Reply #2 on:
January 29, 2021, 03:54:50 am »
You didn't look very far...
this post
for example.
Logged
Lazarus 2.1 r64861 FPC 3.3.1 r49035 macOS 10.14.6 Xcode 11.3.1
Lazarus 2.1 r65006 3.3.1 r49213 macOS 11.2.3 aarch64 Xcode 12.4
Lazarus 2.1 r61574 3.3.1 r42318 FreeBSD 12.1 amd64 VMware VM
Lazarus 2.1 r61574 3.0.4 Ubuntu 20.04 Parallels VM
Lazarus 2.0.10 3.2.0 Win10 Parallels VM
CC
Full Member
Posts: 142
Re: AES-128 ECB decrypt example
«
Reply #3 on:
January 29, 2021, 12:31:55 pm »
I have spent quite a few hours on this before asking and I did find the exact links provided here. Just figured that copy-pasting an example would be the least time consuming help. Faster then looking at my code. But here it is anyway. I know the format the result should be, but it currently is gibberish.
The input length is 87.
Code: Pascal
[Select]
[+]
[-]
function
TForm1
.
AES128_ECB_Decrypt
(
AString
,
aKey
:
string
)
:
string
;
var
inData
:
TBytes
;
outData
:
TBytes
;
StreamSize
:
Int64
;
KeySizeInBytes
,
BlockSize
:
integer
;
inStream
,
outStream
:
TStringStream
;
//inStream
begin
inStream
:
=
TStringStream
.
Create
(
AString
)
;
StreamSize
:
=
inStream
.
Size
;
outStream
:
=
TStringStream
.
Create
;
try
KeySizeInBytes
:
=
16
;
BlockSize
:
=
KeySizeInBytes
;
SetLength
(
inData
,
BlockSize
)
;
SetLength
(
outData
,
BlockSize
)
;
//AES_Cipher := TDCP_rijndael.Create(nil); // already exists
AES_Cipher
.
Init
(
aKey
,
128
,
nil
)
;
While
StreamSize >
0
do
begin
inStream
.
ReadBuffer
(
inData
[
0
]
,
BlockSize
)
;
AES_Cipher
.
DecryptECB
(
inData
[
0
]
,
outData
[
0
]
)
;
outStream
.
WriteBuffer
(
outData
[
0
]
,
BlockSize
)
;
Log
(
inData
)
;
Log
(
outData
)
;
Dec
(
StreamSize
,
BlockSize
)
;
if
StreamSize < KeySizeInBytes
then
// Last block less then key size
begin
BlockSize
:
=
StreamSize
;
SetLength
(
inData
,
BlockSize
)
;
SetLength
(
outData
,
BlockSize
)
;
end
;
end
;
result
:
=
outStream
.
DataString
;
finally
inStream
.
Free
;
outStream
.
Free
;
end
;
end
;
Result:
Quote
??M??.?I???RM?4?(%?=?6????ro?Id??m
??)\??
NO[??5??.????܊??r>?wxլ?k
«
Last Edit: January 29, 2021, 01:10:13 pm by CC
»
Logged
CC
Full Member
Posts: 142
Re: AES-128 ECB decrypt example
«
Reply #4 on:
January 29, 2021, 08:17:45 pm »
I still do not see what is wrong with the above code, but I got it working with mORMot lib SynCrypto.TAESECB.
It is higher level solution, only few lines of code to use it. Base64 decoding may be necessary first though.
«
Last Edit: January 29, 2021, 11:25:08 pm by CC
»
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Networking and Web Programming
»
AES-128 ECB decrypt example
TinyPortal
© 2005-2018