2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

2733. [cleanup] Clean up coding style in pkcs11-* tools. [RT #20355]

This commit is contained in:
Evan Hunt
2009-10-26 23:36:53 +00:00
parent c8aa7ce70d
commit 6f9c93a885
7 changed files with 768 additions and 549 deletions

View File

@@ -1,3 +1,5 @@
2733. [cleanup] Clean up coding style in pkcs11-* tools. [RT #20355]
2732. [func] Add optional filter-aaaa-on-v4 option, available 2732. [func] Add optional filter-aaaa-on-v4 option, available
if built with './configure --enable-filter-aaaa'. if built with './configure --enable-filter-aaaa'.
Filters out AAAA answers to clients connecting Filters out AAAA answers to clients connecting

View File

@@ -1,5 +1,49 @@
/*
* Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* 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
* documentation and/or other materials provided with the distribution.
*
* 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: pkcs11-destroy.c,v 1.7 2009/10/26 23:36:53 each Exp $ */
/* pkcs11-destroy [-m module] [-s $slot] [-i $id | -l $label] [-p $pin] */ /* pkcs11-destroy [-m module] [-s $slot] [-i $id | -l $label] [-p $pin] */
/*! \file */
#include <config.h> #include <config.h>
#include <stdio.h> #include <stdio.h>
@@ -26,179 +70,189 @@
int int
main(int argc, char *argv[]) main(int argc, char *argv[])
{ {
CK_RV rv; CK_RV rv;
CK_SLOT_ID slot = 0; CK_SLOT_ID slot = 0;
CK_SESSION_HANDLE hSession; CK_SESSION_HANDLE hSession;
CK_UTF8CHAR *pin = NULL; CK_UTF8CHAR *pin = NULL;
CK_BYTE attr_id[2]; CK_BYTE attr_id[2];
CK_OBJECT_HANDLE akey[50]; CK_OBJECT_HANDLE akey[50];
char *label = NULL; char *label = NULL;
int error = 0; int error = 0;
unsigned int id = 0, i = 0; unsigned int id = 0, i = 0;
int c, errflg = 0; int c, errflg = 0;
CK_ULONG ulObjectCount; CK_ULONG ulObjectCount;
CK_ATTRIBUTE search_template[] = { CK_ATTRIBUTE search_template[] = {
{CKA_ID, &attr_id, sizeof(attr_id)} {CKA_ID, &attr_id, sizeof(attr_id)}
};
extern char *optarg;
extern int optopt;
char *pk11_provider;
pk11_provider = getenv("PKCS11_PROVIDER");
if (pk11_provider != NULL)
pk11_libname = pk11_provider;
while ((c = getopt(argc, argv, ":m:s:i:l:p:")) != -1) {
switch (c) {
case 'm':
pk11_libname = optarg;
break;
case 's':
slot = atoi(optarg);
break;
case 'i':
id = atoi(optarg);
id &= 0xffff;
break;
case 'l':
label = optarg;
break;
case 'p':
pin = (CK_UTF8CHAR *)optarg;
break;
case ':':
fprintf(stderr, "Option -%c requires an operand\n", optopt);
errflg++;
break;
case '?':
default:
fprintf(stderr, "Unrecognised option: -%c\n", optopt);
errflg++;
}
}
if (errflg || ((!id) && (!label))) {
fprintf(stderr,
"usage: pkcs11-destroy [-m module] [-s slot] "
"[-i id | -l label] [-p pin]\n");
exit(1);
}
if (id) {
printf("id %i\n", id);
attr_id[0] = (id >> 8) & 0xff;
attr_id[1] = id & 0xff;
} else if (label) {
printf("label %s\n", label);
search_template[0].type = CKA_LABEL;
search_template[0].pValue = label;
search_template[0].ulValueLen = strlen(label);
}
/* Initialize the CRYPTOKI library */
rv = C_Initialize(NULL_PTR);
if (rv != CKR_OK) {
if (rv == 0xfe)
fprintf(stderr,
"Can't load or link module \"%s\"\n",
pk11_libname);
else
fprintf(stderr, "C_Initialize: Error = 0x%.8lX\n", rv);
exit(1);
}
/* Open a session on the slot found */
rv = C_OpenSession(slot, CKF_RW_SESSION+CKF_SERIAL_SESSION,
NULL_PTR, NULL_PTR, &hSession);
if (rv != CKR_OK) {
fprintf(stderr, "C_OpenSession: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_program;
}
/* Login to the Token (Keystore) */
if (!pin)
pin = (CK_UTF8CHAR *)getpassphrase("Enter Pin: ");
rv = C_Login(hSession, CKU_USER, pin, strlen((char *)pin));
memset(pin, 0, strlen((char *)pin));
if (rv != CKR_OK) {
fprintf(stderr, "C_Login: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_session;
}
rv = C_FindObjectsInit(hSession, search_template,
((id != 0) || (label != NULL)) ? 1 : 0);
if (rv != CKR_OK) {
fprintf(stderr, "C_FindObjectsInit: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_session;
}
rv = C_FindObjects(hSession, akey, 50, &ulObjectCount);
if (rv != CKR_OK) {
fprintf(stderr, "C_FindObjects: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_search;
}
for (i = 0; i < ulObjectCount; i++) {
CK_OBJECT_CLASS oclass = 0;
CK_BYTE labelbuf[64 + 1];
CK_BYTE idbuf[64];
CK_ATTRIBUTE attr_template[] = {
{CKA_CLASS, &oclass, sizeof(oclass)},
{CKA_LABEL, labelbuf, sizeof(labelbuf) - 1},
{CKA_ID, idbuf, sizeof(idbuf)}
}; };
char *pk11_provider;
unsigned int j, len; unsigned int j, len;
extern char *optarg;
extern int optopt;
memset(labelbuf, 0, sizeof(labelbuf)); pk11_provider = getenv("PKCS11_PROVIDER");
memset(idbuf, 0, sizeof(idbuf)); if (pk11_provider != NULL)
pk11_libname = pk11_provider;
rv = C_GetAttributeValue(hSession, akey[i], attr_template, 3); while ((c = getopt(argc, argv, ":m:s:i:l:p:")) != -1) {
if (rv != CKR_OK) { switch (c) {
fprintf(stderr, "C_GetAttributeValue[%u]: rv = 0x%.8lX\n", i, rv); case 'm':
error = 1; pk11_libname = optarg;
goto exit_search; break;
case 's':
slot = atoi(optarg);
break;
case 'i':
id = atoi(optarg);
id &= 0xffff;
break;
case 'l':
label = optarg;
break;
case 'p':
pin = (CK_UTF8CHAR *)optarg;
break;
case ':':
fprintf(stderr,
"Option -%c requires an operand\n",
optopt);
errflg++;
break;
case '?':
default:
fprintf(stderr, "Unrecognised option: -%c\n", optopt);
errflg++;
}
} }
len = attr_template[2].ulValueLen;
printf("object[%u]: class %lu label '%s' id[%lu] ",
i, oclass, labelbuf, attr_template[2].ulValueLen);
if (len > 4)
len = 4;
if (len > 0)
printf("0x");
for (j = 0; j < len; j++)
printf("%02x", idbuf[j]);
if (attr_template[2].ulValueLen > len)
printf("...\n");
else
printf("\n");
}
/* give a chance to kill this */ if (errflg || (!id && (label != NULL))) {
printf("sleeping 5 seconds...\n"); fprintf(stderr, "Usage:\n");
sleep(5); fprintf(stderr, "\tpkcs11-destroy [-m module] [-s slot] "
"[-i id | -l label] [-p pin]\n");
for (i = 0; i < ulObjectCount; i++) { exit(1);
rv = C_DestroyObject(hSession, akey[i]); }
if (rv != CKR_OK) {
fprintf(stderr, "C_DestroyObject[%u]: rv = 0x%.8lX\n", i, rv); if (id) {
error = 1; printf("id %i\n", id);
attr_id[0] = (id >> 8) & 0xff;
attr_id[1] = id & 0xff;
} else if (label) {
printf("label %s\n", label);
search_template[0].type = CKA_LABEL;
search_template[0].pValue = label;
search_template[0].ulValueLen = strlen(label);
}
/* Initialize the CRYPTOKI library */
rv = C_Initialize(NULL_PTR);
if (rv != CKR_OK) {
if (rv == 0xfe)
fprintf(stderr,
"Can't load or link module \"%s\"\n",
pk11_libname);
else
fprintf(stderr, "C_Initialize: Error = 0x%.8lX\n", rv);
exit(1);
}
/* Open a session on the slot found */
rv = C_OpenSession(slot, CKF_RW_SESSION+CKF_SERIAL_SESSION,
NULL_PTR, NULL_PTR, &hSession);
if (rv != CKR_OK) {
fprintf(stderr, "C_OpenSession: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_program;
}
if (pin == NULL)
pin = (CK_UTF8CHAR *)getpassphrase("Enter Pin: ");
/* Login to the Token (Keystore) */
rv = C_Login(hSession, CKU_USER, pin, strlen((char *)pin));
memset(pin, 0, strlen((char *)pin));
if (rv != CKR_OK) {
fprintf(stderr, "C_Login: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_session;
}
rv = C_FindObjectsInit(hSession, search_template,
((id != 0) || (label != NULL)) ? 1 : 0);
if (rv != CKR_OK) {
fprintf(stderr, "C_FindObjectsInit: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_session;
}
rv = C_FindObjects(hSession, akey, 50, &ulObjectCount);
if (rv != CKR_OK) {
fprintf(stderr, "C_FindObjects: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_search;
}
for (i = 0; i < ulObjectCount; i++) {
CK_OBJECT_CLASS oclass = 0;
CK_BYTE labelbuf[64 + 1];
CK_BYTE idbuf[64];
CK_ATTRIBUTE attr_template[] = {
{CKA_CLASS, &oclass, sizeof(oclass)},
{CKA_LABEL, labelbuf, sizeof(labelbuf) - 1},
{CKA_ID, idbuf, sizeof(idbuf)}
};
memset(labelbuf, 0, sizeof(labelbuf));
memset(idbuf, 0, sizeof(idbuf));
rv = C_GetAttributeValue(hSession, akey[i], attr_template, 3);
if (rv != CKR_OK) {
fprintf(stderr,
"C_GetAttributeValue[%u]: rv = 0x%.8lX\n",
i, rv);
error = 1;
goto exit_search;
}
len = attr_template[2].ulValueLen;
printf("object[%u]: class %lu label '%s' id[%lu] ",
i, oclass, labelbuf, attr_template[2].ulValueLen);
if (len > 4)
len = 4;
if (len > 0)
printf("0x");
for (j = 0; j < len; j++)
printf("%02x", idbuf[j]);
if (attr_template[2].ulValueLen > len)
printf("...\n");
else
printf("\n");
}
/* give a chance to kill this */
printf("sleeping 5 seconds...\n");
sleep(5);
for (i = 0; i < ulObjectCount; i++) {
rv = C_DestroyObject(hSession, akey[i]);
if (rv != CKR_OK) {
fprintf(stderr,
"C_DestroyObject[%u]: rv = 0x%.8lX\n",
i, rv);
error = 1;
}
} }
}
exit_search: exit_search:
rv = C_FindObjectsFinal(hSession); rv = C_FindObjectsFinal(hSession);
if (rv != CKR_OK) { if (rv != CKR_OK) {
fprintf(stderr, "C_FindObjectsFinal: Error = 0x%.8lX\n", rv); fprintf(stderr, "C_FindObjectsFinal: Error = 0x%.8lX\n", rv);
error = 1; error = 1;
} }
exit_session: exit_session:
(void) C_CloseSession(hSession); (void)C_CloseSession(hSession);
exit_program: exit_program:
(void) C_Finalize(NULL_PTR); (void)C_Finalize(NULL_PTR);
exit(error); exit(error);
} }

View File

@@ -1,16 +1,60 @@
/* pkcs11-keygen - pkcs11 rsa key generator /*
* Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
* *
* create RSASHA1 key in the keystore of an SCA6000 * Permission to use, copy, modify, and/or distribute this software for any
* The calculation of key tag is left to the script * purpose with or without fee is hereby granted, provided that the above
* that converts the key into a DNSKEY RR and inserts * copyright notice and this permission notice appear in all copies.
* it into a zone file.
*
* usage:
* pkcs11-keygen [-P] [-m module] [-s slot] [-e] -b keysize
* -l label [-i id] [-p pin]
* *
* 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
* documentation and/or other materials provided with the distribution.
*
* 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: pkcs11-keygen.c,v 1.9 2009/10/26 23:36:53 each Exp $ */
/* pkcs11-keygen - pkcs11 rsa key generator
*
* create RSASHA1 key in the keystore of an SCA6000
* The calculation of key tag is left to the script
* that converts the key into a DNSKEY RR and inserts
* it into a zone file.
*
* usage:
* pkcs11-keygen [-P] [-m module] [-s slot] [-e] -b keysize
* -l label [-i id] [-p pin]
*
*/
/*! \file */
#include <config.h> #include <config.h>
#include <stdio.h> #include <stdio.h>
@@ -40,222 +84,225 @@ static CK_BBOOL falsevalue = FALSE;
int int
main(int argc, char *argv[]) main(int argc, char *argv[])
{ {
CK_RV rv; CK_RV rv;
CK_SLOT_ID slot = 0; CK_SLOT_ID slot = 0;
CK_MECHANISM genmech; CK_MECHANISM genmech;
CK_SESSION_HANDLE hSession; CK_SESSION_HANDLE hSession;
CK_UTF8CHAR *pin = NULL; CK_UTF8CHAR *pin = NULL;
CK_ULONG modulusbits = 0; CK_ULONG modulusbits = 0;
CK_CHAR *label = NULL; CK_CHAR *label = NULL;
CK_OBJECT_HANDLE privatekey, publickey; CK_OBJECT_HANDLE privatekey, publickey;
CK_BYTE public_exponent[5]; CK_BYTE public_exponent[5];
CK_ULONG expsize = 3; CK_ULONG expsize = 3;
int error = 0; int error = 0;
int c, errflg = 0; int c, errflg = 0;
int hide = 1; int hide = 1;
int idlen = 0; int idlen = 0;
unsigned long id = 0; unsigned long id = 0;
CK_BYTE idbuf[4]; CK_BYTE idbuf[4];
CK_ULONG ulObjectCount; CK_ULONG ulObjectCount;
/* Set search template */ /* Set search template */
CK_ATTRIBUTE search_template[] = { CK_ATTRIBUTE search_template[] = {
{CKA_LABEL, NULL_PTR, 0} {CKA_LABEL, NULL_PTR, 0}
}; };
CK_ATTRIBUTE publickey_template[] = { CK_ATTRIBUTE publickey_template[] = {
{CKA_LABEL, NULL_PTR, 0}, {CKA_LABEL, NULL_PTR, 0},
{CKA_VERIFY, &truevalue, sizeof (truevalue)}, {CKA_VERIFY, &truevalue, sizeof(truevalue)},
{CKA_TOKEN, &truevalue, sizeof (truevalue)}, {CKA_TOKEN, &truevalue, sizeof(truevalue)},
{CKA_MODULUS_BITS, &modulusbits, sizeof (modulusbits)}, {CKA_MODULUS_BITS, &modulusbits, sizeof(modulusbits)},
{CKA_PUBLIC_EXPONENT, &public_exponent, expsize}, {CKA_PUBLIC_EXPONENT, &public_exponent, expsize},
{CKA_ID, &idbuf, idlen} {CKA_ID, &idbuf, idlen}
}; };
CK_ULONG publickey_attrcnt = 6; CK_ULONG publickey_attrcnt = 6;
CK_ATTRIBUTE privatekey_template[] = { CK_ATTRIBUTE privatekey_template[] = {
{CKA_LABEL, NULL_PTR, 0}, {CKA_LABEL, NULL_PTR, 0},
{CKA_SIGN, &truevalue, sizeof (truevalue)}, {CKA_SIGN, &truevalue, sizeof(truevalue)},
{CKA_TOKEN, &truevalue, sizeof (truevalue)}, {CKA_TOKEN, &truevalue, sizeof(truevalue)},
{CKA_PRIVATE, &truevalue, sizeof (truevalue)}, {CKA_PRIVATE, &truevalue, sizeof(truevalue)},
{CKA_SENSITIVE, &truevalue, sizeof (truevalue)}, {CKA_SENSITIVE, &truevalue, sizeof(truevalue)},
{CKA_EXTRACTABLE, &falsevalue, sizeof (falsevalue)}, {CKA_EXTRACTABLE, &falsevalue, sizeof(falsevalue)},
{CKA_ID, &idbuf, idlen} {CKA_ID, &idbuf, idlen}
}; };
CK_ULONG privatekey_attrcnt = 7; CK_ULONG privatekey_attrcnt = 7;
extern char *optarg; char *pk11_provider;
extern int optopt; extern char *optarg;
char *pk11_provider; extern int optopt;
pk11_provider = getenv("PKCS11_PROVIDER"); pk11_provider = getenv("PKCS11_PROVIDER");
if (pk11_provider != NULL) if (pk11_provider != NULL)
pk11_libname = pk11_provider; pk11_libname = pk11_provider;
while ((c = getopt(argc, argv, ":Pm:s:b:ei:l:p:")) != -1) {
switch (c) {
case 'P':
hide = 0;
break;
case 'm':
pk11_libname = optarg;
break;
case 's':
slot = atoi(optarg);
break;
case 'e':
expsize = 5;
break;
case 'b':
modulusbits = atoi(optarg);
break;
case 'l':
label = (CK_CHAR *)optarg;
break;
case 'i':
id = strtoul(optarg, NULL, 0);
idlen = 4;
break;
case 'p':
pin = (CK_UTF8CHAR *)optarg;
break;
case ':':
fprintf(stderr, "Option -%c requires an operand\n", optopt);
errflg++;
break;
case '?':
default:
fprintf(stderr, "Unrecognised option: -%c\n", optopt);
errflg++;
}
}
if ((errflg) || (!modulusbits) || (!label)) {
fprintf(stderr,
"usage: pkcs11-keygen "
"[-P] [-m module] [-s slot] [-e] -b keysize\n"
" "
"-l label [-i id] [-p pin]\n");
exit(2);
}
search_template[0].pValue = label;
search_template[0].ulValueLen = strlen((char *)label);
publickey_template[0].pValue = label;
publickey_template[0].ulValueLen = strlen((char *)label);
privatekey_template[0].pValue = label;
privatekey_template[0].ulValueLen = strlen((char *)label);
/* Set public exponent to F4 or F5 */ while ((c = getopt(argc, argv, ":Pm:s:b:ei:l:p:")) != -1) {
public_exponent[0] = 0x01; switch (c) {
public_exponent[1] = 0x00; case 'P':
if (expsize == 3) hide = 0;
public_exponent[2] = 0x01; break;
else { case 'm':
publickey_template[4].ulValueLen = expsize; pk11_libname = optarg;
public_exponent[2] = 0x00; break;
public_exponent[3] = 0x00; case 's':
public_exponent[4] = 0x01; slot = atoi(optarg);
} break;
case 'e':
expsize = 5;
break;
case 'b':
modulusbits = atoi(optarg);
break;
case 'l':
label = (CK_CHAR *)optarg;
break;
case 'i':
id = strtoul(optarg, NULL, 0);
idlen = 4;
break;
case 'p':
pin = (CK_UTF8CHAR *)optarg;
break;
case ':':
fprintf(stderr,
"Option -%c requires an operand\n",
optopt);
errflg++;
break;
case '?':
default:
fprintf(stderr, "Unrecognised option: -%c\n", optopt);
errflg++;
}
}
/* Set up mechanism for generating key pair */ if (errflg || !modulusbits || (label == NULL)) {
genmech.mechanism = CKM_RSA_PKCS_KEY_PAIR_GEN; fprintf(stderr, "Usage:\n");
genmech.pParameter = NULL_PTR; fprintf(stderr, "\tpkcs11-keygen -b keysize -l label\n");
genmech.ulParameterLen = 0; fprintf(stderr, "\t [-P] [-m module] "
"[-s slot] [-e] [-i id] [-p PIN]\n");
exit(2);
}
search_template[0].pValue = label;
search_template[0].ulValueLen = strlen((char *)label);
publickey_template[0].pValue = label;
publickey_template[0].ulValueLen = strlen((char *)label);
privatekey_template[0].pValue = label;
privatekey_template[0].ulValueLen = strlen((char *)label);
if (idlen == 0) { /* Set public exponent to F4 or F5 */
publickey_attrcnt--; public_exponent[0] = 0x01;
privatekey_attrcnt--; public_exponent[1] = 0x00;
} else if (id <= 0xffff) { if (expsize == 3)
idlen = 2; public_exponent[2] = 0x01;
publickey_template[5].ulValueLen = idlen; else {
privatekey_template[6].ulValueLen = idlen; publickey_template[4].ulValueLen = expsize;
idbuf[0] = (CK_BYTE) (id >> 8); public_exponent[2] = 0x00;
idbuf[1] = (CK_BYTE) id; public_exponent[3] = 0x00;
} else { public_exponent[4] = 0x01;
idbuf[0] = (CK_BYTE) (id >> 24); }
idbuf[1] = (CK_BYTE) (id >> 16);
idbuf[2] = (CK_BYTE) (id >> 8);
idbuf[3] = (CK_BYTE) id;
}
/* Initialize the CRYPTOKI library */ /* Set up mechanism for generating key pair */
rv = C_Initialize(NULL_PTR); genmech.mechanism = CKM_RSA_PKCS_KEY_PAIR_GEN;
genmech.pParameter = NULL_PTR;
genmech.ulParameterLen = 0;
if (rv != CKR_OK) { if (idlen == 0) {
if (rv == 0xfe) publickey_attrcnt--;
fprintf(stderr, privatekey_attrcnt--;
"Can't load or link module \"%s\"\n", } else if (id <= 0xffff) {
pk11_libname); idlen = 2;
else publickey_template[5].ulValueLen = idlen;
fprintf(stderr, "C_Initialize: Error = 0x%.8lX\n", rv); privatekey_template[6].ulValueLen = idlen;
exit(1); idbuf[0] = (CK_BYTE)(id >> 8);
} idbuf[1] = (CK_BYTE)id;
} else {
idbuf[0] = (CK_BYTE)(id >> 24);
idbuf[1] = (CK_BYTE)(id >> 16);
idbuf[2] = (CK_BYTE)(id >> 8);
idbuf[3] = (CK_BYTE)id;
}
/* Open a session on the slot found */ /* Initialize the CRYPTOKI library */
rv = C_OpenSession(slot, CKF_RW_SESSION+CKF_SERIAL_SESSION, rv = C_Initialize(NULL_PTR);
NULL_PTR, NULL_PTR, &hSession);
if (rv != CKR_OK) { if (rv != CKR_OK) {
fprintf(stderr, "C_OpenSession: Error = 0x%.8lX\n", rv); if (rv == 0xfe)
error = 1; fprintf(stderr,
goto exit_program; "Can't load or link module \"%s\"\n",
} pk11_libname);
else
fprintf(stderr, "C_Initialize: Error = 0x%.8lX\n", rv);
exit(1);
}
/* Login to the Token (Keystore) */ /* Open a session on the slot found */
if (!pin) rv = C_OpenSession(slot, CKF_RW_SESSION+CKF_SERIAL_SESSION,
pin = (CK_UTF8CHAR *)getpassphrase("Enter Pin: "); NULL_PTR, NULL_PTR, &hSession);
rv = C_Login(hSession, CKU_USER, pin, strlen((char *)pin));
memset(pin, 0, strlen((char *)pin));
if (rv != CKR_OK) {
fprintf(stderr, "C_Login: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_session;
}
/* check if a key with the same id already exists */
rv = C_FindObjectsInit(hSession, search_template, 1);
if (rv != CKR_OK) {
fprintf(stderr, "C_FindObjectsInit: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_session;
}
rv = C_FindObjects(hSession, &privatekey, 1, &ulObjectCount);
if (rv != CKR_OK) {
fprintf(stderr, "C_FindObjects: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_search;
}
if (ulObjectCount != 0) {
fprintf(stderr, "Key already exists.\n");
error = 1;
goto exit_search;
}
/* Set attributes if the key is not to be hidden */
if (!hide) {
privatekey_template[4].pValue = &falsevalue;
privatekey_template[5].pValue = &truevalue;
}
/* Generate Key pair for signing/verifying */ if (rv != CKR_OK) {
rv = C_GenerateKeyPair(hSession, &genmech, fprintf(stderr, "C_OpenSession: Error = 0x%.8lX\n", rv);
publickey_template, publickey_attrcnt, error = 1;
privatekey_template, privatekey_attrcnt, goto exit_program;
&publickey, &privatekey); }
if (rv != CKR_OK) { /* Login to the Token (Keystore) */
fprintf(stderr, "C_GenerateKeyPair: Error = 0x%.8lX\n", rv); if (pin == NULL)
error = 1; pin = (CK_UTF8CHAR *)getpassphrase("Enter Pin: ");
}
rv = C_Login(hSession, CKU_USER, pin, strlen((char *)pin));
memset(pin, 0, strlen((char *)pin));
if (rv != CKR_OK) {
fprintf(stderr, "C_Login: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_session;
}
/* check if a key with the same id already exists */
rv = C_FindObjectsInit(hSession, search_template, 1);
if (rv != CKR_OK) {
fprintf(stderr, "C_FindObjectsInit: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_session;
}
rv = C_FindObjects(hSession, &privatekey, 1, &ulObjectCount);
if (rv != CKR_OK) {
fprintf(stderr, "C_FindObjects: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_search;
}
if (ulObjectCount != 0) {
fprintf(stderr, "Key already exists.\n");
error = 1;
goto exit_search;
}
/* Set attributes if the key is not to be hidden */
if (!hide) {
privatekey_template[4].pValue = &falsevalue;
privatekey_template[5].pValue = &truevalue;
}
/* Generate Key pair for signing/verifying */
rv = C_GenerateKeyPair(hSession, &genmech,
publickey_template, publickey_attrcnt,
privatekey_template, privatekey_attrcnt,
&publickey, &privatekey);
if (rv != CKR_OK) {
fprintf(stderr, "C_GenerateKeyPair: Error = 0x%.8lX\n", rv);
error = 1;
}
exit_search: exit_search:
rv = C_FindObjectsFinal(hSession); rv = C_FindObjectsFinal(hSession);
if (rv != CKR_OK) { if (rv != CKR_OK) {
fprintf(stderr, "C_FindObjectsFinal: Error = 0x%.8lX\n", rv); fprintf(stderr, "C_FindObjectsFinal: Error = 0x%.8lX\n", rv);
error = 1; error = 1;
} }
exit_session: exit_session:
(void) C_CloseSession(hSession); (void)C_CloseSession(hSession);
exit_program: exit_program:
(void) C_Finalize(NULL_PTR); (void)C_Finalize(NULL_PTR);
exit(error); exit(error);
} }

View File

@@ -1,5 +1,49 @@
/*
* Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* 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
* documentation and/or other materials provided with the distribution.
*
* 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: pkcs11-list.c,v 1.7 2009/10/26 23:36:53 each Exp $ */
/* pkcs11-list [-P] [-m module] [-s slot] [-i $id | -l $label] [-p $pin] */ /* pkcs11-list [-P] [-m module] [-s slot] [-i $id | -l $label] [-p $pin] */
/*! \file */
#include <config.h> #include <config.h>
#include <stdio.h> #include <stdio.h>
@@ -19,200 +63,214 @@
#endif #endif
#if !(defined(HAVE_GETPASSPHRASE) || (defined (__SVR4) && defined (__sun))) #if !(defined(HAVE_GETPASSPHRASE) || (defined (__SVR4) && defined (__sun)))
#define getpassphrase(x) getpass(x) #define getpassphrase(x) getpass(x)
#endif #endif
int int
main(int argc, char *argv[]) main(int argc, char *argv[])
{ {
CK_RV rv; CK_RV rv;
CK_SLOT_ID slot = 0; CK_SLOT_ID slot = 0;
CK_SESSION_HANDLE hSession; CK_SESSION_HANDLE hSession;
CK_UTF8CHAR *pin = NULL; CK_UTF8CHAR *pin = NULL;
CK_BYTE attr_id[2]; CK_BYTE attr_id[2];
CK_OBJECT_HANDLE akey[50]; CK_OBJECT_HANDLE akey[50];
char *label = NULL; char *label = NULL;
int error = 0, public = 0, all = 0; int error = 0, public = 0, all = 0;
unsigned int i = 0, id = 0; unsigned int i = 0, id = 0;
int c, errflg = 0; int c, errflg = 0;
CK_ULONG ulObjectCount; CK_ULONG ulObjectCount;
CK_ATTRIBUTE search_template[] = { CK_ATTRIBUTE search_template[] = {
{CKA_ID, &attr_id, sizeof(attr_id)} {CKA_ID, &attr_id, sizeof(attr_id)}
}; };
extern char *optarg; char *pk11_provider;
extern int optopt; extern char *optarg;
char *pk11_provider; extern int optopt;
pk11_provider = getenv("PKCS11_PROVIDER"); pk11_provider = getenv("PKCS11_PROVIDER");
if (pk11_provider != NULL) if (pk11_provider != NULL)
pk11_libname = pk11_provider; pk11_libname = pk11_provider;
while ((c = getopt(argc, argv, ":m:s:i:l:p:P")) != -1) { while ((c = getopt(argc, argv, ":m:s:i:l:p:P")) != -1) {
switch (c) { switch (c) {
case 'P': case 'P':
public = 1; public = 1;
break; break;
case 'm': case 'm':
pk11_libname = optarg; pk11_libname = optarg;
break; break;
case 's': case 's':
slot = atoi(optarg); slot = atoi(optarg);
break; break;
case 'i': case 'i':
id = atoi(optarg); id = atoi(optarg);
id &= 0xffff; id &= 0xffff;
break; break;
case 'l': case 'l':
label = optarg; label = optarg;
break; break;
case 'p': case 'p':
pin = (CK_UTF8CHAR *)optarg; pin = (CK_UTF8CHAR *)optarg;
break; break;
case ':': case ':':
fprintf(stderr, "Option -%c requires an operand\n", optopt); fprintf(stderr, "Option -%c requires an operand\n",
errflg++; optopt);
break; errflg++;
case '?': break;
default: case '?':
fprintf(stderr, "Unrecognised option: -%c\n", optopt); default:
errflg++; fprintf(stderr, "Unrecognised option: -%c\n", optopt);
errflg++;
}
} }
}
if (errflg) {
fprintf(stderr,
"usage: pkcs11-list [-P] [-m module] [-s slot] "
"[-i id | -l label] [-p pin]\n");
exit(1);
}
if ((!id) && (!label))
all = 1;
if (slot)
printf("slot %lu\n", slot);
if (id) {
printf("id %i\n", id);
attr_id[0] = (id >> 8) & 0xff;
attr_id[1] = id & 0xff;
} else if (label) {
printf("label %s\n", label);
search_template[0].type = CKA_LABEL;
search_template[0].pValue = label;
search_template[0].ulValueLen = strlen(label);
}
/* Initialize the CRYPTOKI library */ if (errflg) {
rv = C_Initialize(NULL_PTR); fprintf(stderr, "Usage:\n");
if (rv != CKR_OK) { fprintf(stderr, "\tpkcs11-list [-P] [-m module] [-s slot] "
if (rv == 0xfe) "[-i id | -l label] [-p pin]\n");
fprintf(stderr, exit(1);
"Can't load or link module \"%s\"\n", }
pk11_libname);
else
fprintf(stderr, "C_Initialize: Error = 0x%.8lX\n", rv);
exit(1);
}
/* Open a session on the slot found */ if (!id && (label == NULL))
rv = C_OpenSession(slot, CKF_SERIAL_SESSION, all = 1;
NULL_PTR, NULL_PTR, &hSession);
if (rv != CKR_OK) {
fprintf(stderr, "C_OpenSession: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_program;
}
/* Login to the Token (Keystore) */ if (slot)
if (!public) { printf("slot %lu\n", slot);
if (!pin)
pin = (CK_UTF8CHAR *)getpassphrase("Enter Pin: "); if (id) {
rv = C_Login(hSession, CKU_USER, pin, strlen((char *)pin)); printf("id %i\n", id);
memset(pin, 0, strlen((char *)pin)); attr_id[0] = (id >> 8) & 0xff;
attr_id[1] = id & 0xff;
} else if (label != NULL) {
printf("label %s\n", label);
search_template[0].type = CKA_LABEL;
search_template[0].pValue = label;
search_template[0].ulValueLen = strlen(label);
}
/* Initialize the CRYPTOKI library */
rv = C_Initialize(NULL_PTR);
if (rv != CKR_OK) { if (rv != CKR_OK) {
fprintf(stderr, "C_Login: Error = 0x%.8lX\n", rv); if (rv == 0xfe)
error = 1; fprintf(stderr,
goto exit_session; "Can't load or link module \"%s\"\n",
} pk11_libname);
}
rv = C_FindObjectsInit(hSession, search_template, all ? 0 : 1);
if (rv != CKR_OK) {
fprintf(stderr, "C_FindObjectsInit: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_session;
}
ulObjectCount = 1;
while (ulObjectCount) {
rv = C_FindObjects(hSession, akey, 50, &ulObjectCount);
if (rv != CKR_OK) {
fprintf(stderr, "C_FindObjects: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_search;
}
for (i = 0; i < ulObjectCount; i++) {
CK_OBJECT_CLASS oclass = 0;
CK_BYTE labelbuf[64 + 1];
CK_BYTE idbuf[64];
CK_ATTRIBUTE attr_template[] = {
{CKA_CLASS, &oclass, sizeof(oclass)},
{CKA_LABEL, labelbuf, sizeof(labelbuf) - 1},
{CKA_ID, idbuf, sizeof(idbuf)}
};
unsigned int j, len;
memset(labelbuf, 0, sizeof(labelbuf));
memset(idbuf, 0, sizeof(idbuf));
rv = C_GetAttributeValue(hSession, akey[i], attr_template, 3);
if (rv != CKR_OK) {
fprintf(stderr,
"C_GetAttributeValue[%u]: rv = 0x%.8lX\n", i, rv);
if (rv == CKR_BUFFER_TOO_SMALL)
fprintf(stderr, "%u too small: %lu %lu %lu\n", i,
attr_template[0].ulValueLen,
attr_template[1].ulValueLen,
attr_template[2].ulValueLen);
error = 1;
continue;
}
len = attr_template[2].ulValueLen;
printf("object[%u]: handle %lu class %lu "
"label[%lu] '%s' id[%lu] ",
i, akey[i], oclass,
attr_template[1].ulValueLen, labelbuf,
attr_template[2].ulValueLen);
if (len == 2) {
id = (idbuf[0] << 8) & 0xff00;
id |= idbuf[1] & 0xff;
printf("%u\n", id);
} else {
if (len > 8)
len = 8;
if (len > 0)
printf("0x");
for (j = 0; j < len; j++)
printf("%02x", idbuf[j]);
if (attr_template[2].ulValueLen > len)
printf("...\n");
else else
printf("\n"); fprintf(stderr, "C_Initialize: Error = 0x%.8lX\n", rv);
} exit(1);
}
/* Open a session on the slot found */
rv = C_OpenSession(slot, CKF_SERIAL_SESSION,
NULL_PTR, NULL_PTR, &hSession);
if (rv != CKR_OK) {
fprintf(stderr, "C_OpenSession: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_program;
}
/* Login to the Token (Keystore) */
if (!public) {
if (pin == NULL)
pin = (CK_UTF8CHAR *)getpassphrase("Enter Pin: ");
rv = C_Login(hSession, CKU_USER, pin, strlen((char *)pin));
memset(pin, 0, strlen((char *)pin));
if (rv != CKR_OK) {
fprintf(stderr, "C_Login: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_session;
}
}
rv = C_FindObjectsInit(hSession, search_template, all ? 0 : 1);
if (rv != CKR_OK) {
fprintf(stderr, "C_FindObjectsInit: Error = 0x%.8lX\n", rv);
error = 1;
goto exit_session;
}
ulObjectCount = 1;
while (ulObjectCount) {
rv = C_FindObjects(hSession, akey, 50, &ulObjectCount);
if (rv != CKR_OK) {
fprintf(stderr,
"C_FindObjects: Error = 0x%.8lX\n",
rv);
error = 1;
goto exit_search;
}
for (i = 0; i < ulObjectCount; i++) {
unsigned int j, len;
CK_OBJECT_CLASS oclass = 0;
CK_BYTE labelbuf[64 + 1];
CK_BYTE idbuf[64];
CK_ATTRIBUTE template[] = {
{CKA_CLASS, &oclass, sizeof(oclass)},
{CKA_LABEL, labelbuf, sizeof(labelbuf) - 1},
{CKA_ID, idbuf, sizeof(idbuf)}
};
memset(labelbuf, 0, sizeof(labelbuf));
memset(idbuf, 0, sizeof(idbuf));
rv = C_GetAttributeValue(hSession, akey[i],
template, 3);
if (rv != CKR_OK) {
fprintf(stderr,
"C_GetAttributeValue[%u]: "
"rv = 0x%.8lX\n",
i, rv);
if (rv == CKR_BUFFER_TOO_SMALL)
fprintf(stderr,
"%u too small: %lu %lu %lu\n",
i,
template[0].ulValueLen,
template[1].ulValueLen,
template[2].ulValueLen);
error = 1;
continue;
}
len = template[2].ulValueLen;
printf("object[%u]: handle %lu class %lu "
"label[%lu] '%s' id[%lu] ",
i, akey[i], oclass,
template[1].ulValueLen,
labelbuf,
template[2].ulValueLen);
if (len == 2) {
id = (idbuf[0] << 8) & 0xff00;
id |= idbuf[1] & 0xff;
printf("%u\n", id);
} else {
if (len > 8)
len = 8;
if (len > 0)
printf("0x");
for (j = 0; j < len; j++)
printf("%02x", idbuf[j]);
if (template[2].ulValueLen > len)
printf("...\n");
else
printf("\n");
}
}
} }
}
exit_search: exit_search:
rv = C_FindObjectsFinal(hSession); rv = C_FindObjectsFinal(hSession);
if (rv != CKR_OK) { if (rv != CKR_OK) {
fprintf(stderr, "C_FindObjectsFinal: Error = 0x%.8lX\n", rv); fprintf(stderr, "C_FindObjectsFinal: Error = 0x%.8lX\n", rv);
error = 1; error = 1;
} }
exit_session: exit_session:
(void) C_CloseSession(hSession); (void)C_CloseSession(hSession);
exit_program: exit_program:
(void) C_Finalize(NULL_PTR); (void)C_Finalize(NULL_PTR);
exit(error); exit(error);
} }

View File

@@ -1,7 +1,25 @@
/* cryptoki.h include file for PKCS #11. */ /* cryptoki.h include file for PKCS #11. */
/* $Revision: 1.2 $ */ /*
* Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* 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.
*/
/* $Revision: 1.3 $ */
/* License to copy and use this software is granted provided that it is /*
* Portions Copyright RSA Security Inc.
*
* License to copy and use this software is granted provided that it is
* identified as "RSA Security Inc. PKCS #11 Cryptographic Token Interface * identified as "RSA Security Inc. PKCS #11 Cryptographic Token Interface
* (Cryptoki)" in all material mentioning or referencing this software. * (Cryptoki)" in all material mentioning or referencing this software.

View File

@@ -1,3 +1,23 @@
/*
* Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* 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.
*/
/* $Id */
/*! \file */
/* dynamic loader (ifndef FORCE_STATIC_PROVIDER) */ /* dynamic loader (ifndef FORCE_STATIC_PROVIDER) */
#include <dlfcn.h> #include <dlfcn.h>

View File

@@ -1,3 +1,23 @@
/*
* Copyright (C) 2009 Internet Systems Consortium, Inc. ("ISC")
*
* Permission to use, copy, modify, and/or distribute this software for any
* 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.
*/
/* $Id */
/*! \file */
/* missing code for WIN32 */ /* missing code for WIN32 */
#include <windows.h> #include <windows.h>