-
Notifications
You must be signed in to change notification settings - Fork 1.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
Rename NewSoftwarePrivateKey
to NewPrivateKey
#53598
base: joerger/hardware-key-service-reduced
Are you sure you want to change the base?
Rename NewSoftwarePrivateKey
to NewPrivateKey
#53598
Conversation
@nklaassen Is my understanding in the PR description accurate? I didn't see have a separate |
Yeah i just added |
// NewPrivateKey returns a new PrivateKey for a crypto.Signer. | ||
// [signer] must be an *rsa.PrivateKey, *ecdsa.PrivateKey, ed25519.PrivateKey, or *hardwarekey.PrivateKey. | ||
// TODO(Joerger): Remove the variadic argument once /e is updated to not provide it. | ||
func NewPrivateKey(signer crypto.Signer, _ ...[]byte) (*PrivateKey, error) { |
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.
note: it would be nice if we actually didn't have to marshal the key to PEM when a lot of the time it is not even necessary and just wastes CPU cycles when we never write out the key. The fact PrivateKeyPEM() currently doesn't return an error is what locks us in I guess we'd have to update every caller. Not expecting you to do anything about this here just calling it out
d14db39
to
cfcb9fb
Compare
00e4285
to
6d650c4
Compare
6d650c4
to
64d5afc
Compare
4729e97
to
a986b49
Compare
64d5afc
to
6160260
Compare
6160260
to
aa3f8c4
Compare
Previously
NewSoftwarePrivateKey
was added becauseYubiKeyPrivateKey
was not uniform across build tags and was difficult to work with in marshal/parsing logic. With #53435, we added a more genericHardwarePrivateKey
which can be marshaled and parsed as if they are software private keys.TODO: Add a follow up to remove the (ignored) variadic argument on
NewPrivateKey
.Depends on #53674