Searched defs:rsakey (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/common/crypto/rsa/
H A Drsa_impl.c402 RSAkey rsakey; local
428 if (RSA_key_init(&rsakey, modulus_bytes * 4, modulus_bytes * 4) !=
442 if ((rv = generate_rsa_key(&rsakey,
450 /* modulus_bytes = rsakey.n.len * (int)sizeof (BIG_CHUNK_TYPE); */
451 bignum2bytestring(bkey->modulus, &(rsakey.n), modulus_bytes);
453 bkey->privexpo_bytes = rsakey.d.len * (int)sizeof (BIG_CHUNK_TYPE);
454 bignum2bytestring(bkey->privexpo, &(rsakey.d), bkey->privexpo_bytes);
456 bkey->pubexpo_bytes = rsakey.e.len * (int)sizeof (BIG_CHUNK_TYPE);
457 bignum2bytestring(bkey->pubexpo, &(rsakey.e), bkey->pubexpo_bytes);
459 bkey->prime1_bytes = rsakey
494 RSAkey rsakey; local
561 RSAkey rsakey; local
[all...]

Completed in 66 milliseconds