mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 01/14] MPILIB: Export some more symbols
@ 2011-11-28 15:44 David Howells
  2011-11-28 15:44 ` [PATCH 02/14] KEYS: Permit key_serial() to be called with a const key pointer David Howells
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: David Howells @ 2011-11-28 15:44 UTC (permalink / raw)
  To: keyrings
  Cc: linux-crypto, linux-security-module, linux-kernel,
	mitry.kasatkin, zohar, arjan.van.de.ven, alan.cox, David Howells

Export some more symbols for use by the DSA key subtype.

Signed-off-by: David Howells <dhowells@redhat.com>
---

 lib/mpi/mpi-cmp.c  |    2 ++
 lib/mpi/mpi-div.c  |    1 +
 lib/mpi/mpi-inv.c  |    1 +
 lib/mpi/mpi-mpow.c |    1 +
 lib/mpi/mpi-mul.c  |    1 +
 5 files changed, 6 insertions(+), 0 deletions(-)


diff --git a/lib/mpi/mpi-cmp.c b/lib/mpi/mpi-cmp.c
index 914bc42..1871e7b 100644
--- a/lib/mpi/mpi-cmp.c
+++ b/lib/mpi/mpi-cmp.c
@@ -39,6 +39,7 @@ int mpi_cmp_ui(MPI u, unsigned long v)
 	else
 		return -1;
 }
+EXPORT_SYMBOL_GPL(mpi_cmp_ui);
 
 int mpi_cmp(MPI u, MPI v)
 {
@@ -66,3 +67,4 @@ int mpi_cmp(MPI u, MPI v)
 		return 1;
 	return -1;
 }
+EXPORT_SYMBOL_GPL(mpi_cmp);
diff --git a/lib/mpi/mpi-div.c b/lib/mpi/mpi-div.c
index c3087d1..3da9402 100644
--- a/lib/mpi/mpi-div.c
+++ b/lib/mpi/mpi-div.c
@@ -59,6 +59,7 @@ nomem:
 		mpi_free(temp_divisor);
 	return rc;
 }
+EXPORT_SYMBOL_GPL(mpi_fdiv_r);
 
 /****************
  * Division rounding the quotient towards -infinity.
diff --git a/lib/mpi/mpi-inv.c b/lib/mpi/mpi-inv.c
index 0951f98..bfc5ca1 100644
--- a/lib/mpi/mpi-inv.c
+++ b/lib/mpi/mpi-inv.c
@@ -185,3 +185,4 @@ cleanup:
 	mpi_free(v);
 	return rc;
 }
+EXPORT_SYMBOL_GPL(mpi_invm);
diff --git a/lib/mpi/mpi-mpow.c b/lib/mpi/mpi-mpow.c
index 4cc7593..5752194 100644
--- a/lib/mpi/mpi-mpow.c
+++ b/lib/mpi/mpi-mpow.c
@@ -131,3 +131,4 @@ nomem:
 	kfree(G);
 	return rc;
 }
+EXPORT_SYMBOL_GPL(mpi_mulpowm);
diff --git a/lib/mpi/mpi-mul.c b/lib/mpi/mpi-mul.c
index 1f3219e..3d514b9 100644
--- a/lib/mpi/mpi-mul.c
+++ b/lib/mpi/mpi-mul.c
@@ -192,3 +192,4 @@ int mpi_mulm(MPI w, MPI u, MPI v, MPI m)
 		return -ENOMEM;
 	return mpi_fdiv_r(w, w, m);
 }
+EXPORT_SYMBOL_GPL(mpi_mulm);


^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2011-11-28 16:28 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-11-28 15:44 [PATCH 01/14] MPILIB: Export some more symbols David Howells
2011-11-28 15:44 ` [PATCH 02/14] KEYS: Permit key_serial() to be called with a const key pointer David Howells
2011-11-28 15:45 ` [PATCH 03/14] PGP: Add definitions (RFC 4880) and packet parser David Howells
2011-11-28 15:45 ` [PATCH 04/14] KEYS: Create a key type that can be used for general cryptographic operations David Howells
2011-11-28 15:45 ` [PATCH 05/14] KEYS: Add a DSA crypto key subtype David Howells
2011-11-28 15:45 ` [PATCH 06/14] KEYS: Add a RSA " David Howells
2011-11-28 15:45 ` [PATCH 07/14] PGP: Add signature parser David Howells
2011-11-28 15:46 ` [PATCH 08/14] KEYS: Add signature verification facility David Howells
2011-11-28 15:46 ` [PATCH 09/14] KEYS: DSA key signature verification David Howells
2011-11-28 15:46 ` [PATCH 10/14] KEYS: Add a crypto key request function David Howells
2011-11-28 15:46 ` [PATCH 11/14] KEYS: Provide a function to load keys from a PGP keyring blob David Howells
2011-11-28 15:46 ` [PATCH 12/14] MODSIGN: Add indications of module ELF types David Howells
2011-11-28 15:47 ` [PATCH 13/14] MODSIGN: Module ELF verifier David Howells
2011-11-28 15:47 ` [PATCH 14/14] MODSIGN: Apply signature checking to modules on module load David Howells
2011-11-28 16:27 ` [PATCH 00/14][RFC] Crypto keys and module signing David Howells

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome