From ff3a518e780ce0a49820d514fd3104032e925af8 Mon Sep 17 00:00:00 2001
From: Paul Bakker
Date: Mon, 16 Sep 2013 22:42:19 +0200
Subject: [PATCH] Changed doxygen comments in pk.h from x509_module to
pk_module
---
include/polarssl/pk.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/include/polarssl/pk.h b/include/polarssl/pk.h
index 451a4e3d5..7d141d99f 100644
--- a/include/polarssl/pk.h
+++ b/include/polarssl/pk.h
@@ -390,7 +390,7 @@ const char * pk_get_name( const pk_context *ctx );
pk_type_t pk_get_type( const pk_context *ctx );
#if defined(POLARSSL_PK_PARSE_C)
-/** \ingroup x509_module */
+/** \ingroup pk_module */
/**
* \brief Parse a private key
*
@@ -406,7 +406,7 @@ int pk_parse_key( pk_context *ctx,
const unsigned char *key, size_t keylen,
const unsigned char *pwd, size_t pwdlen );
-/** \ingroup x509_module */
+/** \ingroup pk_module */
/**
* \brief Parse a public key
*
@@ -420,7 +420,7 @@ int pk_parse_public_key( pk_context *ctx,
const unsigned char *key, size_t keylen );
#if defined(POLARSSL_FS_IO)
-/** \ingroup x509_module */
+/** \ingroup pk_module */
/**
* \brief Load and parse a private key
*
@@ -433,7 +433,7 @@ int pk_parse_public_key( pk_context *ctx,
int pk_parse_keyfile( pk_context *ctx,
const char *path, const char *password );
-/** \ingroup x509_module */
+/** \ingroup pk_module */
/**
* \brief Load and parse a public key
*