RSA Security Projection Television 5.2.2 Manual de usuario Pagina 166

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 376
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 165
Using Cryptographic Hardware
144 RSA BSAFE Crypto-C Developers Guide
PKCS #11 Support for DSA Key Pair Generation
This section describes how to generate a DSA key pair using a PKCS #11 device. You
will need some DSA parameters, since PKCS #11 does not specify a way to generate
parameters. If you do not already have them, use Crypto-C to generate some DSA
parameters.
At this point, you will call
B_GenerateParameters. The resulting parameters need to
be stored somewhere. They will be stored in an algorithm object. A limitation in
Crypto-C is that you cannot store them in an object from which you simply extract the
parameters. You must store them in an object that will be used to generate a key pair.
Then you must generate a key pair to extract the parameters.
B_ALGORITHM_METHOD *DSA_PARAM_GEN_CHOOSER[] = {
&AM_DSA_PARAM_GEN,
(B_ALGORITHM_METHOD *)NULL_PTR;
};
B_ALGORITHM_OBJ dsaParamGen = (B_ALGORITHM_OBJ)NULL_PTR;
B_DSA_PARAM_GEN_PARAM dsaParamGenParams;
dsaParamGenParams.primeBits = 1024;
if ((status = B_CreateAlgorithmObject (&dsaParamGen)) != 0)
break;
if ((status = B_SetAlgorithmInfo
(dsaParamGen, AI_DSAParamGen,
(POINTER)&dsaParamGenParams)) != 0)
break;
if ((status = B_GenerateInit
(dsaParamGen, DSA_PARAM_GEN_CHOOSER, NULL_SURR)) != 0)
break;
Vista de pagina 165
1 2 ... 161 162 163 164 165 166 167 168 169 170 171 ... 375 376

Comentarios a estos manuales

Sin comentarios