Home | History | Annotate | Download | only in keymaster

Lines Matching defs:publicExponent

352     CK_BYTE publicExponent[sizeof(uint64_t)];
354 size_t offset = sizeof(publicExponent) - 1;
355 for (size_t i = 0; i < sizeof(publicExponent); i++) {
356 publicExponent[offset--] = (exp >> (i * CHAR_BIT)) & 0xFF;
371 {CKA_PUBLIC_EXPONENT, publicExponent, sizeof(publicExponent)},
446 Unique_ByteArray publicExponent(bignum_to_array(rsa->e));
447 if (publicExponent.get() == NULL) {
448 ALOGW("Could not convert publicExponent to array");
470 {CKA_PUBLIC_EXPONENT, publicExponent->get(), publicExponent->length()},
546 publicExponent->get(), publicExponent->length());