You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to have a command-line tool to perform various simple operations on pems. Particularly, pem join somefile.pem otherfile.pem --into=single.pem to turn somefile.pem and otherfile.pem into a single file single.pem and pem split somefile.pem to get somefile.1.crt.pem, somefile.2.key.pem etc.
With pyOpenSSL installed, this could potentially even give the split files meaningful names.
No less than 3 times in the last 3 weeks, I've been staring at incomprehensible caused by attempting to join and split non-newline-terminated .pem files together with cat and regexes. These tasks aren't complex but having reliable ways to do them would be super handy.
The text was updated successfully, but these errors were encountered:
I’m generally thinking about moving the Twisted-specific parts into Twisted and make pem more useful for generic use-cases. This certainly sounds like one.
@hynek I think that with better tooling (certbot) and standardization (ACME) I spend a lot less time needing to do stuff like this on individual files. But the main thing I wanted to do with this, I am now trying to get a computer to do, instead: twisted/twisted#11861
It would be nice to have a command-line tool to perform various simple operations on pems. Particularly,
pem join somefile.pem otherfile.pem --into=single.pem
to turnsomefile.pem
andotherfile.pem
into a single filesingle.pem
andpem split somefile.pem
to getsomefile.1.crt.pem
,somefile.2.key.pem
etc.With pyOpenSSL installed, this could potentially even give the split files meaningful names.
No less than 3 times in the last 3 weeks, I've been staring at incomprehensible caused by attempting to join and split non-newline-terminated
.pem
files together withcat
and regexes. These tasks aren't complex but having reliable ways to do them would be super handy.The text was updated successfully, but these errors were encountered: