]> git.karo-electronics.de Git - karo-tx-linux.git/commit
KEYS: Implement asymmetric key type
authorDavid Howells <dhowells@redhat.com>
Thu, 13 Sep 2012 14:17:21 +0000 (15:17 +0100)
committerRusty Russell <rusty@rustcorp.com.au>
Fri, 28 Sep 2012 05:14:48 +0000 (14:44 +0930)
commit1883e09f8a5bcc7c599b0ae8234acea6a2276089
tree665f97fbd00a756f0e3195f9c6105420e4173268
parentf16ad812caf93524f3b57f1f8d19e3abf18f4a5b
KEYS: Implement asymmetric key type

Create a key type that can be used to represent an asymmetric key type for use
in appropriate cryptographic operations, such as encryption, decryption,
signature generation and signature verification.

The key type is "asymmetric" and can provide access to a variety of
cryptographic algorithms.

Possibly, this would be better as "public_key" - but that has the disadvantage
that "public key" is an overloaded term.

Signed-off-by: David Howells <dhowells@redhat.com>
crypto/Kconfig
crypto/Makefile
crypto/asymmetric_keys/Kconfig [new file with mode: 0644]
crypto/asymmetric_keys/Makefile [new file with mode: 0644]
crypto/asymmetric_keys/asymmetric_keys.h [new file with mode: 0644]
crypto/asymmetric_keys/asymmetric_type.c [new file with mode: 0644]
include/keys/asymmetric-subtype.h [new file with mode: 0644]
include/keys/asymmetric-type.h [new file with mode: 0644]