Brad Schoening

Results 37 comments of Brad Schoening

For FF3, the tweak length also changed to 56-bits. You may wish to look at one of the other Java libraries which implement SP 800-38G Rev. 1 such as [Bouncy...

Likely your domain is too small. See the NIST FPE standards FF1 & FF3 and the requirement for a domain of > 1M. You have a domain of just 5...

@arkn98 instead of using datetime_from_utc_to_local can't we just change ``` from: str(datetime_from_utc_to_local(event.datetime)) to: str(event.datetime.astimezone()) ``` Python 3.3+ allows omitting the TZ in astimezone() to convert to local. That was changed...

@arkn98 thanks for the very helpful explanation and links. It seem the driver is out-of-sync with Python 3 and should be returning aware object in UTC. Could you add a...

I see, but the python driver docs are out of date -- pytz is no longer relevant with Python 3.9+ and shouldn't be used after EOL for 3.8 in Oct...

Since datetime_from_utc_to_local (now) just chains two stdlib functions, I don't see a benefit to unit tests for it.

@arkn98 Were you able to test it manually? You can put a comment in the Test and Documentation field and change the status to 'Submit Patch'.

@arkn98 Perhaps but that would be a different Jira for a bug. It would change existing behavior, and this Jira is just a code refactoring.

MongoDB has similar recommendations to DataStax in their [production-notes](https://www.mongodb.com/docs/manual/administration/production-notes/) One key issue we hit (which is discussed in the Mongo doc) is RedHat issue [#6785021: Premature swapping while there is...

It's fairly simple to setup Travis and its free for open source.