| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Now that `CipherBase.init` has been removed, instances of the class are always initialized by a call to `initiv` immediately after the constructor has returned. Instead of calling into C++ twice from `createCipherBase`, pass all required arguments to the constructor and fully initialize the instance before the constructor returns.
|
Review requested:
|
Sorry, something went wrong.
Codecov ReportAttention: Patch coverage is 66.66667% with 6 lines in your changes missing coverage. Please review.
@@ Coverage Diff @@
## main #58166 +/- ##
==========================================
- Coverage 90.17% 90.13% -0.05%
==========================================
Files 630 630
Lines 186503 186605 +102
Branches 36614 36630 +16
==========================================
+ Hits 168187 168204 +17
- Misses 11124 11185 +61
- Partials 7192 7216 +24
... and 33 files with indirect coverage changes 🚀 New features to boost your workflow:
|
Sorry, something went wrong.
Sorry, something went wrong.
Now that `CipherBase.init` has been removed, instances of the class are always initialized by a call to `initiv` immediately after the constructor has returned. Instead of calling into C++ twice from `createCipherBase`, pass all required arguments to the constructor and fully initialize the instance before the constructor returns. PR-URL: #58166 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
|
This does not land cleanly on v22.x-staging, and would require manual backport if we want it there |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Now that CipherBase.init has been removed, instances of the class are always initialized by a call to initiv immediately after the constructor has returned. Instead of calling into C++ twice from createCipherBase, pass all required arguments to the constructor and fully initialize the instance before the constructor returns.