summaryrefslogtreecommitdiff
path: root/src/libbiguint/bu_submod.c
blob: 7eb065f216ac84b79ec248889413ad9fbdda6688 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* ISC license. */

#include <stdint.h>
#include <errno.h>
#include <skalibs/biguint.h>

int bu_submod (uint32_t *c, unsigned int cn, uint32_t const *a, unsigned int an, uint32_t const *b, unsigned int bn, uint32_t const *m, unsigned int mn)
{
  if (!bu_sub(c, cn, a, an, b, bn) && bu_add(c, cn, c, cn, m, mn))
    return (errno = EDOM, 0) ;
  return 1 ;
}