We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09877c5 commit 616662aCopy full SHA for 616662a
hasher.go
@@ -12,8 +12,13 @@
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
+// Package merkle provides Merkle tree interfaces and implementation.
16
package merkle
17
18
+// TODO(pavelkalinnikov): Remove this root package. The only interface provided
19
+// here does not have to exist, and can be [re-]defined on the user side, such
20
+// as in compact or proof package.
21
+
22
// LogHasher provides the hash functions needed to compute dense merkle trees.
23
type LogHasher interface {
24
// EmptyRoot supports returning a special case for the root of an empty tree.
0 commit comments