Scroll to navigation

PKI --ACERT(1) strongSwan PKI --ACERT(1)

NAME

pki --acert - Issue an attribute certificate

SYNOPSIS

pki --acert [--in file] [--group membership] --issuerkey file|--issuerkeyid hex --issuercert file [--lifetime hours] [--not-before datetime] [--not-after datetime] [--serial hex] [--digest digest] [--outform encoding] [--debug level]
pki --acert --options file
pki --acert -h | --help

DESCRIPTION

This sub-command of pki(1) is used to issue an attribute certificate using an issuer certificate with its private key and the holder certificate.

OPTIONS

Print usage information with a summary of the available options.
Set debug level, default: 1.
-+, --options file
Read command line options from file.
Holder certificate to issue an attribute certificate for. If not given the certificate is read from STDIN.
Group membership the attribute certificate shall certify. The specified group is included as a string. To include multiple groups, the option can be repeated.
Issuer private key file. Either this or --issuerkeyid is required.
Smartcard or TPM issuer private key object handle in hex format with an optional h0x prefix. Either this or --issuerkey is required.
Issuer certificate file. Required.
Hours the attribute certificate is valid, default: 24. Ignored if both an absolute start and end time are given.
Absolute time when the validity of the AC begins. The datetime format is defined by the --dateform option.
Absolute time when the validity of the AC ends. The datetime format is defined by the --dateform option.
strptime(3) format for the --not-before and --not-after options, default: %d.%m.%y %T
Serial number in hex. It is randomly allocated by default.
Digest to use for signature creation. One of md5, sha1, sha224, sha256, sha384, or sha512. The default is determined based on the type and size of the signature key.
Encoding of the created certificate file. Either der (ASN.1 DER) or pem (Base64 PEM), defaults to der.

EXAMPLES

To save repetitive typing, command line options can be stored in files. Lets assume acert.opt contains the following contents:


--issuercert aacert.der --issuerkey aakey.der --digest sha256 --lifetime 4

Then the following command can be used to issue an attribute certificate based on a holder certificate and the options above:


pki --acert --options acert.opt --in holder.der --group sales --group finance -f pem

SEE ALSO

pki(1)

2014-02-05 5.5.2