From 2e78e4e78de8289a7ef2447d03a3be41f4cac531 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Sun, 1 Jul 2012 15:09:32 +0200 Subject: Add dispass.el project description --- site/projects/dispass.el.org | 59 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 58 insertions(+), 1 deletion(-) (limited to 'site/projects') diff --git a/site/projects/dispass.el.org b/site/projects/dispass.el.org index b64a4ed..d8ec515 100644 --- a/site/projects/dispass.el.org +++ b/site/projects/dispass.el.org @@ -1 +1,58 @@ -#+TITLE: Dispass.el +#+TITLE: dispass.el +#+LINK_UP: ../index.html +#+LINK_HOME: http://ryuslash.org +#+LINK: src https://github.com/ryuslash/dispass.el +#+LINK: tar_gz https://github.com/ryuslash/dispass.el/tarball/master +#+LINK: zip https://github.com/ryuslash/dispass.el/zipball/master +#+LINK: dispass http://dispass.babab.nl +#+STARTUP: showall + +#+begin_html + + +#+end_html + +#+INCLUDE: "dlmenu.inc" + +* About + + [[dispass][DisPass]] is a passphrase generator. ~dispass.el~ is an [[emacs][Emacs]] wrapper + for [[dispass][DisPass]]. + +** Features + + - Copy passwords directly to the clipboard, no need for manual + selection and copying. + - Specify the length of the passphrase by using a numeric prefix + argument. + +** Requirements + + - [[emacs][Emacs]] + - [[dispass][DisPass]] + +* Usage + + First place ~dispass.el~ somewhere in your load path, or add its + location to your load path: + + #+begin_src emacs-lisp + (add-to-list 'load-path "~/location/of/dispass.el") + #+end_src + + Then you need to load it up: + + #+begin_src emacs-lisp + (require 'dispass) + #+end_src + + After that everything should be simple, either call =dispass= or + =dispass-create= to generate the passphrase. =dispass-create= will ask + for your password twice, for confirmation purposes. + + To specify a length of the generated passphrase, use numeric prefix + arguments: =C-8 M-x dispass = to create a passphrase of 8 + characters. -- cgit v1.2.3-54-g00ecf