Deleted Added
full compact
eng_fat.c (302408) eng_fat.c (326663)
1/* crypto/engine/eng_fat.c */
2/* ====================================================================
3 * Copyright (c) 1999-2001 The OpenSSL Project. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *

--- 153 unchanged lines hidden (view full) ---

162#ifndef OPENSSL_NO_ECDH
163 ENGINE_register_ECDH(e);
164#endif
165#ifndef OPENSSL_NO_ECDSA
166 ENGINE_register_ECDSA(e);
167#endif
168 ENGINE_register_RAND(e);
169 ENGINE_register_pkey_meths(e);
1/* crypto/engine/eng_fat.c */
2/* ====================================================================
3 * Copyright (c) 1999-2001 The OpenSSL Project. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *

--- 153 unchanged lines hidden (view full) ---

162#ifndef OPENSSL_NO_ECDH
163 ENGINE_register_ECDH(e);
164#endif
165#ifndef OPENSSL_NO_ECDSA
166 ENGINE_register_ECDSA(e);
167#endif
168 ENGINE_register_RAND(e);
169 ENGINE_register_pkey_meths(e);
170 ENGINE_register_pkey_asn1_meths(e);
170 return 1;
171}
172
173int ENGINE_register_all_complete(void)
174{
175 ENGINE *e;
176
177 for (e = ENGINE_get_first(); e; e = ENGINE_get_next(e))
178 if (!(e->flags & ENGINE_FLAGS_NO_REGISTER_ALL))
179 ENGINE_register_complete(e);
180 return 1;
181}
171 return 1;
172}
173
174int ENGINE_register_all_complete(void)
175{
176 ENGINE *e;
177
178 for (e = ENGINE_get_first(); e; e = ENGINE_get_next(e))
179 if (!(e->flags & ENGINE_FLAGS_NO_REGISTER_ALL))
180 ENGINE_register_complete(e);
181 return 1;
182}