From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, FREEMAIL_REPLY autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,60930a8e43781f3f X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-06-17 01:31:06 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: antonio_duran@hotmail.com (Antonio Duran) Newsgroups: comp.lang.ada Subject: Re: Ada and cryptography Date: 17 Jun 2002 01:31:05 -0700 Organization: http://groups.google.com/ Message-ID: References: <994828d9.0206161145.cbf4b08@posting.google.com> NNTP-Posting-Host: 192.101.1.126 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1024302666 2627 127.0.0.1 (17 Jun 2002 08:31:06 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 17 Jun 2002 08:31:06 GMT Xref: archiver1.google.com comp.lang.ada:26129 Date: 2002-06-17T08:31:06+00:00 List-Id: tuo_pe@yahoo.com (Tuomas P) wrote in message news:<994828d9.0206161145.cbf4b08@posting.google.com>... > Hi all! > > Is (can?) Ada being used in cryptographic applications? If it is, > could someone point me out to webpages that have cryptographic code in > Ada? > > I have been reading Markus Kuhn's article on Ada95 ("Information for > New Ada95 Programmers") and I have the impression that Ada might do > well in that area (too!). > > Thanks for your time. > > Tuomas Yes it can. I'm trying to implement some cryptographic algorithms in Ada95 and you can see that work in: http://sourceforge.net/projects/adacf I'm afraid I couldn't dedicate enough time to complete the work. What you can find there is an implementation of some of the most important cryptographic hash (message digest) algorithms (MD2, MD4, MD5, SHA-1, RIPEMD-128, RIPEMD-160, TIGER, and HAVAL) and the test vectors for these algorithms. I'm currently working on a multiprecission natural number arithmetic package, cryptographic pseudorandom number generators (BBS) and some of the most important symmetric key ciphers (DES, 3-Way, Blowfish, and others). If you want the source code I could send you but be aware that is not production quality code (at least not yet). Antonio Duran