Skip to content

Commit df9bd8d

Browse files
committed
modified comments for tables
1 parent 10dd7ad commit df9bd8d

File tree

1 file changed

+27
-34
lines changed

1 file changed

+27
-34
lines changed

hashing/ripemd_160.cpp

Lines changed: 27 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -57,45 +57,38 @@ namespace hashing {
5757
*/
5858
class RIPEMD160 {
5959
private:
60-
/**
61-
* @brief Implements the r table
62-
*/
6360
static constexpr int r[80] = {
64-
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15,
65-
7, 4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8,
66-
3, 10, 14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12,
67-
1, 9, 11, 10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2,
68-
4, 0, 5, 9, 7, 12, 2, 10, 14, 1, 3, 8, 11, 6, 15, 13};
61+
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 7,
62+
4, 13, 1, 10, 6, 15, 3, 12, 0, 9, 5, 2, 14, 11, 8, 3, 10,
63+
14, 4, 9, 15, 8, 1, 2, 7, 0, 6, 13, 11, 5, 12, 1, 9, 11,
64+
10, 0, 8, 12, 4, 13, 3, 7, 15, 14, 5, 6, 2, 4, 0, 5, 9,
65+
7, 12, 2, 10, 14, 1, 3, 8, 11, 6, 15, 13}; /// Implements the r
66+
/// table
6967

70-
/**
71-
* @brief Implements the r' table
72-
*/
7368
static constexpr int r_dash[80] = {
74-
5, 14, 7, 0, 9, 2, 11, 4, 13, 6, 15, 8, 1, 10, 3, 12,
75-
6, 11, 3, 7, 0, 13, 5, 10, 14, 15, 8, 12, 4, 9, 1, 2,
76-
15, 5, 1, 3, 7, 14, 6, 9, 11, 8, 12, 2, 10, 0, 4, 13,
77-
8, 6, 4, 1, 3, 11, 15, 0, 5, 12, 2, 13, 9, 7, 10, 14,
78-
12, 15, 10, 4, 1, 5, 8, 7, 6, 2, 13, 14, 0, 3, 9, 11};
69+
5, 14, 7, 0, 9, 2, 11, 4, 13, 6, 15, 8, 1, 10, 3, 12, 6,
70+
11, 3, 7, 0, 13, 5, 10, 14, 15, 8, 12, 4, 9, 1, 2, 15, 5,
71+
1, 3, 7, 14, 6, 9, 11, 8, 12, 2, 10, 0, 4, 13, 8, 6, 4,
72+
1, 3, 11, 15, 0, 5, 12, 2, 13, 9, 7, 10, 14, 12, 15, 10, 4,
73+
1, 5, 8, 7, 6, 2, 13, 14, 0, 3, 9, 11}; /// Implements the r'
74+
/// table
75+
76+
static constexpr int s[80] = {11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14,
77+
15, 6, 7, 9, 8, 7, 6, 8, 13, 11, 9,
78+
7, 15, 7, 12, 15, 9, 11, 7, 13, 12, 11,
79+
13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6,
80+
5, 12, 7, 5, 11, 12, 14, 15, 14, 15, 9,
81+
8, 9, 14, 5, 6, 8, 6, 5, 12, 9, 15,
82+
5, 11, 6, 8, 13, 12, 5, 12, 13, 14, 11,
83+
8, 5, 6}; /// Implements the s table
7984

80-
/**
81-
* @brief Implements the s table
82-
*/
83-
static constexpr int s[80] = {
84-
11, 14, 15, 12, 5, 8, 7, 9, 11, 13, 14, 15, 6, 7, 9, 8,
85-
7, 6, 8, 13, 11, 9, 7, 15, 7, 12, 15, 9, 11, 7, 13, 12,
86-
11, 13, 6, 7, 14, 9, 13, 15, 14, 8, 13, 6, 5, 12, 7, 5,
87-
11, 12, 14, 15, 14, 15, 9, 8, 9, 14, 5, 6, 8, 6, 5, 12,
88-
9, 15, 5, 11, 6, 8, 13, 12, 5, 12, 13, 14, 11, 8, 5, 6};
89-
90-
/**
91-
* @brief Implements the s' table
92-
*/
9385
static constexpr int s_dash[80] = {
94-
8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6,
95-
9, 13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11,
96-
9, 7, 15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5,
97-
15, 5, 8, 11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8,
98-
8, 5, 12, 9, 12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11};
86+
8, 9, 9, 11, 13, 15, 15, 5, 7, 7, 8, 11, 14, 14, 12, 6, 9,
87+
13, 15, 7, 12, 8, 9, 11, 7, 7, 12, 7, 6, 15, 13, 11, 9, 7,
88+
15, 11, 8, 6, 6, 14, 12, 13, 5, 14, 13, 13, 7, 5, 15, 5, 8,
89+
11, 14, 14, 6, 14, 6, 9, 12, 9, 12, 5, 15, 8, 8, 5, 12, 9,
90+
12, 5, 14, 6, 8, 13, 6, 5, 15, 13, 11, 11}; /// Implements the s'
91+
/// table
9992

10093
/**
10194
* @brief Implements f(j,B,C,D)

0 commit comments

Comments
 (0)