]> Cypherpunks.ru repositories - govpn.git/blobdiff - src/cypherpunks.ru/govpn/aont/oaep.go
Various stylistic and grammar fixes
[govpn.git] / src / cypherpunks.ru / govpn / aont / oaep.go
index 00b9fce1ab3f5cc0cb2d0ef14620b322ff6c938e..a2329a3dd28187a3dc6a83cd64de946cbada643b 100644 (file)
@@ -16,7 +16,7 @@ You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
-// Package aont stand for All-Or-Nothing-Transform, based on OAEP.
+// Package aont stands for All-Or-Nothing-Transform, based on OAEP.
 //
 // This package implements OAEP (Optimal Asymmetric Encryption Padding)
 // (http://cseweb.ucsd.edu/~mihir/papers/oaep.html)
@@ -43,9 +43,9 @@ import (
 )
 
 const (
-       // HSize TODO
+       // HSize size of generated hash output in terms of OAEP
        HSize = 32
-       // RSize TODO
+       // RSize size of generated random output in terms of OAEP
        RSize = 16
 )