mirror of
https://github.com/openssl/openssl.git
synced 2025-03-01 19:28:10 +08:00
... and only *define* them in the source files that need them. Use DEFINE_OR_DECLARE which is set appropriately for internal builds and not non-deprecated builds. Deprecate stack-of-block Better documentation Move some ASN1 struct typedefs to types.h Update ParseC to handle this. Most of all, ParseC needed to be more consistent. The handlers are "recursive", in so far that they are called again and again until they terminate, which depends entirely on what the "massager" returns. There's a comment at the beginning of ParseC that explains how that works. {Richard Levtte} Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/10669)
51 lines
1.2 KiB
C
51 lines
1.2 KiB
C
/*
|
|
* Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
|
|
*
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
* in the file LICENSE in the source distribution or at
|
|
* https://www.openssl.org/source/license.html
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <openssl/bio.h>
|
|
#include <openssl/safestack.h>
|
|
#include "names.h"
|
|
|
|
DEFINE_STACK_OF_CSTRING()
|
|
|
|
#ifdef _WIN32
|
|
# define strcasecmp _stricmp
|
|
#endif
|
|
|
|
int name_cmp(const char * const *a, const char * const *b)
|
|
{
|
|
return strcasecmp(*a, *b);
|
|
}
|
|
|
|
void collect_names(const char *name, void *vdata)
|
|
{
|
|
STACK_OF(OPENSSL_CSTRING) *names = vdata;
|
|
|
|
sk_OPENSSL_CSTRING_push(names, name);
|
|
}
|
|
|
|
void print_names(BIO *out, STACK_OF(OPENSSL_CSTRING) *names)
|
|
{
|
|
int i = sk_OPENSSL_CSTRING_num(names);
|
|
int j;
|
|
|
|
sk_OPENSSL_CSTRING_sort(names);
|
|
if (i > 1)
|
|
BIO_printf(out, "{ ");
|
|
for (j = 0; j < i; j++) {
|
|
const char *name = sk_OPENSSL_CSTRING_value(names, j);
|
|
|
|
if (j > 0)
|
|
BIO_printf(out, ", ");
|
|
BIO_printf(out, "%s", name);
|
|
}
|
|
if (i > 1)
|
|
BIO_printf(out, " }");
|
|
}
|