summaryrefslogtreecommitdiff
path: root/dev-php/PEAR-Crypt_HMAC/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-php/PEAR-Crypt_HMAC/files
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-php/PEAR-Crypt_HMAC/files')
-rw-r--r--dev-php/PEAR-Crypt_HMAC/files/HMAC-1.0.1.patch57
1 files changed, 0 insertions, 57 deletions
diff --git a/dev-php/PEAR-Crypt_HMAC/files/HMAC-1.0.1.patch b/dev-php/PEAR-Crypt_HMAC/files/HMAC-1.0.1.patch
deleted file mode 100644
index efa9d96bdedf..000000000000
--- a/dev-php/PEAR-Crypt_HMAC/files/HMAC-1.0.1.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-diff -aurN a/HMAC.php b/HMAC.php
---- a/HMAC.php 2005-02-20 14:24:14.000000000 -0500
-+++ b/HMAC.php 2018-02-13 14:03:59.421976960 -0500
-@@ -68,8 +68,21 @@
- * @access private
- */
- var $_pack;
--
--
-+
-+ /**
-+ * Constructor
-+ * Pass method as first parameter
-+ *
-+ * @param string $key Key to use for hash
-+ * @param string $func Hash function used for the calculation
-+ * @return void
-+ * @access public
-+ */
-+ function __construct($key, $func = 'md5')
-+ {
-+ $this->Crypt_HMAC($key, $func);
-+ }
-+
- /**
- * Constructor
- * Pass method as first parameter
-diff -aurN a/tests/HMAC_001.phpt b/tests/HMAC_001.phpt
---- a/tests/HMAC_001.phpt 1969-12-31 19:00:00.000000000 -0500
-+++ b/tests/HMAC_001.phpt 2018-02-13 14:00:47.899812172 -0500
-@@ -0,0 +1,26 @@
-+--TEST--
-+RFC 2104 Test Vectors
-+--DESCRIPTION--
-+This test file implements the three test vectors as described in
-+RFC 2104 (https://www.ietf.org/rfc/rfc2104.txt)
-+--FILE--
-+<?php
-+ require_once 'Crypt/HMAC.php';
-+
-+ $key = str_repeat(chr(0x0b), 16);
-+ $crypt = new Crypt_HMAC($key, 'md5');
-+ echo $crypt->hash('Hi There')."\n";
-+
-+ $key = 'Jefe';
-+ $crypt->setKey($key);
-+ echo $crypt->hash('what do ya want for nothing?')."\n";
-+
-+ $key = str_repeat(chr(0xaa), 16);
-+ $data = str_repeat(chr(0xdd), 50);
-+ $crypt->setKey($key);
-+ echo $crypt->hash($data)."\n";
-+?>
-+--EXPECT--
-+9294727a3638bb1c13f48ef8158bfc9d
-+750c783e6ab0b503eaa86e310a5db738
-+56be34521d144c88dbb8c733f0e8b3f6