=item B<-reqout_only> I<filename>
Save the first CMP requests created by the client to the given file and exit.
-Any options related to CMP servers and their reponses are ignored.
+Any options related to CMP servers and their responses are ignored.
This option is useful for supporting offline scenarios where the certificate
request (or any other CMP request) is produced beforehand and sent out later.
OSSL_CMP_MSG_get_bodytype() returns the body type of the given CMP message.
OSSL_CMP_MSG_get0_certreq_publickey() expects that I<msg> is a certificate request
-messsage and returns the public key in its certificate template if present.
+message and returns the public key in its certificate template if present.
OSSL_CMP_MSG_update_transactionID() updates the transactionID field
in the header of the given message according to the CMP_CTX.
*
* The OpenSSL model is to have new and free functions, and that new
* does all initialization. That is not the NIST model, which has
- * instantiation and un-instantiate, and re-use within a new/free
+ * instantiation and un-instantiate, and reuse within a new/free
* lifecycle. (No doubt this comes from the desire to support hardware
* DRBG, where allocation of resources on something like an HSM is
* a much bigger deal than just re-setting an allocated resource.)
{
my ($self) = shift;
- my $succes = 1;
+ my $success = 1;
if ($self->execute) {
my $pid;
if ($ctr >= 10) {
kill(3, $self->{serverpid});
print "No progress made\n";
- $succes = 0;
+ $success = 0;
}
END:
print "Waiting for s_client process to close: $pid...\n";
waitpid($pid, 0);
- return $succes;
+ return $success;
}
sub process_packet