From 71a46fa08fe733562f949777f22d55484ec43cde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Wed, 4 Jan 2006 08:23:11 +0000 Subject: [PATCH] (rsa_pkcs1_method): constify git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@16467 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/hx509/ks_p11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/hx509/ks_p11.c b/lib/hx509/ks_p11.c index cfe7b157f..e70e1ebf8 100644 --- a/lib/hx509/ks_p11.c +++ b/lib/hx509/ks_p11.c @@ -193,7 +193,7 @@ p11_rsa_finish(RSA *rsa) return 1; } -static RSA_METHOD rsa_pkcs1_method = { +static const RSA_METHOD rsa_pkcs1_method = { "hx509 PKCS11 PKCS#1 RSA", p11_rsa_public_encrypt, p11_rsa_public_decrypt,