| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent ac69b95 commit e61cc0b
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -71,7 +71,7 @@ class KeyGenJob final : public CryptoJob<KeyGenTraits> { | |||
| 71 | 71 | std::move(params)) {} | |
| 72 | 72 | ||
| 73 | 73 | void DoThreadPoolWork() override { | |
| 74 | - // Make sure the the CSPRNG is properly seeded so the results are secure | ||
| 74 | + // Make sure the CSPRNG is properly seeded so the results are secure. | ||
| 75 | 75 | CheckEntropy(); | |
| 76 | 76 | ||
| 77 | 77 | AdditionalParams* params = CryptoJob<KeyGenTraits>::params(); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -33,7 +33,7 @@ PBKDF2Config& PBKDF2Config::operator=(PBKDF2Config&& other) noexcept { | |||
| 33 | 33 | } | |
| 34 | 34 | ||
| 35 | 35 | void PBKDF2Config::MemoryInfo(MemoryTracker* tracker) const { | |
| 36 | - // The the job is sync, the PBKDF2Config does not own the data | ||
| 36 | + // The job is sync, the PBKDF2Config does not own the data. | ||
| 37 | 37 | if (mode == kCryptoJobAsync) { | |
| 38 | 38 | tracker->TrackFieldWithSize("pass", pass.size()); | |
| 39 | 39 | tracker->TrackFieldWithSize("salt", salt.size()); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments