-
Notifications
You must be signed in to change notification settings - Fork 38
Direct support for PEM-decoding of this crate's types #53
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
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
b301241
Transplant base64/pemfile.rs from pemfile#1ef45c219c
ctz 66df49b
add ctgrind-like testing of CodePoint::decode_secret
ctz afad9e1
Use an enum for handled section types
ctz d9b17f7
pem: avoid squashing our errors into io::Error
ctz 0b334a1
Make pem::Error non-exhaustive
ctz be431a4
pem: move error type down
ctz 09e0062
Fix line endings accepted by slice APIs
ctz c1ac087
Directly support PEM decoding of pki-types
ctz 3d1f726
Port test suite from old pemfile crate
ctz c3899c6
Add fuzz target for PEM decoding
ctz 62fdfaa
Cargo: version 1.8.0 -> 1.9.0
ctz 5786284
README: downplay rustls-pemfile
ctz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../tests/data/zen.pem |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#![no_main] | ||
|
||
use std::io::Cursor; | ||
|
||
use libfuzzer_sys::fuzz_target; | ||
|
||
use rustls_pki_types::pem::PemObject; | ||
use rustls_pki_types::{CertificateDer, PrivateKeyDer}; | ||
|
||
fuzz_target!(|data: &[u8]| { | ||
// cover the code paths that use std::io | ||
for x in CertificateDer::pem_reader_iter(&mut Cursor::new(data)) { | ||
match x { | ||
Ok(_item) => (), | ||
Err(_err) => break, | ||
} | ||
} | ||
|
||
// cover the code paths that use slices | ||
for x in PrivateKeyDer::pem_slice_iter(data) { | ||
match x { | ||
Ok(_item) => (), | ||
Err(_err) => break, | ||
} | ||
} | ||
}); |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.