mplogic.h
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:3k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  *  mplogic.h
  3.  *
  4.  *  Bitwise logical operations on MPI values
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public
  7.  * License Version 1.1 (the "License"); you may not use this file
  8.  * except in compliance with the License. You may obtain a copy of
  9.  * the License at http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS
  12.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  13.  * implied. See the License for the specific language governing
  14.  * rights and limitations under the License.
  15.  *
  16.  * The Original Code is the MPI Arbitrary Precision Integer Arithmetic
  17.  * library.
  18.  *
  19.  * The Initial Developer of the Original Code is Michael J. Fromberger.
  20.  * Portions created by Michael J. Fromberger are 
  21.  * Copyright (C) 1998, 1999, 2000 Michael J. Fromberger. 
  22.  * All Rights Reserved.
  23.  *
  24.  * Contributor(s):
  25.  *
  26.  * Alternatively, the contents of this file may be used under the
  27.  * terms of the GNU General Public License Version 2 or later (the
  28.  * "GPL"), in which case the provisions of the GPL are applicable
  29.  * instead of those above.  If you wish to allow use of your
  30.  * version of this file only under the terms of the GPL and not to
  31.  * allow others to use your version of this file under the MPL,
  32.  * indicate your decision by deleting the provisions above and
  33.  * replace them with the notice and other provisions required by
  34.  * the GPL.  If you do not delete the provisions above, a recipient
  35.  * may use your version of this file under either the MPL or the GPL.
  36.  *
  37.  *  $Id: mplogic.h,v 1.5 2000/08/01 01:38:29 nelsonb%netscape.com Exp $
  38.  */
  39. #ifndef _H_MPLOGIC_
  40. #define _H_MPLOGIC_
  41. #include "mpi.h"
  42. /*
  43.   The logical operations treat an mp_int as if it were a bit vector,
  44.   without regard to its sign (an mp_int is represented in a signed
  45.   magnitude format).  Values are treated as if they had an infinite
  46.   string of zeros left of the most-significant bit.
  47.  */
  48. /* Parity results                    */
  49. #define MP_EVEN       MP_YES
  50. #define MP_ODD        MP_NO
  51. /* Bitwise functions                 */
  52. mp_err mpl_not(mp_int *a, mp_int *b);            /* one's complement  */
  53. mp_err mpl_and(mp_int *a, mp_int *b, mp_int *c); /* bitwise AND       */
  54. mp_err mpl_or(mp_int *a, mp_int *b, mp_int *c);  /* bitwise OR        */
  55. mp_err mpl_xor(mp_int *a, mp_int *b, mp_int *c); /* bitwise XOR       */
  56. /* Shift functions                   */
  57. mp_err mpl_rsh(const mp_int *a, mp_int *b, mp_digit d);   /* right shift    */
  58. mp_err mpl_lsh(const mp_int *a, mp_int *b, mp_digit d);   /* left shift     */
  59. /* Bit count and parity              */
  60. mp_err mpl_num_set(mp_int *a, int *num);         /* count set bits    */
  61. mp_err mpl_num_clear(mp_int *a, int *num);       /* count clear bits  */
  62. mp_err mpl_parity(mp_int *a);                    /* determine parity  */
  63. /* Get & Set the value of a bit */
  64. mp_err mpl_set_bit(mp_int *a, mp_size bitNum, mp_size value);
  65. mp_err mpl_get_bit(const mp_int *a, mp_size bitNum);
  66. mp_err mpl_get_bits(const mp_int *a, mp_size lsbNum, mp_size numBits);
  67. mp_err mpl_significant_bits(const mp_int *a);
  68. #endif /* end _H_MPLOGIC_ */