-
Notifications
You must be signed in to change notification settings - Fork 4
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
Add support for legacy RSA encoding #1
Conversation
Add support for ssh-rsa (RSA_PKCS1_2048_8192_SHA1_FOR_LEGACY_USE_ONLY) which is still used by some legacy systems
I know people shouldn't be using the legacy RSA SHA-1 stuff anymore, but there are still use cases where you need to verify them. I'm working on such a project so I needed to make this little change to get it working. |
Heyo, thanks for the PR! Could you add some test cases, that way I can see what this covers that it didn't and we can make sure it doesn't get broken in the future? |
This is basically what you get when you sign a key using |
Awesome, thanks!
…On Wed, Feb 10, 2021 at 6:39 AM Mitchell Grenier ***@***.***> wrote:
Merged #1 <#1> into master.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AC2UAQAJ4MZH7UJSMRFYZT3S6KLDVANCNFSM4XMFTXIA>
.
--
Digant Chimanlal "DC" Kasundra
|
Thanks for contributing! |
My pleasure. If I think of some more things, I'll let you know and send you
some PRs (with tests :-D)
…On Wed, Feb 10, 2021 at 9:09 AM Mitchell Grenier ***@***.***> wrote:
Thanks for contributing!
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AC2UAQDI7O2YJCMG5JTXWE3S6K4WFANCNFSM4XMFTXIA>
.
--
Digant Chimanlal "DC" Kasundra
|
I've tagged |
Awesome, thanks!
…On Wed, Feb 10, 2021 at 1:29 PM Mitchell Grenier ***@***.***> wrote:
I've tagged 0.3.10 with your change included. Thanks again!
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AC2UAQCKDLR3ZFXLEPJ6P4TS6L3CNANCNFSM4XMFTXIA>
.
--
Digant Chimanlal "DC" Kasundra
|
Add support for ssh-rsa (RSA_PKCS1_2048_8192_SHA1_FOR_LEGACY_USE_ONLY)
which is still used by some legacy systems.