From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Nala Ginrut Newsgroups: gmane.lisp.guile.devel Subject: About Guile crypto support Date: Sun, 03 Feb 2013 20:55:46 +0800 Organization: HFG Message-ID: <1359896146.2754.19.camel@Renee-desktop.suse> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1359896162 18725 80.91.229.3 (3 Feb 2013 12:56:02 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 3 Feb 2013 12:56:02 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sun Feb 03 13:56:23 2013 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1U1z7M-0003cV-Hz for guile-devel@m.gmane.org; Sun, 03 Feb 2013 13:56:20 +0100 Original-Received: from localhost ([::1]:43596 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1z73-0005fX-UM for guile-devel@m.gmane.org; Sun, 03 Feb 2013 07:56:01 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:58893) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1z71-0005dk-A6 for guile-devel@gnu.org; Sun, 03 Feb 2013 07:56:00 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U1z6z-00059V-VV for guile-devel@gnu.org; Sun, 03 Feb 2013 07:55:59 -0500 Original-Received: from mail-da0-f41.google.com ([209.85.210.41]:62116) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1z6y-00059L-Uk for guile-devel@gnu.org; Sun, 03 Feb 2013 07:55:57 -0500 Original-Received: by mail-da0-f41.google.com with SMTP id e20so2302201dak.0 for ; Sun, 03 Feb 2013 04:55:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:message-id:subject:from:to:date:organization :content-type:x-mailer:mime-version:content-transfer-encoding; bh=4F08R0lt1I9iyhiI8fk4KPM3cpvkc37LUdREyqPgvAM=; b=d+1F7xPv+oZthliQcvGXERxUv2pW2ebDrM79e1UPtbO1bkFe83l5TWl6gZjT5C8v2n w0yb8coRWXZdX0ymAubmMqEt+Vmi9/RujNZdYbjpOzjiW0wGxj4gS2jgK/HfHSQqsFU3 YXuX7G456Qx2eQ9G4h2qvtN5Sq3aoKBctwxwsi2Mm5fHeCmnEcwxx5rUt9i3g71WmVO5 g05vujiUw0a1/gKqrdpb64vVR4iiAeHIdY1HRq16hWQp5Sv2kyxqQu1dOMHU7/RjbXh5 D6w9/pu5nAXi6/N4HZ5SWrtbhShiIbhPWOd5YPqmZ0qro3wcP5gAH/fwSnpPZw0Fvw5k XUSg== X-Received: by 10.68.228.164 with SMTP id sj4mr47469349pbc.126.1359896155853; Sun, 03 Feb 2013 04:55:55 -0800 (PST) Original-Received: from [192.168.100.104] ([59.40.167.12]) by mx.google.com with ESMTPS id ai8sm14681094pbd.14.2013.02.03.04.55.50 (version=SSLv3 cipher=RC4-SHA bits=128/128); Sun, 03 Feb 2013 04:55:54 -0800 (PST) X-Mailer: Evolution 3.4.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-Received-From: 209.85.210.41 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:15673 Archived-At: As mentioned in another thread about digest algorithm support in Guile, my plan is use part of implementation of libgcrypt and make a wrapper, then put into libguile. But now I found weinholt's Scheme industria lib, which contains all mainstream crypto(not only digest) algorithm. http://weinholt.se/industria/manual/crypto.html#crypto So what's your opinion, guys? Would you prefer C implementation or Scheme way? Thanks!