summaryrefslogtreecommitdiff
path: root/security/nettle2/files/patch-examples_nettle-openssl.c
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2005-11-24 11:25:04 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2005-11-24 11:25:04 +0000
commitdd5f0bf0844b2d46d840ee18e2f529a8466ef092 (patch)
treef3598997c6ea2f1ec9c24130240d888d63a23bb3 /security/nettle2/files/patch-examples_nettle-openssl.c
parentprint/lcdf-typetools was a dupe of print/typetools, so remove the former (diff)
security/nettle is out of date : port version is 1.7, available is 1.13
Nettle port is out of date. Nettle website has 1.13 for ages. Nettle port needs to be updated for software fixes purposes. Bumped portversion of lang/pike76 PR: ports/87655 Submitted by: Xavier beaudouin <kiwi@oav.net>
Notes
Notes: svn path=/head/; revision=149277
Diffstat (limited to 'security/nettle2/files/patch-examples_nettle-openssl.c')
-rw-r--r--security/nettle2/files/patch-examples_nettle-openssl.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/security/nettle2/files/patch-examples_nettle-openssl.c b/security/nettle2/files/patch-examples_nettle-openssl.c
deleted file mode 100644
index dbd034518587..000000000000
--- a/security/nettle2/files/patch-examples_nettle-openssl.c
+++ /dev/null
@@ -1,29 +0,0 @@
---- examples/nettle-openssl.c.orig Fri Nov 8 16:05:20 2002
-+++ examples/nettle-openssl.c Thu May 1 12:52:10 2003
-@@ -93,7 +93,7 @@
- openssl_des_set_key(void *ctx, unsigned length, const uint8_t *key)
- {
- assert(length == 8);
-- des_key_sched((char *) key, ctx);
-+ des_key_sched((const_DES_cblock *)key, ctx);
- }
-
- #define DES_BLOCK_SIZE 8
-@@ -105,7 +105,7 @@
- assert (!(length % DES_BLOCK_SIZE));
- while (length)
- {
-- des_ecb_encrypt((char *) src, (char *) dst, ctx, DES_ENCRYPT);
-+ des_ecb_encrypt((const_DES_cblock *)src, (DES_cblock *)dst, ctx, DES_ENCRYPT);
- length -= DES_BLOCK_SIZE;
- dst += DES_BLOCK_SIZE;
- src += DES_BLOCK_SIZE;
-@@ -119,7 +119,7 @@
- assert (!(length % DES_BLOCK_SIZE));
- while (length)
- {
-- des_ecb_encrypt((char *) src, (char *) dst, ctx, DES_DECRYPT);
-+ des_ecb_encrypt((const_DES_cblock *) src, (DES_cblock *) dst, ctx, DES_DECRYPT);
- length -= DES_BLOCK_SIZE;
- dst += DES_BLOCK_SIZE;
- src += DES_BLOCK_SIZE;