/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/unit_node/testdata/inspect-x509.ts
10 строк
259 B
Daniel Osvaldo Rahmanto
fix(ext/node): inspect X509Certificate class (#30882)
03 окт 2025, 11:19
Не верифицирован
03 окт 2025, 11:19
926bcbc
Код
Авторство
О чём код?
import console from "node:console"; import crypto from "node:crypto"; import fs from "node:fs"; const pemBuffer = fs.readFileSync( new URL("../testdata/x509.pem", import.meta.url), ); const x509 = new crypto.X509Certificate(pemBuffer); console.log(x509);