Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/crypto/crypto_keygen.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class KeyGenJob final : public CryptoJob<KeyGenTraits> {
std::move(params)) {}

void DoThreadPoolWork() override {
// Make sure the the CSPRNG is properly seeded so the results are secure
// Make sure the CSPRNG is properly seeded so the results are secure.
CheckEntropy();

AdditionalParams* params = CryptoJob<KeyGenTraits>::params();
Expand Down
2 changes: 1 addition & 1 deletion src/crypto/crypto_pbkdf2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ PBKDF2Config& PBKDF2Config::operator=(PBKDF2Config&& other) noexcept {
}

void PBKDF2Config::MemoryInfo(MemoryTracker* tracker) const {
// The the job is sync, the PBKDF2Config does not own the data
// The job is sync, the PBKDF2Config does not own the data.
if (mode == kCryptoJobAsync) {
tracker->TrackFieldWithSize("pass", pass.size());
tracker->TrackFieldWithSize("salt", salt.size());
Expand Down