diff options
| author | Guilhem Moulin <guilhem@fripost.org> | 2020-12-09 14:57:11 +0100 | 
|---|---|---|
| committer | Guilhem Moulin <guilhem@fripost.org> | 2020-12-09 14:57:11 +0100 | 
| commit | b13c9fa6f442f555af65f869b954935dae40fcc4 (patch) | |
| tree | 18134835502271153c51fa7d0fb60e1c454016e7 /tests/starttls-injection | |
| parent | 1630f2387c52a0ac460922eda6535165fdb279d1 (diff) | |
test suite: use a RSA certificate rather than ECDSA.
It's arguably the most common use-case.  Generated with
  $ openssl genpkey -algorithm RSA -out tests/snippets/dovecot/dovecot.rsa.key
  $ openssl req -x509 -days 3650 -subj "/CN=InterIMAP test suite" \
        -key tests/snippets/dovecot/dovecot.rsa.key \
        -out tests/snippets/dovecot/dovecot.rsa.crt
Diffstat (limited to 'tests/starttls-injection')
| -rwxr-xr-x | tests/starttls-injection/imapd | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/starttls-injection/imapd b/tests/starttls-injection/imapd index 9000c8d..15c53c7 100755 --- a/tests/starttls-injection/imapd +++ b/tests/starttls-injection/imapd @@ -26,9 +26,9 @@ Net::SSLeay::CTX_set_mode($CTX,      Net::SSLeay::MODE_ACCEPT_MOVING_WRITE_BUFFER() |      Net::SSLeay::MODE_AUTO_RETRY() | # don't fail SSL_read on renegotiation      Net::SSLeay::MODE_RELEASE_BUFFERS() ); -Net::SSLeay::CTX_use_PrivateKey_file($CTX, "$CONFDIR/dovecot.key", &Net::SSLeay::FILETYPE_PEM) +Net::SSLeay::CTX_use_PrivateKey_file($CTX, "$CONFDIR/dovecot.rsa.key", &Net::SSLeay::FILETYPE_PEM)      or die_if_ssl_error("Can't load private key: $!"); -Net::SSLeay::CTX_use_certificate_file($CTX, "$CONFDIR/dovecot.pem", &Net::SSLeay::FILETYPE_PEM) +Net::SSLeay::CTX_use_certificate_file($CTX, "$CONFDIR/dovecot.rsa.crt", &Net::SSLeay::FILETYPE_PEM)      or die_if_ssl_error("Can't load certificate: $!");  while (1) {  | 
