From: Mimi Zohar Subject: Re: [PATCH v1.3 1/4] lib: hex2bin converts ascii hexadecimal string to binary Date: Thu, 11 Nov 2010 17:23:21 -0500 Message-ID: <1289514201.2726.15.camel@localhost.localdomain> References: <1289404309-15955-2-git-send-email-zohar@linux.vnet.ibm.com> <1289404309-15955-1-git-send-email-zohar@linux.vnet.ibm.com> <6640.1289504927@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Cc: linux-kernel@vger.kernel.org, linux-security-module@vger.kernel.org, keyrings@linux-nfs.org, linux-crypto@vger.kernel.org, Jason Gunthorpe , James Morris , David Safford , Rajiv Andrade , Mimi Zohar To: David Howells Return-path: Received: from e8.ny.us.ibm.com ([32.97.182.138]:53372 "EHLO e8.ny.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756897Ab0KKWXY (ORCPT ); Thu, 11 Nov 2010 17:23:24 -0500 In-Reply-To: <6640.1289504927@redhat.com> Sender: linux-crypto-owner@vger.kernel.org List-ID: On Thu, 2010-11-11 at 19:48 +0000, David Howells wrote: > Mimi Zohar wrote: > > > +void hex2bin(unsigned char *mem, char *buf, int count) > > I think this needs a little adjustment. I would recommend something like the > following declaration: > > void hex2bin(u8 *buf, const char *data, size_t count) > > since the output data is binary (so use u8*), you're only reading the source > data (so should use a const pointer) and you don't want to see a negative > count (so use size_t). right, thanks. > Also, I'd suggest calling the source arg 'data' and the output arg 'buf' or > maybe src/dst. > > David Definitely better. (Remnant from kgdb_hex2mem() naming.) thanks, Mimi