I'm looking for a library/module/package with which I could create and sign X.509 certificates, with the ability to conditionally add custom v3 extensions – which can be fairly complicated; for example, this bletchful OpenSSL.cnf snippet used by Kerberos PKINIT, just to represent foo@EXAMPLE.ORG:
[v3_extensions]
subjectAltName = email:foo@example.org,
otherName:pkinitSan;SEQUENCE:krb_princ_name_1
[krb_princ_name_1]
realm = EXP:0, GeneralString:EXAMPLE.ORG
principal_name = EXP:1, SEQUENCE:krb_princ_seq_1
[krb_princ_seq_1]
name_type = EXP:0, INTEGER:1
name_string = EXP:0, SEQUENCE:krb_principal_1
[krb_principal_1]
princ0 = GeneralString:foo
Out of everything I have found for languages I know (that being Perl, Python, Ruby, PHP, Bash, and some C#), using openssl from command line with automatically generated .cnf files... which is an ugly process. Is there a better way to do it? (Ruby's 'openssl' looked very nice at first, but then I got to PKINIT...)