Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kirk baird patch 01 #79
Kirk baird patch 01 #79
Changes from 18 commits
4d69c2d
13bfbb8
7a360ac
b18a3a8
bb021c5
5206225
4e7068c
dafa3e6
51c56ea
3c2118f
678fb2e
260f7df
e43c635
c2c2197
a361378
8cf3eeb
7665714
12a3247
6103a28
4face13
6f37f1a
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we discard the end of this can we exit early from the loop above once the condition
okm >= length
is satisfied?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, though
okm >= length
aftern
iterators of the loop.The loop could be changed to the condition
while len(okm) < length
Then we would not have to calculate
n
. However since it is following RFC5869 and that is the way it's mentioned there I think it'd be better to leave it withn
.