Blame nss/lib/freebl/mpi/mplogic.h

Packit 40b132
/*
Packit 40b132
 *  mplogic.h
Packit 40b132
 *
Packit 40b132
 *  Bitwise logical operations on MPI values
Packit 40b132
 *
Packit 40b132
 * This Source Code Form is subject to the terms of the Mozilla Public
Packit 40b132
 * License, v. 2.0. If a copy of the MPL was not distributed with this
Packit 40b132
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
Packit 40b132
Packit 40b132
#ifndef _H_MPLOGIC_
Packit 40b132
#define _H_MPLOGIC_
Packit 40b132
Packit 40b132
#include "mpi.h"
Packit 40b132
Packit 40b132
/*
Packit 40b132
  The logical operations treat an mp_int as if it were a bit vector,
Packit 40b132
  without regard to its sign (an mp_int is represented in a signed
Packit 40b132
  magnitude format).  Values are treated as if they had an infinite
Packit 40b132
  string of zeros left of the most-significant bit.
Packit 40b132
 */
Packit 40b132
Packit 40b132
/* Parity results                    */
Packit 40b132
Packit 40b132
#define MP_EVEN       MP_YES
Packit 40b132
#define MP_ODD        MP_NO
Packit 40b132
Packit 40b132
/* Bitwise functions                 */
Packit 40b132
Packit 40b132
mp_err mpl_not(mp_int *a, mp_int *b);            /* one's complement  */
Packit 40b132
mp_err mpl_and(mp_int *a, mp_int *b, mp_int *c); /* bitwise AND       */
Packit 40b132
mp_err mpl_or(mp_int *a, mp_int *b, mp_int *c);  /* bitwise OR        */
Packit 40b132
mp_err mpl_xor(mp_int *a, mp_int *b, mp_int *c); /* bitwise XOR       */
Packit 40b132
Packit 40b132
/* Shift functions                   */
Packit 40b132
Packit 40b132
mp_err mpl_rsh(const mp_int *a, mp_int *b, mp_digit d);   /* right shift    */
Packit 40b132
mp_err mpl_lsh(const mp_int *a, mp_int *b, mp_digit d);   /* left shift     */
Packit 40b132
Packit 40b132
/* Bit count and parity              */
Packit 40b132
Packit 40b132
mp_err mpl_num_set(mp_int *a, int *num);         /* count set bits    */
Packit 40b132
mp_err mpl_num_clear(mp_int *a, int *num);       /* count clear bits  */
Packit 40b132
mp_err mpl_parity(mp_int *a);                    /* determine parity  */
Packit 40b132
Packit 40b132
/* Get & Set the value of a bit */
Packit 40b132
Packit 40b132
mp_err mpl_set_bit(mp_int *a, mp_size bitNum, mp_size value);
Packit 40b132
mp_err mpl_get_bit(const mp_int *a, mp_size bitNum);
Packit 40b132
mp_err mpl_get_bits(const mp_int *a, mp_size lsbNum, mp_size numBits);
Packit 40b132
mp_err mpl_significant_bits(const mp_int *a);
Packit 40b132
Packit 40b132
#endif /* end _H_MPLOGIC_ */