diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-05-18 08:31:03 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2000-05-18 08:31:03 +0000 |
commit | d394946459ff085eab94b4072298f33f09e50d7d (patch) | |
tree | f7cdbee26bfd398d6d495337578d14298572bc12 /lib/libkeynote/keynote.l | |
parent | f2ef614d5e97931697346705cbd094b4bba8741c (diff) |
Manpage links.
Diffstat (limited to 'lib/libkeynote/keynote.l')
-rw-r--r-- | lib/libkeynote/keynote.l | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/lib/libkeynote/keynote.l b/lib/libkeynote/keynote.l index d0fd6e11a29..4697a89fe70 100644 --- a/lib/libkeynote/keynote.l +++ b/lib/libkeynote/keynote.l @@ -1,5 +1,5 @@ %{ -/* $OpenBSD: keynote.l,v 1.9 2000/05/18 07:58:46 angelos Exp $ */ +/* $OpenBSD: keynote.l,v 1.10 2000/05/18 08:31:02 angelos Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@dsl.cis.upenn.edu) * @@ -674,7 +674,16 @@ keynote_evaluate_authorizer(struct assertion *as, int flag) } /* - * Parse a private key. + * Exportable front-end to keynote_get_private_key(). + */ +char * +kn_get_string(char *buf) +{ + return keynote_get_private_key(buf); +} + +/* + * Parse a private key -- actually, it can deal with any kind of string. */ char * keynote_get_private_key(char *buf) |