As a little project (nothing mission critical), I decided to try and write an implementation of GOST 28147-89 in C#. However, while reading through RFC 5830 (an informational defining GOST 28147-89), I noticed this.
(+) is a bitwise addition of the words of the same length modulo 2.
[+] is an addition of 32-bit vectors modulo 2^32.
What is the difference between these two, mainly the first specifying bitwise addition, and the second simply stating addition?