X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fnet_setup.c;h=e447a1f99090633a03e6b09002d58555595a62ee;hp=e0f156969486351f762f627acf8353762afee8b8;hb=af95368c0f30955f0e13b587d5d6d4989fd5a83e;hpb=fb1cda2ca4ca74a85e88c39c11b97340e6495a08 diff --git a/src/net_setup.c b/src/net_setup.c index e0f15696..e447a1f9 100644 --- a/src/net_setup.c +++ b/src/net_setup.c @@ -368,7 +368,7 @@ bool setup_myself(void) myself->connection->outcipher = EVP_bf_ofb(); myself->key = xmalloc(myself->keylength); - RAND_pseudo_bytes(myself->key, myself->keylength); + RAND_pseudo_bytes((unsigned char *)myself->key, myself->keylength); if(!get_config_int(lookup_config(config_tree, "KeyExpire"), &keylifetime)) keylifetime = 3600; @@ -377,7 +377,7 @@ bool setup_myself(void) if(myself->cipher) { EVP_CIPHER_CTX_init(&packet_ctx); - if(!EVP_DecryptInit_ex(&packet_ctx, myself->cipher, NULL, myself->key, myself->key + myself->cipher->key_len)) { + if(!EVP_DecryptInit_ex(&packet_ctx, myself->cipher, NULL, (unsigned char *)myself->key, (unsigned char *)myself->key + myself->cipher->key_len)) { logger(LOG_ERR, _("Error during initialisation of cipher for %s (%s): %s"), myself->name, myself->hostname, ERR_error_string(ERR_get_error(), NULL)); return false;