/users/patterns/www2_Hacked_x/blog/wp-includes/sodium_compat/src/Core32/HChaCha20.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?php

if (class_exists('ParagonIE_Sodium_Core32_HChaCha20'false)) {
    return;
}

/**
 * Class ParagonIE_Sodium_Core_HChaCha20
 */
class ParagonIE_Sodium_Core32_HChaCha20 extends ParagonIE_Sodium_Core32_ChaCha20
{
    
/**
     * @param string $in
     * @param string $key
     * @param string|null $c
     * @return string
     * @throws SodiumException
     * @throws TypeError
     */
    
public static function hChaCha20($in ''$key ''$c null)
    {
        
$ctx = array();

        if (
$c === null) {
            
$ctx[0] = new ParagonIE_Sodium_Core32_Int32(array(0x61700x7865));
            
$ctx[1] = new ParagonIE_Sodium_Core32_Int32(array(0x33200x646e));
            
$ctx[2] = new ParagonIE_Sodium_Core32_Int32(array(0x79620x2d32));
            
$ctx[3] = new ParagonIE_Sodium_Core32_Int32(array(0x6b200x6574));
        } else {
            
$ctx[0] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($c04));
            
$ctx[1] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($c44));
            
$ctx[2] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($c84));
            
$ctx[3] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($c124));
        }
        
$ctx[4]  = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($key04));
        
$ctx[5]  = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($key44));
        
$ctx[6]  = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($key84));
        
$ctx[7]  = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($key124));
        
$ctx[8]  = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($key164));
        
$ctx[9]  = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($key204));
        
$ctx[10] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($key244));
        
$ctx[11] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($key284));
        
$ctx[12] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($in04));
        
$ctx[13] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($in44));
        
$ctx[14] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($in84));
        
$ctx[15] = ParagonIE_Sodium_Core32_Int32::fromReverseString(self::substr($in124));

        return 
self::hChaCha20Bytes($ctx);
    }

    
/**
     * @param array $ctx
     * @return string
     * @throws SodiumException
     * @throws TypeError
     */
    
protected static function hChaCha20Bytes(array $ctx)
    {
        
/** @var ParagonIE_Sodium_Core32_Int32 $x0 */
        
$x0  $ctx[0];
        
/** @var ParagonIE_Sodium_Core32_Int32 $x1 */
        
$x1  $ctx[1];
        
/** @var ParagonIE_Sodium_Core32_Int32 $x2 */
        
$x2  $ctx[2];
        
/** @var ParagonIE_Sodium_Core32_Int32 $x3 */
        
$x3  $ctx[3];
        
/** @var ParagonIE_Sodium_Core32_Int32 $x4 */
        
$x4  $ctx[4];
        
/** @var ParagonIE_Sodium_Core32_Int32 $x5 */
        
$x5  $ctx[5];
        
/** @var ParagonIE_Sodium_Core32_Int32 $x6 */
        
$x6  $ctx[6];
        
/** @var ParagonIE_Sodium_Core32_Int32 $x7 */
        
$x7  $ctx[7];
        
/** @var ParagonIE_Sodium_Core32_Int32 $x8 */
        
$x8  $ctx[8];
        
/** @var ParagonIE_Sodium_Core32_Int32 $x9 */
        
$x9  $ctx[9];
        
/** @var ParagonIE_Sodium_Core32_Int32 $x10 */
        
$x10 $ctx[10];
        
/** @var ParagonIE_Sodium_Core32_Int32 $x11 */
        
$x11 $ctx[11];
        
/** @var ParagonIE_Sodium_Core32_Int32 $x12 */
        
$x12 $ctx[12];
        
/** @var ParagonIE_Sodium_Core32_Int32 $x13 */
        
$x13 $ctx[13];
        
/** @var ParagonIE_Sodium_Core32_Int32 $x14 */
        
$x14 $ctx[14];
        
/** @var ParagonIE_Sodium_Core32_Int32 $x15 */
        
$x15 $ctx[15];

        for (
$i 0$i 10; ++$i) {
            
# QUARTERROUND( x0,  x4,  x8,  x12)
            
list($x0$x4$x8$x12) = self::quarterRound($x0$x4$x8$x12);

            
# QUARTERROUND( x1,  x5,  x9,  x13)
            
list($x1$x5$x9$x13) = self::quarterRound($x1$x5$x9$x13);

            
# QUARTERROUND( x2,  x6,  x10,  x14)
            
list($x2$x6$x10$x14) = self::quarterRound($x2$x6$x10$x14);

            
# QUARTERROUND( x3,  x7,  x11,  x15)
            
list($x3$x7$x11$x15) = self::quarterRound($x3$x7$x11$x15);

            
# QUARTERROUND( x0,  x5,  x10,  x15)
            
list($x0$x5$x10$x15) = self::quarterRound($x0$x5$x10$x15);

            
# QUARTERROUND( x1,  x6,  x11,  x12)
            
list($x1$x6$x11$x12) = self::quarterRound($x1$x6$x11$x12);

            
# QUARTERROUND( x2,  x7,  x8,  x13)
            
list($x2$x7$x8$x13) = self::quarterRound($x2$x7$x8$x13);

            
# QUARTERROUND( x3,  x4,  x9,  x14)
            
list($x3$x4$x9$x14) = self::quarterRound($x3$x4$x9$x14);
        }

        return 
$x0->toReverseString() .
            
$x1->toReverseString() .
            
$x2->toReverseString() .
            
$x3->toReverseString() .
            
$x12->toReverseString() .
            
$x13->toReverseString() .
            
$x14->toReverseString() .
            
$x15->toReverseString();
    }
}