X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=src%2Fcypherpunks.ru%2Fgogost%2Fgost34112012256%2Fhash.go;h=c5d655fa883b33ca12283c0d52febae7485a79f0;hb=4e75bedf293bbb6e9d412f3cd82a61b071d9ff41;hp=bc0c662223db80548e9606fe46ec385ae806b182;hpb=9e61c088683b524e084c35069110ffe62039a558;p=gogost.git diff --git a/src/cypherpunks.ru/gogost/gost34112012256/hash.go b/src/cypherpunks.ru/gogost/gost34112012256/hash.go index bc0c662..c5d655f 100644 --- a/src/cypherpunks.ru/gogost/gost34112012256/hash.go +++ b/src/cypherpunks.ru/gogost/gost34112012256/hash.go @@ -19,6 +19,8 @@ package gost34112012256 import ( + "hash" + "cypherpunks.ru/gogost/internal/gost34112012" ) @@ -27,6 +29,6 @@ const ( Size = 32 ) -func New() *gost34112012.Hash { +func New() hash.Hash { return gost34112012.New(32) }