Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Marcus Hoffmann
nettle
Commits
0b2b1fb8
Commit
0b2b1fb8
authored
May 14, 2007
by
Niels Möller
Browse files
New file, extracted from io.c.
Rev: nettle/examples/read_rsa_key.c:1.1
parent
b33ecd9e
Changes
1
Hide whitespace changes
Inline
Side-by-side
examples/read_rsa_key.c
0 → 100644
View file @
0b2b1fb8
/* Used by the rsa example programs. */
/* nettle, low-level cryptographics library
*
* Copyright (C) 2002, 2007 Niels Möller
*
* The nettle library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or (at your
* option) any later version.
*
* The nettle library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with the nettle library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
* MA 02111-1307, USA.
*/
#if HAVE_CONFIG_H
# include "config.h"
#endif
#include "io.h"
#include "rsa.h"
/* Split out from io.c, since it depends on hogweed. */
int
read_rsa_key
(
const
char
*
name
,
struct
rsa_public_key
*
pub
,
struct
rsa_private_key
*
priv
)
{
unsigned
length
;
char
*
buffer
;
int
res
;
length
=
read_file
(
name
,
0
,
&
buffer
);
if
(
!
length
)
return
0
;
res
=
rsa_keypair_from_sexp
(
pub
,
priv
,
0
,
length
,
buffer
);
free
(
buffer
);
return
res
;
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment