Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 185719
Collapse All | Expand All

(-)postfix-2.3.6.orig/src/tls/tls_client.c (+5 lines)
Lines 294-299 Link Here
294
    SSL_load_error_strings();
294
    SSL_load_error_strings();
295
    OpenSSL_add_ssl_algorithms();
295
    OpenSSL_add_ssl_algorithms();
296
296
297
	/* Init available hardware crypto engines. */
298
	ENGINE_load_builtin_engines();
299
	ENGINE_register_all_complete();
300
	ENGINE_set_default_ciphers(ENGINE_by_id("padlock"));
301
297
    /*
302
    /*
298
     * Initialize the PRNG (Pseudo Random Number Generator) with some seed
303
     * Initialize the PRNG (Pseudo Random Number Generator) with some seed
299
     * from external and internal sources. Don't enable TLS without some real
304
     * from external and internal sources. Don't enable TLS without some real
(-)postfix-2.3.6.orig/src/tls/tls.h (+1 lines)
Lines 44-49 Link Here
44
#include <openssl/x509.h>
44
#include <openssl/x509.h>
45
#include <openssl/x509v3.h>
45
#include <openssl/x509v3.h>
46
#include <openssl/rand.h>
46
#include <openssl/rand.h>
47
#include <openssl/engine.h>
47
#include <openssl/ssl.h>
48
#include <openssl/ssl.h>
48
49
49
#if (OPENSSL_VERSION_NUMBER < 0x00905100L)
50
#if (OPENSSL_VERSION_NUMBER < 0x00905100L)
(-)postfix-2.3.6.orig/src/tls/tls_server.c (+5 lines)
Lines 268-273 Link Here
268
    SSL_load_error_strings();
268
    SSL_load_error_strings();
269
    OpenSSL_add_ssl_algorithms();
269
    OpenSSL_add_ssl_algorithms();
270
270
271
	/* Init available hardware crypto engines. */
272
	ENGINE_load_builtin_engines();
273
	ENGINE_register_all_complete();
274
	ENGINE_set_default_ciphers(ENGINE_by_id("padlock"));
275
271
    /*
276
    /*
272
     * Initialize the PRNG (Pseudo Random Number Generator) with some seed
277
     * Initialize the PRNG (Pseudo Random Number Generator) with some seed
273
     * from external and internal sources. Don't enable TLS without some real
278
     * from external and internal sources. Don't enable TLS without some real

Return to bug 185719