Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: openssl/crypto/x509v3/v3_cpols.c

Issue 9254031: Upgrade chrome's OpenSSL to same version Android ships with. (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: '' Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « openssl/crypto/x509v3/v3_conf.c ('k') | openssl/crypto/x509v3/v3_crld.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* v3_cpols.c */ 1 /* v3_cpols.c */
2 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 1999. 3 * project 1999.
4 */ 4 */
5 /* ==================================================================== 5 /* ====================================================================
6 * Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved. 6 * Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without 8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions 9 * modification, are permitted provided that the following conditions
10 * are met: 10 * are met:
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 443
444 i2a_ASN1_OBJECT(out, dat->valid_policy); 444 i2a_ASN1_OBJECT(out, dat->valid_policy);
445 BIO_puts(out, "\n"); 445 BIO_puts(out, "\n");
446 BIO_printf(out, "%*s%s\n", indent + 2, "", 446 BIO_printf(out, "%*s%s\n", indent + 2, "",
447 node_data_critical(dat) ? "Critical" : "Non Critical"); 447 node_data_critical(dat) ? "Critical" : "Non Critical");
448 if (dat->qualifier_set) 448 if (dat->qualifier_set)
449 print_qualifiers(out, dat->qualifier_set, indent + 2); 449 print_qualifiers(out, dat->qualifier_set, indent + 2);
450 else 450 else
451 BIO_printf(out, "%*sNo Qualifiers\n", indent + 2, ""); 451 BIO_printf(out, "%*sNo Qualifiers\n", indent + 2, "");
452 } 452 }
453 » 453
454
454 IMPLEMENT_STACK_OF(X509_POLICY_NODE) 455 IMPLEMENT_STACK_OF(X509_POLICY_NODE)
456 IMPLEMENT_STACK_OF(X509_POLICY_DATA)
457
OLDNEW
« no previous file with comments | « openssl/crypto/x509v3/v3_conf.c ('k') | openssl/crypto/x509v3/v3_crld.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698