From 79592fe44ac6cd9bb57919c0e8afe7e92079b939 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Thu, 8 Jun 2017 10:55:08 +0200 Subject: [PATCH] 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 Reviewed-By: Colin Ihrig Reviewed-By: Michael Dawson --- src/node_crypto.cc | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/src/node_crypto.cc b/src/node_crypto.cc index bea654b6446cf8..f654dcf60cb424 100644 --- a/src/node_crypto.cc +++ b/src/node_crypto.cc @@ -1554,26 +1554,26 @@ static Local X509ToObject(Environment* env, X509* cert) { rsa = EVP_PKEY_get1_RSA(pkey); if (rsa != nullptr) { - BN_print(bio, rsa->n); - BIO_get_mem_ptr(bio, &mem); - info->Set(env->modulus_string(), - String::NewFromUtf8(env->isolate(), mem->data, - String::kNormalString, mem->length)); - (void) BIO_reset(bio); - - uint64_t exponent_word = static_cast(BN_get_word(rsa->e)); - uint32_t lo = static_cast(exponent_word); - uint32_t hi = static_cast(exponent_word >> 32); - if (hi == 0) { - BIO_printf(bio, "0x%x", lo); - } else { - BIO_printf(bio, "0x%x%08x", hi, lo); - } - BIO_get_mem_ptr(bio, &mem); - info->Set(env->exponent_string(), - String::NewFromUtf8(env->isolate(), mem->data, - String::kNormalString, mem->length)); - (void) BIO_reset(bio); + BN_print(bio, rsa->n); + BIO_get_mem_ptr(bio, &mem); + info->Set(env->modulus_string(), + String::NewFromUtf8(env->isolate(), mem->data, + String::kNormalString, mem->length)); + (void) BIO_reset(bio); + + uint64_t exponent_word = static_cast(BN_get_word(rsa->e)); + uint32_t lo = static_cast(exponent_word); + uint32_t hi = static_cast(exponent_word >> 32); + if (hi == 0) { + BIO_printf(bio, "0x%x", lo); + } else { + BIO_printf(bio, "0x%x%08x", hi, lo); + } + BIO_get_mem_ptr(bio, &mem); + info->Set(env->exponent_string(), + String::NewFromUtf8(env->isolate(), mem->data, + String::kNormalString, mem->length)); + (void) BIO_reset(bio); } if (pkey != nullptr) {