I'm not very familiar with C, so I would like to ask you how can use
the algorithm Rijndael, suppousing that I want two simple functions (in C ANSI)
implementing the CBC or ECB Modes (is the same for me, because I have
both implementations in Delphi, but i need the same implementations in
C for an AS400) with an interface similiar to this (in Object Pascal):
function Encrypt(PlainTe xt: string; Key: string): string
function Decrypt(Encrypt edText: string; Key: string): string
Thanks in regard,
Ignacio De Marco.
Mercado Abierto Electrónico S.A.
the algorithm Rijndael, suppousing that I want two simple functions (in C ANSI)
implementing the CBC or ECB Modes (is the same for me, because I have
both implementations in Delphi, but i need the same implementations in
C for an AS400) with an interface similiar to this (in Object Pascal):
function Encrypt(PlainTe xt: string; Key: string): string
function Decrypt(Encrypt edText: string; Key: string): string
Thanks in regard,
Ignacio De Marco.
Mercado Abierto Electrónico S.A.
Comment