From: Tudor Ambarus Subject: [PATCH v2 4/4] crypto: rsa_helper - export symbols for asn1 structures Date: Wed, 23 Mar 2016 17:04:19 +0200 Message-ID: <1458745459-1096-5-git-send-email-tudor-dan.ambarus@nxp.com> References: <1458745459-1096-1-git-send-email-tudor-dan.ambarus@nxp.com> Mime-Version: 1.0 Content-Type: text/plain Cc: , , , Tudor Ambarus To: , Return-path: Received: from mail-bn1on0078.outbound.protection.outlook.com ([157.56.110.78]:55520 "EHLO na01-bn1-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753113AbcCWPEn (ORCPT ); Wed, 23 Mar 2016 11:04:43 -0400 In-Reply-To: <1458745459-1096-1-git-send-email-tudor-dan.ambarus@nxp.com> Sender: linux-crypto-owner@vger.kernel.org List-ID: Export rsapubkey_decoder and rsaprivkey_decoder structures, since they can (will) be used by caam and qat drivers. Signed-off-by: Tudor Ambarus --- crypto/rsa_helper.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crypto/rsa_helper.c b/crypto/rsa_helper.c index df1f480..d81a0ec 100644 --- a/crypto/rsa_helper.c +++ b/crypto/rsa_helper.c @@ -21,6 +21,9 @@ #include "rsapubkey-asn1.h" #include "rsaprivkey-asn1.h" +EXPORT_SYMBOL_GPL(rsapubkey_decoder); +EXPORT_SYMBOL_GPL(rsaprivkey_decoder); + int rsa_get_n(void *context, size_t hdrlen, unsigned char tag, const void *value, size_t vlen) { -- 1.8.3.1