Skip to content
Snippets Groups Projects
Select Git revision
  • 7abd89f9b3d15dd2da4015c440c0be7ec45fa700
  • master default protected
  • 9.0
  • 8.0
  • nt-tools
  • 7.8
  • 7.6
  • 7.4
  • 7.2
  • 7.0
  • 0.6
  • rosuav/latex-markdown-renderer
  • rxnpatch/rxnpatch
  • marcus/gobject-introspection
  • rxnpatch/8.0
  • rosuav/pre-listening-ports
  • rosuav/async-annotations
  • rosuav/pgsql-ssl
  • rxnpatch/rxnpatch-broken/2023-10-06T094250
  • grubba/fdlib
  • grubba/wip/sakura/8.0
  • v8.0.2020
  • v8.0.2018
  • v8.0.2016
  • v8.0.2014
  • v8.0.2012
  • v8.0.2008
  • v8.0.2006
  • v8.0.2004
  • v8.0.2002
  • v8.0.2000
  • v8.0.1998
  • v8.0.1996
  • v8.0.1994
  • v8.0.1992
  • v8.0.1990
  • v8.0.1988
  • v8.0.1986
  • rxnpatch/clusters/8.0/2025-04-29T124414
  • rxnpatch/2025-04-29T124414
  • v8.0.1984
41 results

dynamic_buffer.c

Blame
  • bignum.h 2.83 KiB
    /* bignum.h
     *
     * bignum operations that are missing from gmp.
     */
    
    /* nettle, low-level cryptographics library
     *
     * Copyright (C) 2001 Niels Mller
     *  
     * The nettle library is free software; you can redistribute it and/or modify
     * it under the terms of the GNU Lesser General Public License as published by
     * the Free Software Foundation; either version 2.1 of the License, or (at your
     * option) any later version.
     * 
     * The nettle library is distributed in the hope that it will be useful, but
     * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
     * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
     * License for more details.
     * 
     * You should have received a copy of the GNU Lesser General Public License
     * along with the nettle library; see the file COPYING.LIB.  If not, write to
     * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
     * MA 02111-1307, USA.
     */
     
    #ifndef NETTLE_BIGNUM_H_INCLUDED
    #define NETTLE_BIGNUM_H_INCLUDED
    
    #include "nettle-meta.h"
    
    #include <gmp.h>
    #include "nettle-types.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    /* Size needed for signed encoding, including extra sign byte if
     * necessary. */
    unsigned
    nettle_mpz_sizeinbase_256_s(const mpz_t x);
    
    /* Size needed for unsigned encoding */
    unsigned
    nettle_mpz_sizeinbase_256_u(const mpz_t x);
    
    /* Writes an integer as length octets, using big endian byte order,
     * and two's complement for negative numbers. */
    /* FIXME: Change order of arguments, putting the mpz_t first? */
    void
    nettle_mpz_get_str_256(unsigned length, uint8_t *s, const mpz_t x);
    
    /* Reads a big endian, two's complement, integer. */
    void
    nettle_mpz_set_str_256_s(mpz_t x,
    			 unsigned length, const uint8_t *s);
    
    void
    nettle_mpz_init_set_str_256_s(mpz_t x,
    			      unsigned length, const uint8_t *s);
    
    /* Similar, but for unsigned format. These function don't interpret
     * the most significant bit as the sign. */
    void
    nettle_mpz_set_str_256_u(mpz_t x,
    			 unsigned length, const uint8_t *s);
    
    void
    nettle_mpz_init_set_str_256_u(mpz_t x,
    			      unsigned length, const uint8_t *s);
    
    /* Returns a uniformly distributed random number 0 <= x < 2^n */
    void
    nettle_mpz_random_size(mpz_t x,
    		       void *ctx, nettle_random_func random,
    		       unsigned bits);
    
    /* Returns a number x, almost uniformly random in the range
     * 0 <= x < n. */
    void
    nettle_mpz_random(mpz_t x, 
    		  void *ctx, nettle_random_func random,
    		  const mpz_t n);
    
    /* sexp parsing */
    struct sexp_iterator;
    
    /* If LIMIT is non-zero, the number must be at most LIMIT bits.
     * Implies sexp_iterator_next. */
    int
    nettle_mpz_set_sexp(mpz_t x, unsigned limit, struct sexp_iterator *i);
    
    
    /* der parsing */
    struct asn1_der_iterator;
    
    int
    nettle_asn1_der_get_bignum(struct asn1_der_iterator *iterator,
    			   mpz_t x, unsigned limit);
    
    #ifdef __cplusplus
    }
    #endif
    
    #endif /* NETTLE_BIGNUM_H_INCLUDED */