src: remove outdated todo from node_crypto.cc · nodejs/node@0b5798b

Original file line numberDiff line numberDiff line change

@@ -1607,7 +1607,6 @@ static Local<Object> X509ToObject(Environment* env, X509* cert) {

16071607

const char hex[] = "0123456789ABCDEF";

16081608

char fingerprint[EVP_MAX_MD_SIZE * 3];

16091609
1610-

// TODO(indutny): Unify it with buffer's code

16111610

for (i = 0; i < md_size; i++) {

16121611

fingerprint[3*i] = hex[(md[i] & 0xf0) >> 4];

16131612

fingerprint[(3*i)+1] = hex[(md[i] & 0x0f)];