Skip to content

Commit c331b83

Browse files
export hash algorithm (#143)
1 parent f033727 commit c331b83

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
- Added `HashAlgorithm` to exports of the base package module.
11+
1012
## Fixed
1113

1214
- Fixed spelling of `hash_algorithm` parameter in `TimestampRequestBuilder` class ([131](https://github.com/trailofbits/rfc3161-client/pull/131))

src/rfc3161_client/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""rfc3161-client"""
22

3-
from .base import TimestampRequestBuilder, decode_timestamp_response
3+
from .base import HashAlgorithm, TimestampRequestBuilder, decode_timestamp_response
44
from .errors import VerificationError
55
from .tsp import (
66
Accuracy,
@@ -17,6 +17,7 @@
1717
__all__ = [
1818
"decode_timestamp_response",
1919
"TimestampRequestBuilder",
20+
"HashAlgorithm",
2021
"Verifier",
2122
"VerifierBuilder",
2223
"VerificationError",

0 commit comments

Comments
 (0)