-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
8298420: PEM API: Implementation (Preview) #17543
Open
ascarpino
wants to merge
61
commits into
openjdk:master
Choose a base branch
from
ascarpino:pem
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+3,250
−318
Open
Changes from 1 commit
Commits
Show all changes
61 commits
Select commit
Hold shift + click to select a range
03e2088
publish pem
ascarpino ceb233f
Merge branch 'master' into pem
ascarpino 4b8bff1
cleanup of copyrights and other commented out code
ascarpino 2f4e8cf
try MIMEEncoder again
ascarpino 8fcc466
Decodes PKCS1
ascarpino 659fbb4
Decodes PKCS1
ascarpino fca32e5
KeySpec
ascarpino faaea5b
cleanup, added @since, added KeyPair pub/private key decode (untested)
ascarpino 25eb842
implement of()
ascarpino c5eb599
Add KeySpec check for KeyPair during decode.
ascarpino 5670c9e
Remove default constructor
ascarpino 10c2918
Update javadoc
ascarpino 7bcab97
Update javadoc. Sealed SO.
ascarpino 4f64a0e
Merge branch 'master' into pem
ascarpino b220432
clean up for this-escape lint change
ascarpino e76d310
Results of API discussion and cleanup
ascarpino a215874
Switch from EPS to P8EPS & X509EPS
ascarpino 3f8881f
comment changes
ascarpino 954ad9d
Merge branch 'master' into pem
ascarpino 6f3fd2d
comment/exception updates
ascarpino 24eed10
Doc changes
ascarpino 05729e6
update
ascarpino e0a4c3c
Updating and review
ascarpino 88b6a18
merge
ascarpino 6b1b779
updates
ascarpino 4f688a4
PEMRecord initial, tests pass
ascarpino 9c7bc2b
internal PEMRecord optimization
ascarpino 719ba35
bad test check
ascarpino 49b7291
review comments and optimizations
ascarpino de154af
pemrecord whitespace
ascarpino ca53d3d
Merge branch 'pem' into pem-record
ascarpino e18785e
merge from pem branch
ascarpino ec608fd
Reorg tests data
ascarpino 8146419
review comments part 2
ascarpino ec04656
test merge with futures
ascarpino c8dce84
Implement stream decoding
ascarpino 1000786
fix StringBuffer/Builder
ascarpino cd53a0d
Merge branch 'master' into pem
ascarpino b7661a8
test fixes
ascarpino 5812370
test fixes & cleanup
ascarpino 804e73d
comments updates and getPBEID
ascarpino f1c1b11
fix decoding non-encrypted types
ascarpino 6de472e
partial code review update
ascarpino cc2c482
Merge branch 'master' into pem
ascarpino 4b3aae0
merge with master & updates
ascarpino f811452
apparently <p> can't be before a @implNote.. Who know.
ascarpino 9e59cf1
code review comments
ascarpino 23d89ba
Add SEC1-v2 for EC
ascarpino 54e6f7f
Merge branch 'master' into pem
ascarpino 56ec3e7
merge
ascarpino 4c69d04
Merge branch 'master' into pem
ascarpino 7a81824
Factory updates. SEC1v2 updates
ascarpino f1ae36c
Merge branch 'master' into pem-record
ascarpino 97aa757
Merge branch 'pem-record' into pem-merge
ascarpino dfaff40
Merge in PEMRecord as part of the API.
ascarpino 58e9402
merge
ascarpino 34aed02
merge
ascarpino cc952c0
Merge branch 'pem-merge' into pem
ascarpino 99294b7
Merge branch 'master' into pem
ascarpino cffec97
better comment and remove commented out code
ascarpino 106788e
merge with master
ascarpino 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 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 |
---|---|---|
|
@@ -392,7 +392,7 @@ public static EncryptedPrivateKeyInfo encryptKey(PrivateKey key, | |
/** | ||
* Creates and encrypts an `EncryptedPrivateKeyInfo` from a given PrivateKey | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh, you should use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ok |
||
* and password. | ||
* <p> | ||
* | ||
* @implNote The encryption uses the algorithm set by `jdk.epkcs8.defaultAlgorithm` | ||
* Security Property by the default provider and default the | ||
* AlgorithmParameterSpec of that provider. | ||
|
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.
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.
New encrypt and decrypt methods are all password-based and work on keys directly. Old methods uses a decryption key and works on key specs. For completeness; have you thought about more combinations? Maybe at least encryption with a key? I assume an
EncryptedPrivateKeyInfo
is not only encrypted with a password.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.
I could add some
Key
related methods.