* RSA verification in the kernel
@ 2011-01-13 7:19 Dmitry Kasatkin
2011-01-13 8:08 ` Nikos Mavrogiannopoulos
0 siblings, 1 reply; 5+ messages in thread
From: Dmitry Kasatkin @ 2011-01-13 7:19 UTC (permalink / raw)
To: Linux Crypto Mailing List
Hi,
Does anybody know if there is a GPL implementation of RSA verification
for the Linux kernel?
I know DigSig, but is anything recent available?
Thanks,
Dmitry
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: RSA verification in the kernel
2011-01-13 7:19 RSA verification in the kernel Dmitry Kasatkin
@ 2011-01-13 8:08 ` Nikos Mavrogiannopoulos
2011-01-13 10:25 ` Dmitry Kasatkin
0 siblings, 1 reply; 5+ messages in thread
From: Nikos Mavrogiannopoulos @ 2011-01-13 8:08 UTC (permalink / raw)
To: Dmitry Kasatkin; +Cc: Linux Crypto Mailing List
On Thu, Jan 13, 2011 at 8:19 AM, Dmitry Kasatkin
<dmitry.kasatkin@nokia.com> wrote:
> Hi,
> Does anybody know if there is a GPL implementation of RSA verification
> for the Linux kernel?
> I know DigSig, but is anything recent available?
In NCR [http://home.gna.org/cryptodev-linux/ncr.html] I've added RSA and DSA
using the public domain libtommath/libtomcrypt. You could use them. The internal
API for RSA is the libtomcrypt one.
regards,
Nikos
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: RSA verification in the kernel
2011-01-13 8:08 ` Nikos Mavrogiannopoulos
@ 2011-01-13 10:25 ` Dmitry Kasatkin
2011-01-13 10:30 ` Dmitry Kasatkin
0 siblings, 1 reply; 5+ messages in thread
From: Dmitry Kasatkin @ 2011-01-13 10:25 UTC (permalink / raw)
To: ext Nikos Mavrogiannopoulos; +Cc: Linux Crypto Mailing List
Hi,
Indeed. Forgot about it. I even have that repo on my computer: newapi
branch.
Thanks,
Dmitry
On 13/01/11 10:08, ext Nikos Mavrogiannopoulos wrote:
> On Thu, Jan 13, 2011 at 8:19 AM, Dmitry Kasatkin
> <dmitry.kasatkin@nokia.com> wrote:
>> Hi,
>> Does anybody know if there is a GPL implementation of RSA verification
>> for the Linux kernel?
>> I know DigSig, but is anything recent available?
> In NCR [http://home.gna.org/cryptodev-linux/ncr.html] I've added RSA and DSA
> using the public domain libtommath/libtomcrypt. You could use them. The internal
> API for RSA is the libtomcrypt one.
>
> regards,
> Nikos
> --
> To unsubscribe from this list: send the line "unsubscribe linux-crypto" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: RSA verification in the kernel
2011-01-13 10:25 ` Dmitry Kasatkin
@ 2011-01-13 10:30 ` Dmitry Kasatkin
2011-01-13 10:57 ` Nikos Mavrogiannopoulos
0 siblings, 1 reply; 5+ messages in thread
From: Dmitry Kasatkin @ 2011-01-13 10:30 UTC (permalink / raw)
To: ext Nikos Mavrogiannopoulos; +Cc: Linux Crypto Mailing List
Hi,
License of that library is such
--------------------------------------------------
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
----------------------------------------------------
I wonder if such code can be integrated to Linux kernel..
It needs to be GPL..
Can this "F..G" license be converted to GPL...?
- Dmitry
On 13/01/11 12:25, Dmitry Kasatkin wrote:
> Hi,
>
> Indeed. Forgot about it. I even have that repo on my computer: newapi
> branch.
>
> Thanks,
>
> Dmitry
>
> On 13/01/11 10:08, ext Nikos Mavrogiannopoulos wrote:
>> On Thu, Jan 13, 2011 at 8:19 AM, Dmitry Kasatkin
>> <dmitry.kasatkin@nokia.com> wrote:
>>> Hi,
>>> Does anybody know if there is a GPL implementation of RSA verification
>>> for the Linux kernel?
>>> I know DigSig, but is anything recent available?
>> In NCR [http://home.gna.org/cryptodev-linux/ncr.html] I've added RSA and DSA
>> using the public domain libtommath/libtomcrypt. You could use them. The internal
>> API for RSA is the libtomcrypt one.
>>
>> regards,
>> Nikos
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-crypto" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: RSA verification in the kernel
2011-01-13 10:30 ` Dmitry Kasatkin
@ 2011-01-13 10:57 ` Nikos Mavrogiannopoulos
0 siblings, 0 replies; 5+ messages in thread
From: Nikos Mavrogiannopoulos @ 2011-01-13 10:57 UTC (permalink / raw)
To: Dmitry Kasatkin; +Cc: Linux Crypto Mailing List
On Thu, Jan 13, 2011 at 11:30 AM, Dmitry Kasatkin
<dmitry.kasatkin@nokia.com> wrote:
> Hi,
> License of that library is such
> --------------------------------------------------
> DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
> Version 2, December 2004
> Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
I see that there is new maintainer of libtomcrypt and such and uses this
licence. This wasn't the case when I started working on that, thus
my code is based on the last public domain one released by Tom
(and is also pretty modified).
regards,
Nikos
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-01-13 10:57 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-13 7:19 RSA verification in the kernel Dmitry Kasatkin
2011-01-13 8:08 ` Nikos Mavrogiannopoulos
2011-01-13 10:25 ` Dmitry Kasatkin
2011-01-13 10:30 ` Dmitry Kasatkin
2011-01-13 10:57 ` Nikos Mavrogiannopoulos
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox