Re: [fpc-pascal] Public key algo pascal only

2019-04-08 Thread José Mejuto
El 08/04/2019 a las 11:49, Santiago A. escribió: There is no simple solution for a complex problem. RSA implies a lot of backend: several symmetric ciphers (AES, Blowfish..., that are complex by their own. You don't want to use Caesar cypher), acceptable random generator, big integer arithmeti

Re: [fpc-pascal] Public key algo pascal only

2019-04-08 Thread Jy V
On Mon, Apr 8, 2019 at 11:58 AM Santiago A. wrote: > There is no simple solution for a complex problem. I don't think you will > find anything much more simpler. > Santiago, you should reconsider, the original poster asked for PublicKey/PrivateKey algorithm, in ECC.pas from XMLRAD hosted at Sour

Re: [fpc-pascal] Public key algo pascal only

2019-04-08 Thread Santiago A.
El 06/04/19 a las 19:26, José Mejuto escribió: El 05/04/2019 a las 19:08, Виктор Матузенко escribió: Hi, try this https://github.com/delphi-pascal-archive/Pascal-RSA Hello, Thank you. It is a bit "monster" but maybe I can split the necessary code. Thank you again. There is no simple solu

Re: [fpc-pascal] Public key algo pascal only

2019-04-07 Thread José Mejuto
El 07/04/2019 a las 8:22, Jy V escribió: Give a look at Crypto.pas in Ultibo project at github, from memory it requires very few other pascal unit (and of course no external library or obscure binary code) I also know that XMLRAD is sharing similar feature in unit XCrypto.pas, the project is

Re: [fpc-pascal] Public key algo pascal only

2019-04-06 Thread Jy V
- On Friday, April 5, 2019, José Mejuto wrote: > Is there any public/private key algorithm, pascal only, implemented in the distribution of fpc ? Degree of security is not important, also a 3rd party unit which does not depends on a DLL or depends on another software

Re: [fpc-pascal] Public key algo pascal only

2019-04-06 Thread José Mejuto
El 05/04/2019 a las 19:08, Виктор Матузенко escribió: Hi, try this https://github.com/delphi-pascal-archive/Pascal-RSA Hello, Thank you. It is a bit "monster" but maybe I can split the necessary code. Thank you again. -- ___ fpc-pascal maillist

Re: [fpc-pascal] Public key algo pascal only

2019-04-05 Thread Виктор Матузенко
Hi, try this https://github.com/delphi-pascal-archive/Pascal-RSA пт, 5 апр. 2019 г. в 14:17, José Mejuto : > El 05/04/2019 a las 13:01, Michael Van Canneyt escribió: > > > Maybe DCrypt has the necessary routines, Graeme Geldenhuys maintains a > > version that works with FPC. > > Hello, > > Thank

Re: [fpc-pascal] Public key algo pascal only

2019-04-05 Thread José Mejuto
El 05/04/2019 a las 13:01, Michael Van Canneyt escribió: Maybe DCrypt has the necessary routines, Graeme Geldenhuys maintains a version that works with FPC. Hello, Thank you, I have code from DCrypt but I was looking for something much more simple which can generate the keys/certificates and

Re: [fpc-pascal] Public key algo pascal only

2019-04-05 Thread Michael Van Canneyt
On Fri, 5 Apr 2019, José Mejuto wrote: Hello, Is there any public/private key algorithm, pascal only, implemented in the distribution of fpc ? Degree of security is not important, also a 3rd party unit which does not depends on a DLL or depends on another software to generate key pairs, or

[fpc-pascal] Public key algo pascal only

2019-04-05 Thread José Mejuto
Hello, Is there any public/private key algorithm, pascal only, implemented in the distribution of fpc ? Degree of security is not important, also a 3rd party unit which does not depends on a DLL or depends on another software to generate key pairs, or other tasks, would be valid too. Thank y