All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: barebox@lists.infradead.org
Subject: Re: [PATCH 0/7] Digest and login/password Frameworks
Date: Thu, 9 Sep 2010 16:01:05 +0200	[thread overview]
Message-ID: <20100909140105.GG9112@game.jcrosoft.org> (raw)
In-Reply-To: <20100909135543.GF9112@game.jcrosoft.org>

On 15:55 Thu 09 Sep     , Jean-Christophe PLAGNIOL-VILLARD wrote:
> Hi,
> 
> 	this patch serie will introduce the support
> 	of 2 frameworks
> 
> 	Digest Framework
> 
> 	Which allow you to add easely digest algo
> 	with md5, sha1, sha256
> 
> 	Login/Passwd Framework
> 
> 	It will allow you to protect your barebox with a password
> 	and require it via login command or manange it via passwd
> 	This framework use the Digest framework to calculate the checksum
> 	to store the password
The following changes since commit 0d35c3c8a0c2a1f1ff06eac20a12af0186753bc4:

  menu: simplify usage for clients (2010-08-30 21:06:02 +0200)

are available in the git repository at:
  git://git.jcrosoft.org/barebox.git login_passwd

Jean-Christophe PLAGNIOL-VILLARD (7):
      add digest framework
      add md5 support
      add sha1 support
      add sha256 support
      add password framework
      add passwd command
      add login support

 commands/Kconfig   |   28 ++++
 commands/Makefile  |    2 +
 commands/login.c   |   63 +++++++++
 commands/passwd.c  |   98 +++++++++++++
 common/Kconfig     |   28 ++++
 common/Makefile    |    2 +
 common/digest.c    |   77 ++++++++++
 common/password.c  |  286 +++++++++++++++++++++++++++++++++++++
 include/digest.h   |   49 +++++++
 include/password.h |   41 ++++++
 lib/Kconfig        |   17 +++
 lib/Makefile       |    3 +
 lib/md5.c          |  317 +++++++++++++++++++++++++++++++++++++++++
 lib/sha1.c         |  396 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 lib/sha256.c       |  319 ++++++++++++++++++++++++++++++++++++++++++
 15 files changed, 1726 insertions(+), 0 deletions(-)
 create mode 100644 commands/login.c
 create mode 100644 commands/passwd.c
 create mode 100644 common/digest.c
 create mode 100644 common/password.c
 create mode 100644 include/digest.h
 create mode 100644 include/password.h
 create mode 100644 lib/md5.c
 create mode 100644 lib/sha1.c
 create mode 100644 lib/sha256.c

Best Regards,
J.

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

      parent reply	other threads:[~2010-09-09 14:01 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-09-09 13:55 [PATCH 0/7] Digest and login/password Frameworks Jean-Christophe PLAGNIOL-VILLARD
2010-09-09 13:59 ` [PATCH 1/7] add digest framework Jean-Christophe PLAGNIOL-VILLARD
2010-09-09 13:59 ` [PATCH 2/7] add md5 support Jean-Christophe PLAGNIOL-VILLARD
2010-09-16 15:43   ` Sascha Hauer
2010-09-17  4:42     ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-09 13:59 ` [PATCH 3/7] add sha1 support Jean-Christophe PLAGNIOL-VILLARD
2010-09-16 15:53   ` Sascha Hauer
2010-09-16 15:59     ` Jean-Christophe PLAGNIOL-VILLARD
2010-09-09 13:59 ` [PATCH 4/7] add sha256 support Jean-Christophe PLAGNIOL-VILLARD
2010-09-09 13:59 ` [PATCH 5/7] add password framework Jean-Christophe PLAGNIOL-VILLARD
2010-09-09 13:59 ` [PATCH 6/7] add passwd command Jean-Christophe PLAGNIOL-VILLARD
2010-09-09 13:59 ` [PATCH 7/7] add login support Jean-Christophe PLAGNIOL-VILLARD
2010-09-09 14:01 ` Jean-Christophe PLAGNIOL-VILLARD [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20100909140105.GG9112@game.jcrosoft.org \
    --to=plagnioj@jcrosoft.com \
    --cc=barebox@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.