Node.js x509.fingerprint256 Propiedad

El x509.fingerprint256 es una interfaz de programación de aplicaciones incorporada de clase X509Certificate dentro del módulo criptográfico que se utiliza para obtener la huella digital SHA-256 de este certificado.

Sintaxis:

const x509.fingerprint

Parámetros: esta propiedad no acepta ningún argumento como parámetro.

Valor devuelto: esta propiedad devuelve la huella digital SHA-256 de este certificado.

¿Cómo generar un certificado público?

Certificado público Abra el bloc de notas y copie y pegue la siguiente clave y guarde el archivo como public-cert.pem

-----BEGIN CERTIFICATE-----
MIICfzCCAegCCQDxxeXw914Y2DANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMC
SU4xEzARBgNVBAgMCldlc3RiZW5nYWwxEDAOBgNVBAcMB0tvbGthdGExFDASBgNV
BAoMC1BhbmNvLCBJbmMuMRUwEwYDVQQDDAxSb2hpdCBQcmFzYWQxIDAeBgkqhkiG
9w0BCQEWEXJvZm9mb2ZAZ21haWwuY29tMB4XDTIwMDkwOTA1NTExN1oXDTIwMTAw
OTA1NTExN1owgYMxCzAJBgNVBAYTAklOMRMwEQYDVQQIDApXZXN0YmVuZ2FsMRAw
DgYDVQQHDAdLb2xrYXRhMRQwEgYDVQQKDAtQYW5jbywgSW5jLjEVMBMGA1UEAwwM
Um9oaXQgUHJhc2FkMSAwHgYJKoZIhvcNAQkBFhFyb2ZvZm9mQGdtYWlsLmNvbTCB
nzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAt/EfcF3FG4TneOBWr4JhOUdyuCXm
Dhy5yO3VKtQfPxr+5d0joCSnn/5vYDNSr1MfedZmqVxrXFoMAdPCd71BNmDmeLVi
QK61WREtASP0ZhQMoUBT+R3Fpdy0jPS0YoT/fBd96CJCmgsQOS8Tq5IKVeB61MyC
kwAQ2Goe0T3sdVkCAwEAATANBgkqhkiG9w0BAQsFAAOBgQATe6ixdAjoV7BSHgRX
bXM2+IZLq8kq3s7ck0EZrRVhsivutcaZwDXRCCinB+OlPedbzXwNZGvVX0nwPYHG
BfiXwdiuZeVJ88ni6Fm6RhoPtu2QF1UExfBvSXuMBgR+evp+e3QadNpGx6Ppl1aC
hWF6W2H9+MAlU7yvtmCQQuZmfQ==
-----END CERTIFICATE-----

Ejemplo 1:

index.js

// Node.js program to demonstrate the  
// x509.fingerprint256 function
  
// Importing crypto module
const {X509Certificate} = require('crypto')
  
// Importing fs module
const fs = require('fs')
  
// getting object of a PEM encoded X509 Certificate. 
const x509 = new X509Certificate(fs.readFileSync('public-cert.pem'));
  
// getting the SHA-256 fingerprint of this certificate.
// by using x509.fingerprint256 function
const value = x509.fingerprint256
  
// display the result
console.log("SHA-256 fingerprint of this certificate :- "
            + value)

Ejecute el archivo index.js con el siguiente comando.

node index.js

Producción:

SHA-256 fingerprint of this certificate :- 
77:7B:70:8C:52:C5:C8:02:88:B3:BD:D5:1F:6C:A5:AB:78:
0C:4D:0E:F6:6C:0B:DA:ED:49:8E:06:0E:78:8F:05 

Ejemplo 2:

index.js

// Node.js program to demonstrate the  
// x509.fingerprint256 function
  
// Importing crypto module
const {X509Certificate} = require('crypto')
  
// Importing fs module
const fs = require('fs')
  
// display the result
console.log("SHA-256 fingerprint of this certificate :- " +
           ( new X509Certificate(fs.readFileSync('public-cert.pem')))
            .fingerprint256)

Ejecute el archivo index.js con el siguiente comando.

node index.js

Producción:

SHA-256 fingerprint of this certificate :-
77:7B:70:8C:52:C5:C8:02:88:B3:BD:D5:1F:6C:A5:AB:
78:0C:4D:0E:F6:6C:0B:DA:ED:49:8E:06:0E:78:8F:05 

Referencia : https://nodejs.org/dist/latest-v15.x/docs/api/crypto.html#crypto_x509_fingerprint256

Publicación traducida automáticamente

Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *