aboutsummaryrefslogtreecommitdiffstats
path: root/src/cert/cvc/cvc_cert.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-03-04 04:12:01 +0000
committerlloyd <[email protected]>2010-03-04 04:12:01 +0000
commit75f888fc3776519d41ac242a2559e4c7e78f86a0 (patch)
treea2e9ac31e2fb5bfd81f7832b9c848e74af32fc4e /src/cert/cvc/cvc_cert.h
parent280ed6b255770be9608acbf3afa3e14f5824778a (diff)
Changes to CVC to deal with the fact that you can't create an uninitialized
ECDSA_PublicKey object anymore.
Diffstat (limited to 'src/cert/cvc/cvc_cert.h')
-rw-r--r--src/cert/cvc/cvc_cert.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cert/cvc/cvc_cert.h b/src/cert/cvc/cvc_cert.h
index 6e2966a6f..12bc41a9c 100644
--- a/src/cert/cvc/cvc_cert.h
+++ b/src/cert/cvc/cvc_cert.h
@@ -106,8 +106,8 @@ EAC1_1_CVC BOTAN_DLL make_cvc_cert(PK_Signer& signer,
/**
* Decode an EAC encoding ECDSA key
*/
-ECDSA_PublicKey BOTAN_DLL decode_eac1_1_key(const MemoryRegion<byte>& enc_key,
- AlgorithmIdentifier& sig_algo);
+BOTAN_DLL ECDSA_PublicKey* decode_eac1_1_key(const MemoryRegion<byte>& enc_key,
+ AlgorithmIdentifier& sig_algo);
}