[BACK]Return to apps.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / openssl

Diff for /src/usr.bin/openssl/apps.c between version 1.62 and 1.63

version 1.62, 2022/01/10 12:17:49 version 1.63, 2023/04/14 15:27:13
Line 1951 
Line 1951 
         return rv;          return rv;
 }  }
   
 static void  
 nodes_print(BIO *out, const char *name, STACK_OF(X509_POLICY_NODE) *nodes)  
 {  
         X509_POLICY_NODE *node;  
         int i;  
   
         BIO_printf(out, "%s Policies:", name);  
         if (nodes) {  
                 BIO_puts(out, "\n");  
                 for (i = 0; i < sk_X509_POLICY_NODE_num(nodes); i++) {  
                         node = sk_X509_POLICY_NODE_value(nodes, i);  
                         X509_POLICY_NODE_print(out, node, 2);  
                 }  
         } else  
                 BIO_puts(out, " <empty>\n");  
 }  
   
 void  
 policies_print(BIO *out, X509_STORE_CTX *ctx)  
 {  
         X509_POLICY_TREE *tree;  
         int explicit_policy;  
         int free_out = 0;  
   
         if (out == NULL) {  
                 out = BIO_new_fp(stderr, BIO_NOCLOSE);  
                 free_out = 1;  
         }  
         tree = X509_STORE_CTX_get0_policy_tree(ctx);  
         explicit_policy = X509_STORE_CTX_get_explicit_policy(ctx);  
   
         BIO_printf(out, "Require explicit Policy: %s\n",  
             explicit_policy ? "True" : "False");  
   
         nodes_print(out, "Authority", X509_policy_tree_get0_policies(tree));  
         nodes_print(out, "User", X509_policy_tree_get0_user_policies(tree));  
   
         if (free_out)  
                 BIO_free(out);  
 }  
   
 /*  /*
  * next_protos_parse parses a comma separated list of strings into a string   * next_protos_parse parses a comma separated list of strings into a string
  * in a format suitable for passing to SSL_CTX_set_next_protos_advertised.   * in a format suitable for passing to SSL_CTX_set_next_protos_advertised.

Legend:
Removed from v.1.62  
changed lines
  Added in v.1.63