Skip to content

Commit

Permalink
Fixing issue awslabs#181; aws_kinesis_agg fails to run on FIPS compli…
Browse files Browse the repository at this point in the history
…ant python images
  • Loading branch information
Mahendra Nunna committed Mar 8, 2024
1 parent e631fe7 commit 01e08c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/aws_kinesis_agg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# Message aggregation protocol-specific constants
# (https://github.com/awslabs/amazon-kinesis-producer/blob/master/aggregation-format.md)
MAGIC = b'\xf3\x89\x9a\xc2'
DIGEST_SIZE = hashlib.md5().digest_size
DIGEST_SIZE = hashlib.md5(usedforsecurity=False).digest_size

# Kinesis Limits
# (https://docs.aws.amazon.com/kinesis/latest/APIReference/API_PutRecord.html)
Expand Down

0 comments on commit 01e08c6

Please sign in to comment.