Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
nettle
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Marcus Hoffmann
nettle
Commits
0b2b1fb8
Commit
0b2b1fb8
authored
18 years ago
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
New file, extracted from io.c.
Rev: nettle/examples/read_rsa_key.c:1.1
parent
b33ecd9e
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/read_rsa_key.c
+48
-0
48 additions, 0 deletions
examples/read_rsa_key.c
with
48 additions
and
0 deletions
examples/read_rsa_key.c
0 → 100644
+
48
−
0
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
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment