src: correct indentation for X509ToObject
The indentation in one of the if statements blocks is four spaces instead of two. This commit changes the indentation to two spaces. PR-URL: https://github.com/nodejs/node/pull/13543 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
This commit is contained in:
parent
8f39881b74
commit
8f91aa506a
@ -1581,26 +1581,26 @@ static Local<Object> X509ToObject(Environment* env, X509* cert) {
|
|||||||
rsa = EVP_PKEY_get1_RSA(pkey);
|
rsa = EVP_PKEY_get1_RSA(pkey);
|
||||||
|
|
||||||
if (rsa != nullptr) {
|
if (rsa != nullptr) {
|
||||||
BN_print(bio, rsa->n);
|
BN_print(bio, rsa->n);
|
||||||
BIO_get_mem_ptr(bio, &mem);
|
BIO_get_mem_ptr(bio, &mem);
|
||||||
info->Set(env->modulus_string(),
|
info->Set(env->modulus_string(),
|
||||||
String::NewFromUtf8(env->isolate(), mem->data,
|
String::NewFromUtf8(env->isolate(), mem->data,
|
||||||
String::kNormalString, mem->length));
|
String::kNormalString, mem->length));
|
||||||
(void) BIO_reset(bio);
|
(void) BIO_reset(bio);
|
||||||
|
|
||||||
uint64_t exponent_word = static_cast<uint64_t>(BN_get_word(rsa->e));
|
uint64_t exponent_word = static_cast<uint64_t>(BN_get_word(rsa->e));
|
||||||
uint32_t lo = static_cast<uint32_t>(exponent_word);
|
uint32_t lo = static_cast<uint32_t>(exponent_word);
|
||||||
uint32_t hi = static_cast<uint32_t>(exponent_word >> 32);
|
uint32_t hi = static_cast<uint32_t>(exponent_word >> 32);
|
||||||
if (hi == 0) {
|
if (hi == 0) {
|
||||||
BIO_printf(bio, "0x%x", lo);
|
BIO_printf(bio, "0x%x", lo);
|
||||||
} else {
|
} else {
|
||||||
BIO_printf(bio, "0x%x%08x", hi, lo);
|
BIO_printf(bio, "0x%x%08x", hi, lo);
|
||||||
}
|
}
|
||||||
BIO_get_mem_ptr(bio, &mem);
|
BIO_get_mem_ptr(bio, &mem);
|
||||||
info->Set(env->exponent_string(),
|
info->Set(env->exponent_string(),
|
||||||
String::NewFromUtf8(env->isolate(), mem->data,
|
String::NewFromUtf8(env->isolate(), mem->data,
|
||||||
String::kNormalString, mem->length));
|
String::kNormalString, mem->length));
|
||||||
(void) BIO_reset(bio);
|
(void) BIO_reset(bio);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pkey != nullptr) {
|
if (pkey != nullptr) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user