Displaying 8 results from an estimated 8 matches for "eckey".
Did you mean:
eckel
2017 Jan 16
2
Plugin "mail_crypt" does not work
We tried these rights:
[root at mail44 dovecot]# ls -la
????? 80
drwxr-xr-x 8 root root 4096 ??? 13 13:17 .
drwxr-xr-x 98 root root 12288 ??? 11 11:47 ..
drwxrwxrwx 2 root root 4096 ??? 10 15:58 eckey
drwxr-xr-x 2 root root 4096 ??? 13 12:42 eckey2
drwxr-xr-x 2 vmail vmail 4096 ??? 11 09:14 RSAkey
[root at mail44 dovecot]# cd eckey2
[root at mail44 eckey2]# ls -la
????? 16
drwxr-xr-x 2 root root 4096 ??? 13 12:42 .
drwxr-xr-x 8 root root 4096 ??? 13 13:17 ..
-rw-r--r-- 1 root root 316 ??...
2017 Jan 13
2
Plugin "mail_crypt" does not work
...fix =
separator = /
type = private
}
passdb {
driver = pam
}
passdb {
args = /etc/dovecot/dovecot-ldap.conf.ext
driver = ldap
}
passdb {
args = /etc/dovecot/dovecot-sql.conf.ext
driver = sql
}
plugin {
mail_crypt_curve = prime256v1
mail_crypt_global_private_key = </etc/dovecot/eckey/ecprivkey.pem
mail_crypt_global_public_key = </etc/dovecot/eckey/ecpubkey.pem
mail_crypt_save_version = 2
recipient_delimiter = +
sieve = /etc/dovecot/sieves/default.sieve
sieve_default = /etc/dovecot/sieves/default.sieve
sieve_dir = ~/sieve
sieve_extensions = +notify +imapflags...
2017 Jan 17
2
Plugin "mail_crypt" does not work
...rypt" does not work
>
>> We tried these rights:
>>
>> [root at mail44 dovecot]# ls -la
>> ????? 80
>> drwxr-xr-x 8 root root 4096 ??? 13 13:17 .
>> drwxr-xr-x 98 root root 12288 ??? 11 11:47 ..
>> drwxrwxrwx 2 root root 4096 ??? 10 15:58 eckey
>> drwxr-xr-x 2 root root 4096 ??? 13 12:42 eckey2
>> drwxr-xr-x 2 vmail vmail 4096 ??? 11 09:14 RSAkey
>>
>> [root at mail44 dovecot]# cd eckey2
>> [root at mail44 eckey2]# ls -la
>> ????? 16
>> drwxr-xr-x 2 root root 4096 ??? 13 12:42 .
>> dr...
2015 Mar 31
7
Wanted: smartcard with ECDSA support
Hi list,
I have no idea if Damien Miller had the time to work on that.
I have an initial patch to authenticate using PKCS#11 and ECDSA keys.
This requires OpenSSL 1.0.2, prior OpenSSL versions do not expose the
required interfaces to override the signature function pointer for ECDSA.
The only limitation is that the OpenSSL API misses some cleanup function
(finish, for instance), hence I have yet
2013 Jul 06
1
[PATCH] login-common: Add support for ECDH/ECDHE cipher suites
...static int
+ssl_proxy_ctx_get_pkey_ec_curve_name(const struct master_service_ssl_settings *set)
+{
+ int nid = 0;
+#if !defined(OPENSSL_NO_ECDH) && OPENSSL_VERSION_NUMBER >= 0x10000000L && OPENSSL_VERSION_NUMBER < 0x10002000L
+ EVP_PKEY *pkey;
+ const char *password;
+ EC_KEY *eckey;
+ EC_GROUP *ecgrp;
+
+ password = *set->ssl_key_password != '\0' ? set->ssl_key_password :
+ getenv(MASTER_SSL_KEY_PASSWORD_ENV);
+ pkey = ssl_proxy_load_key(set->ssl_key, password);
+ if (pkey != NULL &&
+ (eckey = EVP_PKEY_get1_EC_KEY(pkey)) != NULL &&
+...
2017 Jan 17
0
Plugin "mail_crypt" does not work
...gt; ????: Re: Plugin "mail_crypt" does not work
> We tried these rights:
>
> [root at mail44 dovecot]# ls -la
> ????? 80
> drwxr-xr-x 8 root root 4096 ??? 13 13:17 .
> drwxr-xr-x 98 root root 12288 ??? 11 11:47 ..
> drwxrwxrwx 2 root root 4096 ??? 10 15:58 eckey
> drwxr-xr-x 2 root root 4096 ??? 13 12:42 eckey2
> drwxr-xr-x 2 vmail vmail 4096 ??? 11 09:14 RSAkey
>
> [root at mail44 dovecot]# cd eckey2
> [root at mail44 eckey2]# ls -la
> ????? 16
> drwxr-xr-x 2 root root 4096 ??? 13 12:42 .
> drwxr-xr-x 8 root root 4096 ??? 13...
2017 Jan 17
0
Plugin "mail_crypt" does not work
...>> We tried these rights:
> >>
> >> [root at mail44 dovecot]# ls -la
> >> ????? 80
> >> drwxr-xr-x 8 root root 4096 ??? 13 13:17 .
> >> drwxr-xr-x 98 root root 12288 ??? 11 11:47 ..
> >> drwxrwxrwx 2 root root 4096 ??? 10 15:58 eckey
> >> drwxr-xr-x 2 root root 4096 ??? 13 12:42 eckey2
> >> drwxr-xr-x 2 vmail vmail 4096 ??? 11 09:14 RSAkey
> >>
> >> [root at mail44 dovecot]# cd eckey2
> >> [root at mail44 eckey2]# ls -la
> >> ????? 16
> >> drwxr-xr-x 2 root r...
2017 Jan 13
0
Plugin "mail_crypt" does not work
On 13.01.2017 12:21, Evgeniy Korneechev wrote:
> mail_crypt_global_public_key = </etc/dovecot/eckey/ecpubkey.pem
Is this world-wide readable file? Is LDA able to access this?
Aki