diff options
author | David Howells <dhowells@redhat.com> | 2012-09-22 00:25:40 +0200 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2012-10-08 05:20:16 +0200 |
commit | 612e0fe99965a4028359cd1da5af56b7f6caf7f6 (patch) | |
tree | ff7fe3993067c3dc4f011ea702480add96b8e1e7 /crypto/asymmetric_keys/Makefile | |
parent | MPILIB: Reinstate mpi_cmp[_ui]() and export for RSA signature verification (diff) | |
download | linux-612e0fe99965a4028359cd1da5af56b7f6caf7f6.tar.xz linux-612e0fe99965a4028359cd1da5af56b7f6caf7f6.zip |
RSA: Implement signature verification algorithm [PKCS#1 / RFC3447]
Implement RSA public key cryptography [PKCS#1 / RFC3447]. At this time, only
the signature verification algorithm is supported. This uses the asymmetric
public key subtype to hold its key data.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'crypto/asymmetric_keys/Makefile')
-rw-r--r-- | crypto/asymmetric_keys/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/asymmetric_keys/Makefile b/crypto/asymmetric_keys/Makefile index 8dcdf0cdb261..7c92691a45eb 100644 --- a/crypto/asymmetric_keys/Makefile +++ b/crypto/asymmetric_keys/Makefile @@ -7,3 +7,4 @@ obj-$(CONFIG_ASYMMETRIC_KEY_TYPE) += asymmetric_keys.o asymmetric_keys-y := asymmetric_type.o signature.o obj-$(CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE) += public_key.o +obj-$(CONFIG_PUBLIC_KEY_ALGO_RSA) += rsa.o |