El x509.checkIssued() es una interfaz de programación de aplicaciones incorporada de clase X509Certificate dentro del módulo criptográfico que se utiliza para verificar si este Certificado X509 codificado por PEM emitido por el otro certificado o no.
Sintaxis:
const x509.checkIssued(otherCert)
Parámetros: Este método toma como argumento el Certificado X509 codificado en PEM.
Valor devuelto: este método devuelve un valor booleano verdadero si y solo si este certificado es emitido por algún otro 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:
Nombre de archivo: index.js
Javascript
// Node.js program to demonstrate the // x509.checkIP() APi // 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')); const x5091 = new X509Certificate(fs.readFileSync('public-cert.pem')); // checking if passed ip address matches with the given one or not // by using x509.checkIP() api const value = x509.checkIssued(x5091) // display the result if(value) console.log("certificate is issued from other certificate") else console.log("certificate is not issued from other certificate")
Ejecute el archivo index.js con el siguiente comando.
node index.js
Producción:
certificate is issued from other certificate
Ejemplo 2:
Nombre de archivo: index.js
Javascript
// Node.js program to demonstrate the // x509.checkIP() APi // Importing crypto module const {X509Certificate} = require('crypto') // Importing fs module const fs = require('fs') // display the result if((new X509Certificate(fs.readFileSync('public-cert.pem'))) .checkIssued(new X509Certificate(fs.readFileSync('public-cert.pem')))) console.log("certificate is issued from other certificate") else console.log("certificate is not issued from other certificate")
Ejecute el archivo index.js con el siguiente comando.
node index.js
Producción:
certificate is issued from other certificate
Referencia: https://nodejs.org/dist/latest-v15.x/docs/api/crypto.html#crypto_x509_checkissued_othercert
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA