mirror of
https://github.com/openssl/openssl.git
synced 2024-12-03 05:41:46 +08:00
a30027b680
This splits up all the providers/common/der/*.c.in so the generated portion is on its own and all related DER writing routines are in their own files. This also ensures that the DIGEST consstants aren't reproduced in several files (resulting in symbol clashes). Finally, the production of OID macros is moved to the generated header files, allowing other similar macros, or DER constant arrays, to be built on top of them. Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/11868)
18 lines
611 B
C
18 lines
611 B
C
/*
|
|
* Copyright 2020 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 "prov/der_ec.h"
|
|
|
|
/* Well known OIDs precompiled */
|
|
{-
|
|
$OUT = oids_to_c::process_leaves('providers/common/der/EC.asn1',
|
|
{ dir => $config{sourcedir},
|
|
filter => \&oids_to_c::filter_to_C });
|
|
-}
|