Home | History | Annotate | Download | only in libtommath

Lines Matching full:perform

163 However, there are cases where such a build is not optional.  For instance, you want to perform RSA operations.  You 
164 don't need the vast majority of the library to perform these operations. Aside from LTM\_ALL there is
195 A trim is a manner of removing functionality from a function that is not required. For instance, to perform
597 the array. If you need to perform an operation that requires more digits you will have to mp\_grow() the mp\_int to
1112 Which perform $c = a \odot b$ where $\odot$ is one of signed addition or subtraction. The operations are fully sign
1138 To perform a complete and general integer division with remainder use the following function.
1621 Generally to ensure a number is very likely to be prime you have to perform the Miller-Rabin with at least a half-dozen
1633 You should always still perform a trial division before a Miller-Rabin test though.
1640 This will perform a trial division followed by $t$ rounds of Miller-Rabin tests on $a$ and store the result in $result$.