search for: evp_des_cbc

Displaying 8 results from an estimated 8 matches for "evp_des_cbc".

2002 Mar 08
1
Problems with Solaris 8 and OpenSSH 3.1p1
When compiling the software it breaks with an error on the cipher.c file. Lot's of warnings and error of undeclared stuff. Snippet follows: gcc -g -O2 -Wall -Wpointer-arith -Wno-uninitialized -I. -I. -I/usr/local/ssl/include -Iyes -I/usr/local/include -DSSHDIR=\"/etc\" -D_PATH_SSH_PROGRAM=\"/usr/bin/ssh\"
2011 Apr 18
4
Solaris hardware crypto engines
...ngine; something like the following works for bulk ciphers (the process for RSA is similar): > > ENGINE *e; > ENGINE_load_builtin_engines(); > e = ENGINE_by_id("pkcs11"); > ENGINE_set_default_ciphers(e); > EVP_CIPHER_CTX_init (&ctx); > EVP_EncryptInit (&ctx, EVP_des_cbc (), key, iv); > EVP_EncryptUpdate (.....); Since I'm not familiar with SSL programming, I wonder if it's possible to modify the dovecot 1.2.x source code. Maybe someone has already tried this or can give me hint. Regards. Martin -------------- next part -------------- A non-text attach...
2004 Oct 17
0
OpenSSH 3.9.1 fix for IRIX 5.3 cc
....c 2004-10-17 13:43:22.000000000 +0200 @@ -76,15 +76,15 @@ u_int key_len; const EVP_CIPHER *(*evptype)(void); } ciphers[] = { - { "none", SSH_CIPHER_NONE, 8, 0, EVP_enc_null }, - { "des", SSH_CIPHER_DES, 8, 8, EVP_des_cbc }, + { "none", SSH_CIPHER_NONE, 8, 0, (const EVP_CIPHER *(*)(void)) EVP_enc_null }, + { "des", SSH_CIPHER_DES, 8, 8, (const EVP_CIPHER *(*)(void)) EVP_des_cbc }, { "3des", SSH_CIPHER_3DES, 8, 16, evp...
2002 Jul 25
1
[Bug 371] New: OpenSSH fails to build on Alpha True64 in cipher.c
...uct evp_cipher_st". (ptrmismatch) { "none", SSH_CIPHER_NONE, 8, 0, EVP_enc_null }, -------------------------------------------------------^ cc: Warning: cipher.c, line 66: In the initializer for ciphers[1].evptype, the referenced type of the pointer value "EVP_des_cbc" is "function () returning pointer to struct evp_cipher_st", which is not compatible with "function () returning pointer to const struct evp_cipher_st". (ptrmismatch) { "des", SSH_CIPHER_DES, 8, 8, EVP_des_cbc }, --------------------------...
2002 Sep 12
0
Problems compiling openssh 3.4p1 on IRIX 6.2
...cipher.c, line 65: Incompatible pointer type assignment { "none", 0 , 8, 0, EVP_enc_null }, ---------- ----------^ cfe: Warning 709: cipher.c, line 66: Incompatible pointer type assignment { "des", 2 , 8, 8, EVP_des_cbc }, --------- ----------^ cfe: Warning 709: cipher.c, line 70: Incompatible pointer type assignment { "3des-cbc", -3 , 8, 24, EVP_des_ede3_cbc }, -------------- ------------^ cfe: Warning 709: cipher.c, line 71: Incompati...
2005 Aug 09
2
error compiling asterisk on solaris
...ce to `RSAPrivateKey_dup' /usr/local/ssl/lib/libssl.so: undefined reference to `asn1_Finish' /usr/local/ssl/lib/libssl.so: undefined reference to `BIO_copy_next_retry' /usr/local/ssl/lib/libssl.so: undefined reference to `sk_set' /usr/local/ssl/lib/libssl.so: undefined reference to `EVP_des_cbc' /usr/local/ssl/lib/libssl.so: undefined reference to `EVP_PKEY_missing_parameter s' /usr/local/ssl/lib/libssl.so: undefined reference to `BIO_callback_ctrl' /usr/local/ssl/lib/libssl.so: undefined reference to `DH_free' /usr/local/ssl/lib...
2008 Apr 21
3
FIPS 140-2 OpenSSL(2007) patches
...nclude "openbsd-compat/openssl-compat.h" @@ -64,30 +65,31 @@ u_int key_len; u_int discard_len; const EVP_CIPHER *(*evptype)(void); + u_int fips_allowed; } ciphers[] = { - { "none", SSH_CIPHER_NONE, 8, 0, 0, EVP_enc_null }, - { "des", SSH_CIPHER_DES, 8, 8, 0, EVP_des_cbc }, - { "3des", SSH_CIPHER_3DES, 8, 16, 0, evp_ssh1_3des }, - { "blowfish", SSH_CIPHER_BLOWFISH, 8, 32, 0, evp_ssh1_bf }, - - { "3des-cbc", SSH_CIPHER_SSH2, 8, 24, 0, EVP_des_ede3_cbc }, - { "blowfish-cbc", SSH_CIPHER_SSH2, 8, 16, 0, EVP_bf_cbc }, - { &quot...
2004 Jun 05
50
[Bug 877] ssh 3.8.1p1 client cannot disable encryption with "-c none"
http://bugzilla.mindrot.org/show_bug.cgi?id=877 Summary: ssh 3.8.1p1 client cannot disable encryption with "-c none" Product: Portable OpenSSH Version: 3.8.1p1 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: ssh AssignedTo: