]> Cypherpunks.ru repositories - govpn.git/blobdiff - src/cypherpunks.ru/govpn/aont/oaep.go
golint fixes
[govpn.git] / src / cypherpunks.ru / govpn / aont / oaep.go
index b648ccb7e26695f2fab2581d2844c1684eb034b7..00b9fce1ab3f5cc0cb2d0ef14620b322ff6c938e 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/>.
 */
 
-// All-Or-Nothing-Transform, based on OAEP.
+// Package aont stand 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,7 +43,9 @@ import (
 )
 
 const (
+       // HSize TODO
        HSize = 32
+       // RSize TODO
        RSize = 16
 )