Create new Merkle tree builder instance
Namespace:
Guardtime.KSI.Service
Assembly:
ksi-net-api (in ksi-net-api.dll) Version: 3.11.534.0 (3.11.534.0)
Syntaxpublic TreeBuilder(
HashAlgorithm hashAlgorithm,
Nullable<uint> maxTreeHeight = null
)
Public Sub New (
hashAlgorithm As HashAlgorithm,
Optional maxTreeHeight As Nullable(Of UInteger) = Nothing
)
public:
TreeBuilder(
HashAlgorithm^ hashAlgorithm,
Nullable<unsigned int> maxTreeHeight = nullptr
)
new :
hashAlgorithm : HashAlgorithm *
?maxTreeHeight : Nullable<uint32>
(* Defaults:
let _maxTreeHeight = defaultArg maxTreeHeight null
*)
-> TreeBuilder
Parameters
- hashAlgorithm
- Type: Guardtime.KSI.HashingHashAlgorithm
Hash algorithm for creating tree node hashes - maxTreeHeight (Optional)
- Type: SystemNullableUInt32
Max allowed tree height
See Also