]> granicus.if.org Git - php/commitdiff
It should not be const
authorXinchen Hui <laruence@gmail.com>
Tue, 27 Oct 2015 02:08:27 +0000 (10:08 +0800)
committerXinchen Hui <laruence@gmail.com>
Tue, 27 Oct 2015 02:08:27 +0000 (10:08 +0800)
ext/hash/hash_sha3.c

index 0ff73e59c228f5ee75bad94706565cb0bfe08da4..a1d48390b6e13aa78ae08dab808fdc20de726fed 100644 (file)
@@ -46,14 +46,14 @@ static inline php_hash_uint64 load64(const unsigned char* x) {
        }
        return ret;
 }
-static inline void store64(const unsigned char* x, php_hash_uint64 val) {
+static inline void store64(unsigned char* x, php_hash_uint64 val) {
        unsigned char i;
        for (i = 0; i < 8; ++i) {
                x[i] = val & 0xFF;
                val >>= 8;
        }
 }
-static inline void xor64(const unsigned char* x, php_hash_uint64 val) {
+static inline void xor64(unsigned char* x, php_hash_uint64 val) {
        unsigned char i;
        for (i = 0; i < 8; ++i) {
                x[i] ^= val & 0xFF;
@@ -132,7 +132,7 @@ static void permute(PHP_SHA3_CTX* ctx) {
                }
 
                { // i step (see [Keccak Reference, Section 2.3.5])
-               unsigned char j;
+                       unsigned char j;
                        for (j = 0; j < 7; ++j) {
                                if (LFSR86540(&LFSRstate)) {
                                        php_hash_uint64 bitPos = (1<<j) - 1;