]> git.karo-electronics.de Git - karo-tx-linux.git/commit
MPILIB: Provide a function to read raw data into an MPI
authorDavid Howells <dhowells@redhat.com>
Mon, 24 Sep 2012 16:11:27 +0000 (17:11 +0100)
committerRusty Russell <rusty@rustcorp.com.au>
Fri, 28 Sep 2012 05:14:56 +0000 (14:44 +0930)
commitbd724d4bfad0655e860463c43642a756b2f8e267
tree975eb7d78a6eae87052c42c10cb95b55d1244bf9
parent788380fa26a6243e21285d58f26a20cdbd5d5cbf
MPILIB: Provide a function to read raw data into an MPI

Provide a function to read raw data of a predetermined size into an MPI rather
than expecting the size to be encoded within the data.  The data is assumed to
represent an unsigned integer, and the resulting MPI will be positive.

The function looks like this:

MPI mpi_read_raw_data(const void *, size_t);

This is useful for reading ASN.1 integer primitives where the length is encoded
in the ASN.1 metadata.

Signed-off-by: David Howells <dhowells@redhat.com>
include/linux/mpi.h
lib/mpi/mpicoder.c