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
LSH
lsh
Commits
b359c116
Commit
b359c116
authored
Aug 03, 2008
by
Niels Möller
Browse files
Deleted file.
Rev: src/randomness.c:1.30(DEAD)
parent
a6c9ff16
Changes
1
Show whitespace changes
Inline
Side-by-side
src/randomness.c
deleted
100644 → 0
View file @
a6c9ff16
/* randomness.c
*
*/
/* lsh, an implementation of the ssh protocol
*
* Copyright (C) 1998, 1999, 2000, Niels Möller
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; 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
"randomness.h"
#include
"xalloc.h"
#define GABA_DEFINE
#include
"randomness.h.x"
#undef GABA_DEFINE
/* Wrapper for using lsh's randomness generator with nettle
* functions. */
void
lsh_random
(
void
*
x
,
unsigned
length
,
uint8_t
*
data
)
{
CAST_SUBTYPE
(
randomness
,
r
,
x
);
RANDOM
(
r
,
length
,
data
);
}
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