From b125ed8fc62265d7ce3ee988bc2ceb759b189469 Mon Sep 17 00:00:00 2001 From: Paul Bakker Date: Thu, 10 Nov 2011 13:33:51 +0000 Subject: [PATCH] - Fixed typo in doxygen tag --- library/rsa.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/library/rsa.c b/library/rsa.c index bc3c8bf6d1..488d17c196 100644 --- a/library/rsa.c +++ b/library/rsa.c @@ -1,7 +1,7 @@ /* * The RSA public-key cryptosystem * - * Copyright (C) 2006-2010, Brainspark B.V. + * Copyright (C) 2006-2011, Brainspark B.V. * * This file is part of PolarSSL (http://www.polarssl.org) * Lead Maintainer: Paul Bakker @@ -307,11 +307,11 @@ cleanup: /** * Generate and apply the MGF1 operation (from PKCS#1 v2.1) to a buffer. * - * @param dst buffer to mask - * @param dlen length of destination buffer - * @param src source of the mask generation - * @param slen length of the source buffer - * @param md_ctx message digest context to use + * \param dst buffer to mask + * \param dlen length of destination buffer + * \param src source of the mask generation + * \param slen length of the source buffer + * \param md_ctx message digest context to use */ static void mgf_mask( unsigned char *dst, size_t dlen, unsigned char *src, size_t slen, md_context_t *md_ctx )