
Security News
Rspack Introduces Rslint, a TypeScript-First Linter Written in Go
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
Given a certificate filename as input, mkchain
will attempt to build the
intermediate certificate chain, and print it to stdout. This replaces the
need to copy/edit cert-vendor provided chain files and deal with certificate
order.
$ rake install
$ mkchain site.example.com.crt > site.example.com.chain
$ mkchain -c 2025-05-30 site.example.com.crt > site.example.com.chain
$ mkchain -lr site.example.com.crt > site.example.com.fullchain
You can also invoke mkchain
from Ruby code:
require 'mkchain'
chain_str = MkChain.new(include_root: true).chain(File.read(cert_filename))
This method returns a string containing the contents of the intermediate
chain in PEM format. If no chain can be built from the certificate, a
MkChain::NoChainFoundException
will be raised. If no chain is necessary
(ie, if the certificate was signed directly by the root CA), then an empty
string will be returned.
This method of building an intermediate chain depends on the signing
certificate being in the authorityInfoAccess
X.509 extension field under
CA Issuers
. That's a common but not universal pattern.
FAQs
Unknown package
We found that mkchain demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Rspack launches Rslint, a fast TypeScript-first linter built on typescript-go, joining in on the trend of toolchains creating their own linters.
Security News
Hacker Demonstrates How Easy It Is To Steal Data From Popular Password Managers
Security News
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.