Added support for iKEIntermediate flag to ipsec pki.
This commit is contained in:
@@ -229,6 +229,10 @@ static int issue()
|
||||
{
|
||||
flags |= X509_CLIENT_AUTH;
|
||||
}
|
||||
else if (streq(arg, "ikeIntermediate"))
|
||||
{
|
||||
flags |= X509_IKE_INTERMEDIATE;
|
||||
}
|
||||
else if (streq(arg, "crlSign"))
|
||||
{
|
||||
flags |= X509_CRL_SIGN;
|
||||
|
||||
@@ -133,6 +133,10 @@ static void print_x509(x509_t *x509)
|
||||
{
|
||||
printf("clientAuth ");
|
||||
}
|
||||
if (flags & X509_IKE_INTERMEDIATE)
|
||||
{
|
||||
printf("iKEIntermediate ");
|
||||
}
|
||||
if (flags & X509_SELF_SIGNED)
|
||||
{
|
||||
printf("self-signed ");
|
||||
|
||||
@@ -212,6 +212,10 @@ static int self()
|
||||
{
|
||||
flags |= X509_CLIENT_AUTH;
|
||||
}
|
||||
else if (streq(arg, "ikeIntermediate"))
|
||||
{
|
||||
flags |= X509_IKE_INTERMEDIATE;
|
||||
}
|
||||
else if (streq(arg, "crlSign"))
|
||||
{
|
||||
flags |= X509_CRL_SIGN;
|
||||
|
||||
Reference in New Issue
Block a user