genrsa.c revision ba751492fcc4f161a18b983d4f018a1a52938cb9
/*
* Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
*
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC AND NETWORK ASSOCIATES DISCLAIMS
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE
* FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*
* Portions copyright (c) 2008 Nominet UK. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/* $Id$ */
/* genrsa [-m module] [-s $slot] [-p pin] [-t] [-b bits] [-n count] */
/*! \file */
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <isc/commandline.h>
#define getpassphrase(x) getpass(x)
#endif
#ifndef HAVE_CLOCK_GETTIME
#ifndef CLOCK_REALTIME
#define CLOCK_REALTIME 0
#endif
int
{
int result;
if (result)
return (result);
return (result);
}
#endif
int
CK_SLOT_ID slot = 0;
{
};
{
};
int error = 0;
int c, errflg = 0;
int ontoken = 0;
unsigned int count = 1000;
unsigned int i;
switch (c) {
case 'm':
break;
case 's':
break;
case 'p':
break;
case 't':
ontoken = 1;
break;
case 'b':
break;
case 'n':
break;
case ':':
"Option -%c requires an operand\n",
errflg++;
break;
case '?':
default:
errflg++;
}
}
if (errflg) {
"\tgenrsa [-m module] [-s slot] [-p pin] "
"[-t] [-b bits] [-n count]\n");
exit(1);
}
/* Allocate hanles */
pubKey = (CK_SESSION_HANDLE *)
perror("malloc");
exit(1);
}
privKey = (CK_SESSION_HANDLE *)
perror("malloc");
exit(1);
}
for (i = 0; i < count; i++) {
pubKey[i] = CK_INVALID_HANDLE;
privKey[i] = CK_INVALID_HANDLE;
}
/* Initialize the CRYPTOKI library */
if (result != ISC_R_SUCCESS) {
exit(1);
}
if (ontoken) {
}
perror("clock_gettime(start)");
goto exit_keys;
}
for (i = 0; i < count; i++) {
pubTemplate, 7,
privTemplate, 5,
"C_GenerateKeyPair[%u]: Error = 0x%.8lX\n",
i, rv);
error = 1;
if (i == 0)
goto exit_keys;
break;
}
}
perror("clock_gettime(end)");
goto exit_keys;
}
}
printf("%u generated RSA in %ld.%09lds\n", i,
if (i > 0)
printf("%g generated RSA/s\n",
for (i = 0; i < count; i++) {
/* Destroy keys */
if (pubKey[i] == CK_INVALID_HANDLE)
goto destroy_priv;
"C_DestroyObject[pub%u]: Error = 0x%.8lX\n",
i, rv);
errflg = 1;
}
if (privKey[i] == CK_INVALID_HANDLE)
continue;
"C_DestroyObject[priv%u]: Error = 0x%.8lX\n",
i, rv);
errflg = 1;
}
}
}