Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

bigint_test.c 99KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436
  1. /*
  2. * Copyright (C) 2012 Michael Brown <mbrown@fensystems.co.uk>.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of the
  7. * License, or any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18. FILE_LICENCE ( GPL2_OR_LATER );
  19. /** @file
  20. *
  21. * Big integer self-tests
  22. *
  23. */
  24. /* Forcibly enable assertions */
  25. #undef NDEBUG
  26. #include <assert.h>
  27. #include <string.h>
  28. #include <ipxe/bigint.h>
  29. #include <ipxe/test.h>
  30. /** Define inline big integer */
  31. #define BIGINT(...) { __VA_ARGS__ }
  32. /* Provide global functions to allow inspection of generated assembly code */
  33. void bigint_init_sample ( bigint_element_t *value0, unsigned int size,
  34. const void *data, size_t len ) {
  35. bigint_t ( size ) *value __attribute__ (( may_alias ))
  36. = ( ( void * ) value0 );
  37. bigint_init ( value, data, len );
  38. }
  39. void bigint_done_sample ( const bigint_element_t *value0, unsigned int size,
  40. void *out, size_t len ) {
  41. const bigint_t ( size ) *value __attribute__ (( may_alias ))
  42. = ( ( const void * ) value0 );
  43. bigint_done ( value, out, len );
  44. }
  45. void bigint_add_sample ( const bigint_element_t *addend0,
  46. bigint_element_t *value0, unsigned int size ) {
  47. const bigint_t ( size ) *addend __attribute__ (( may_alias ))
  48. = ( ( const void * ) addend0 );
  49. bigint_t ( size ) *value __attribute__ (( may_alias ))
  50. = ( ( void * ) value0 );
  51. bigint_add ( addend, value );
  52. }
  53. void bigint_subtract_sample ( const bigint_element_t *subtrahend0,
  54. bigint_element_t *value0, unsigned int size ) {
  55. const bigint_t ( size ) *subtrahend __attribute__ (( may_alias ))
  56. = ( ( const void * ) subtrahend0 );
  57. bigint_t ( size ) *value __attribute__ (( may_alias ))
  58. = ( ( void * ) value0 );
  59. bigint_subtract ( subtrahend, value );
  60. }
  61. void bigint_rol_sample ( bigint_element_t *value0, unsigned int size ) {
  62. bigint_t ( size ) *value __attribute__ (( may_alias ))
  63. = ( ( void * ) value0 );
  64. bigint_rol ( value );
  65. }
  66. void bigint_ror_sample ( bigint_element_t *value0, unsigned int size ) {
  67. bigint_t ( size ) *value __attribute__ (( may_alias ))
  68. = ( ( void * ) value0 );
  69. bigint_ror ( value );
  70. }
  71. int bigint_is_zero_sample ( const bigint_element_t *value0,
  72. unsigned int size ) {
  73. const bigint_t ( size ) *value __attribute__ (( may_alias ))
  74. = ( ( const void * ) value0 );
  75. return bigint_is_zero ( value );
  76. }
  77. int bigint_is_geq_sample ( const bigint_element_t *value0,
  78. const bigint_element_t *reference0,
  79. unsigned int size ) {
  80. const bigint_t ( size ) *value __attribute__ (( may_alias ))
  81. = ( ( const void * ) value0 );
  82. const bigint_t ( size ) *reference __attribute__ (( may_alias ))
  83. = ( ( const void * ) reference0 );
  84. return bigint_is_geq ( value, reference );
  85. }
  86. int bigint_bit_is_set_sample ( const bigint_element_t *value0,
  87. unsigned int size, unsigned int bit ) {
  88. const bigint_t ( size ) *value __attribute__ (( may_alias ))
  89. = ( ( const void * ) value0 );
  90. return bigint_bit_is_set ( value, bit );
  91. }
  92. int bigint_max_set_bit_sample ( const bigint_element_t *value0,
  93. unsigned int size ) {
  94. const bigint_t ( size ) *value __attribute__ (( may_alias ))
  95. = ( ( const void * ) value0 );
  96. return bigint_max_set_bit ( value );
  97. }
  98. void bigint_grow_sample ( const bigint_element_t *source0,
  99. unsigned int source_size, bigint_element_t *dest0,
  100. unsigned int dest_size ) {
  101. const bigint_t ( source_size ) *source __attribute__ (( may_alias ))
  102. = ( ( const void * ) source0 );
  103. bigint_t ( dest_size ) *dest __attribute__ (( may_alias ))
  104. = ( ( void * ) dest0 );
  105. bigint_grow ( source, dest );
  106. }
  107. void bigint_shrink_sample ( const bigint_element_t *source0,
  108. unsigned int source_size, bigint_element_t *dest0,
  109. unsigned int dest_size ) {
  110. const bigint_t ( source_size ) *source __attribute__ (( may_alias ))
  111. = ( ( const void * ) source0 );
  112. bigint_t ( dest_size ) *dest __attribute__ (( may_alias ))
  113. = ( ( void * ) dest0 );
  114. bigint_shrink ( source, dest );
  115. }
  116. void bigint_multiply_sample ( const bigint_element_t *multiplicand0,
  117. const bigint_element_t *multiplier0,
  118. bigint_element_t *result0,
  119. unsigned int size ) {
  120. const bigint_t ( size ) *multiplicand __attribute__ (( may_alias ))
  121. = ( ( const void * ) multiplicand0 );
  122. const bigint_t ( size ) *multiplier __attribute__ (( may_alias ))
  123. = ( ( const void * ) multiplier0 );
  124. bigint_t ( size * 2 ) *result __attribute__ (( may_alias ))
  125. = ( ( void * ) result0 );
  126. bigint_multiply ( multiplicand, multiplier, result );
  127. }
  128. void bigint_mod_multiply_sample ( const bigint_element_t *multiplicand0,
  129. const bigint_element_t *multiplier0,
  130. const bigint_element_t *modulus0,
  131. bigint_element_t *result0,
  132. unsigned int size,
  133. void *tmp ) {
  134. const bigint_t ( size ) *multiplicand __attribute__ (( may_alias ))
  135. = ( ( const void * ) multiplicand0 );
  136. const bigint_t ( size ) *multiplier __attribute__ (( may_alias ))
  137. = ( ( const void * ) multiplier0 );
  138. const bigint_t ( size ) *modulus __attribute__ (( may_alias ))
  139. = ( ( const void * ) modulus0 );
  140. bigint_t ( size ) *result __attribute__ (( may_alias ))
  141. = ( ( void * ) result0 );
  142. bigint_mod_multiply ( multiplicand, multiplier, modulus, result, tmp );
  143. }
  144. void bigint_mod_exp_sample ( const bigint_element_t *base0,
  145. const bigint_element_t *modulus0,
  146. const bigint_element_t *exponent0,
  147. bigint_element_t *result0,
  148. unsigned int size, unsigned int exponent_size,
  149. void *tmp ) {
  150. const bigint_t ( size ) *base __attribute__ (( may_alias ))
  151. = ( ( const void * ) base0 );
  152. const bigint_t ( size ) *modulus __attribute__ (( may_alias ))
  153. = ( ( const void * ) modulus0 );
  154. const bigint_t ( exponent_size ) *exponent __attribute__ (( may_alias ))
  155. = ( ( const void * ) exponent0 );
  156. bigint_t ( size ) *result __attribute__ (( may_alias ))
  157. = ( ( void * ) result0 );
  158. bigint_mod_exp ( base, modulus, exponent, result, tmp );
  159. }
  160. /**
  161. * Report result of big integer addition test
  162. *
  163. * @v addend Big integer to add
  164. * @v value Big integer to be added to
  165. * @v expected Big integer expected result
  166. */
  167. #define bigint_add_ok( addend, value, expected ) do { \
  168. static const uint8_t addend_raw[] = addend; \
  169. static const uint8_t value_raw[] = value; \
  170. static const uint8_t expected_raw[] = expected; \
  171. uint8_t result_raw[ sizeof ( expected_raw ) ]; \
  172. unsigned int size = \
  173. bigint_required_size ( sizeof ( value_raw ) ); \
  174. bigint_t ( size ) addend_temp; \
  175. bigint_t ( size ) value_temp; \
  176. {} /* Fix emacs alignment */ \
  177. \
  178. assert ( bigint_size ( &addend_temp ) == \
  179. bigint_size ( &value_temp ) ); \
  180. bigint_init ( &value_temp, value_raw, sizeof ( value_raw ) ); \
  181. bigint_init ( &addend_temp, addend_raw, \
  182. sizeof ( addend_raw ) ); \
  183. DBG ( "Add:\n" ); \
  184. DBG_HDA ( 0, &addend_temp, sizeof ( addend_temp ) ); \
  185. DBG_HDA ( 0, &value_temp, sizeof ( value_temp ) ); \
  186. bigint_add ( &addend_temp, &value_temp ); \
  187. DBG_HDA ( 0, &value_temp, sizeof ( value_temp ) ); \
  188. bigint_done ( &value_temp, result_raw, sizeof ( result_raw ) ); \
  189. \
  190. ok ( memcmp ( result_raw, expected_raw, \
  191. sizeof ( result_raw ) ) == 0 ); \
  192. } while ( 0 )
  193. /**
  194. * Report result of big integer subtraction test
  195. *
  196. * @v subtrahend Big integer to subtract
  197. * @v value Big integer to be subtracted from
  198. * @v expected Big integer expected result
  199. */
  200. #define bigint_subtract_ok( subtrahend, value, expected ) do { \
  201. static const uint8_t subtrahend_raw[] = subtrahend; \
  202. static const uint8_t value_raw[] = value; \
  203. static const uint8_t expected_raw[] = expected; \
  204. uint8_t result_raw[ sizeof ( expected_raw ) ]; \
  205. unsigned int size = \
  206. bigint_required_size ( sizeof ( value_raw ) ); \
  207. bigint_t ( size ) subtrahend_temp; \
  208. bigint_t ( size ) value_temp; \
  209. {} /* Fix emacs alignment */ \
  210. \
  211. assert ( bigint_size ( &subtrahend_temp ) == \
  212. bigint_size ( &value_temp ) ); \
  213. bigint_init ( &value_temp, value_raw, sizeof ( value_raw ) ); \
  214. bigint_init ( &subtrahend_temp, subtrahend_raw, \
  215. sizeof ( subtrahend_raw ) ); \
  216. DBG ( "Subtract:\n" ); \
  217. DBG_HDA ( 0, &subtrahend_temp, sizeof ( subtrahend_temp ) ); \
  218. DBG_HDA ( 0, &value_temp, sizeof ( value_temp ) ); \
  219. bigint_subtract ( &subtrahend_temp, &value_temp ); \
  220. DBG_HDA ( 0, &value_temp, sizeof ( value_temp ) ); \
  221. bigint_done ( &value_temp, result_raw, sizeof ( result_raw ) ); \
  222. \
  223. ok ( memcmp ( result_raw, expected_raw, \
  224. sizeof ( result_raw ) ) == 0 ); \
  225. } while ( 0 )
  226. /**
  227. * Report result of big integer left rotation test
  228. *
  229. * @v value Big integer
  230. * @v expected Big integer expected result
  231. */
  232. #define bigint_rol_ok( value, expected ) do { \
  233. static const uint8_t value_raw[] = value; \
  234. static const uint8_t expected_raw[] = expected; \
  235. uint8_t result_raw[ sizeof ( expected_raw ) ]; \
  236. unsigned int size = \
  237. bigint_required_size ( sizeof ( value_raw ) ); \
  238. bigint_t ( size ) value_temp; \
  239. {} /* Fix emacs alignment */ \
  240. \
  241. bigint_init ( &value_temp, value_raw, sizeof ( value_raw ) ); \
  242. DBG ( "Rotate left:\n" ); \
  243. DBG_HDA ( 0, &value_temp, sizeof ( value_temp ) ); \
  244. bigint_rol ( &value_temp ); \
  245. DBG_HDA ( 0, &value_temp, sizeof ( value_temp ) ); \
  246. bigint_done ( &value_temp, result_raw, sizeof ( result_raw ) ); \
  247. \
  248. ok ( memcmp ( result_raw, expected_raw, \
  249. sizeof ( result_raw ) ) == 0 ); \
  250. } while ( 0 )
  251. /**
  252. * Report result of big integer right rotation test
  253. *
  254. * @v value Big integer
  255. * @v expected Big integer expected result
  256. */
  257. #define bigint_ror_ok( value, expected ) do { \
  258. static const uint8_t value_raw[] = value; \
  259. static const uint8_t expected_raw[] = expected; \
  260. uint8_t result_raw[ sizeof ( expected_raw ) ]; \
  261. unsigned int size = \
  262. bigint_required_size ( sizeof ( value_raw ) ); \
  263. bigint_t ( size ) value_temp; \
  264. {} /* Fix emacs alignment */ \
  265. \
  266. bigint_init ( &value_temp, value_raw, sizeof ( value_raw ) ); \
  267. DBG ( "Rotate right:\n" ); \
  268. DBG_HDA ( 0, &value_temp, sizeof ( value_temp ) ); \
  269. bigint_ror ( &value_temp ); \
  270. DBG_HDA ( 0, &value_temp, sizeof ( value_temp ) ); \
  271. bigint_done ( &value_temp, result_raw, sizeof ( result_raw ) ); \
  272. \
  273. ok ( memcmp ( result_raw, expected_raw, \
  274. sizeof ( result_raw ) ) == 0 ); \
  275. } while ( 0 )
  276. /**
  277. * Report result of big integer zero comparison test
  278. *
  279. * @v value Big integer
  280. * @v expected Expected result
  281. */
  282. #define bigint_is_zero_ok( value, expected ) do { \
  283. static const uint8_t value_raw[] = value; \
  284. unsigned int size = \
  285. bigint_required_size ( sizeof ( value_raw ) ); \
  286. bigint_t ( size ) value_temp; \
  287. int is_zero; \
  288. {} /* Fix emacs alignment */ \
  289. \
  290. bigint_init ( &value_temp, value_raw, sizeof ( value_raw ) ); \
  291. DBG ( "Zero comparison:\n" ); \
  292. DBG_HDA ( 0, &value_temp, sizeof ( value_temp ) ); \
  293. is_zero = bigint_is_zero ( &value_temp ); \
  294. DBG ( "...is %szero\n", ( is_zero ? "" : "not " ) ); \
  295. ok ( ( !! is_zero ) == ( !! (expected) ) ); \
  296. } while ( 0 )
  297. /**
  298. * Report result of big integer greater-than-or-equal comparison test
  299. *
  300. * @v value Big integer
  301. * @v reference Reference big integer
  302. * @v expected Expected result
  303. */
  304. #define bigint_is_geq_ok( value, reference, expected ) do { \
  305. static const uint8_t value_raw[] = value; \
  306. static const uint8_t reference_raw[] = reference; \
  307. unsigned int size = \
  308. bigint_required_size ( sizeof ( value_raw ) ); \
  309. bigint_t ( size ) value_temp; \
  310. bigint_t ( size ) reference_temp; \
  311. int is_geq; \
  312. {} /* Fix emacs alignment */ \
  313. \
  314. assert ( bigint_size ( &reference_temp ) == \
  315. bigint_size ( &value_temp ) ); \
  316. bigint_init ( &value_temp, value_raw, sizeof ( value_raw ) ); \
  317. bigint_init ( &reference_temp, reference_raw, \
  318. sizeof ( reference_raw ) ); \
  319. DBG ( "Greater-than-or-equal comparison:\n" ); \
  320. DBG_HDA ( 0, &value_temp, sizeof ( value_temp ) ); \
  321. DBG_HDA ( 0, &reference_temp, sizeof ( reference_temp ) ); \
  322. is_geq = bigint_is_geq ( &value_temp, &reference_temp ); \
  323. DBG ( "...is %sgreater than or equal\n", \
  324. ( is_geq ? "" : "not " ) ); \
  325. ok ( ( !! is_geq ) == ( !! (expected) ) ); \
  326. } while ( 0 )
  327. /**
  328. * Report result of big integer bit-set test
  329. *
  330. * @v value Big integer
  331. * @v bit Bit to test
  332. * @v expected Expected result
  333. */
  334. #define bigint_bit_is_set_ok( value, bit, expected ) do { \
  335. static const uint8_t value_raw[] = value; \
  336. unsigned int size = \
  337. bigint_required_size ( sizeof ( value_raw ) ); \
  338. bigint_t ( size ) value_temp; \
  339. int bit_is_set; \
  340. {} /* Fix emacs alignment */ \
  341. \
  342. bigint_init ( &value_temp, value_raw, sizeof ( value_raw ) ); \
  343. DBG ( "Bit set:\n" ); \
  344. DBG_HDA ( 0, &value_temp, sizeof ( value_temp ) ); \
  345. bit_is_set = bigint_bit_is_set ( &value_temp, bit ); \
  346. DBG ( "...bit %d is %sset\n", bit, \
  347. ( bit_is_set ? "" : "not " ) ); \
  348. ok ( ( !! bit_is_set ) == ( !! (expected) ) ); \
  349. } while ( 0 )
  350. /**
  351. * Report result of big integer maximum set bit test
  352. *
  353. * @v value Big integer
  354. * @v expected Expected result
  355. */
  356. #define bigint_max_set_bit_ok( value, expected ) do { \
  357. static const uint8_t value_raw[] = value; \
  358. unsigned int size = \
  359. bigint_required_size ( sizeof ( value_raw ) ); \
  360. bigint_t ( size ) value_temp; \
  361. int max_set_bit; \
  362. {} /* Fix emacs alignment */ \
  363. \
  364. bigint_init ( &value_temp, value_raw, sizeof ( value_raw ) ); \
  365. DBG ( "Maximum set bit:\n" ); \
  366. DBG_HDA ( 0, &value_temp, sizeof ( value_temp ) ); \
  367. max_set_bit = bigint_max_set_bit ( &value_temp ); \
  368. DBG ( "...maximum set bit is bit %d\n", ( max_set_bit - 1 ) ); \
  369. ok ( max_set_bit == (expected) ); \
  370. } while ( 0 )
  371. /**
  372. * Report result of big integer multiplication test
  373. *
  374. * @v multiplicand Big integer to be multiplied
  375. * @v multiplier Big integer to be multiplied
  376. * @v expected Big integer expected result
  377. */
  378. #define bigint_multiply_ok( multiplicand, multiplier, expected ) do { \
  379. static const uint8_t multiplicand_raw[] = multiplicand; \
  380. static const uint8_t multiplier_raw[] = multiplier; \
  381. static const uint8_t expected_raw[] = expected; \
  382. uint8_t result_raw[ sizeof ( expected_raw ) ]; \
  383. unsigned int size = \
  384. bigint_required_size ( sizeof ( multiplicand_raw ) ); \
  385. bigint_t ( size ) multiplicand_temp; \
  386. bigint_t ( size ) multiplier_temp; \
  387. bigint_t ( size * 2 ) result_temp; \
  388. {} /* Fix emacs alignment */ \
  389. \
  390. assert ( bigint_size ( &multiplier_temp ) == \
  391. bigint_size ( &multiplicand_temp ) ); \
  392. assert ( bigint_size ( &result_temp ) == \
  393. ( 2 * bigint_size ( &multiplicand_temp ) ) ); \
  394. bigint_init ( &multiplicand_temp, multiplicand_raw, \
  395. sizeof ( multiplicand_raw ) ); \
  396. bigint_init ( &multiplier_temp, multiplier_raw, \
  397. sizeof ( multiplier_raw ) ); \
  398. DBG ( "Multiply:\n" ); \
  399. DBG_HDA ( 0, &multiplicand_temp, sizeof ( multiplicand_temp ) );\
  400. DBG_HDA ( 0, &multiplier_temp, sizeof ( multiplier_temp ) ); \
  401. bigint_multiply ( &multiplicand_temp, &multiplier_temp, \
  402. &result_temp ); \
  403. DBG_HDA ( 0, &result_temp, sizeof ( result_temp ) ); \
  404. bigint_done ( &result_temp, result_raw, sizeof ( result_raw ) );\
  405. \
  406. ok ( memcmp ( result_raw, expected_raw, \
  407. sizeof ( result_raw ) ) == 0 ); \
  408. } while ( 0 )
  409. /**
  410. * Report result of big integer modular multiplication test
  411. *
  412. * @v multiplicand Big integer to be multiplied
  413. * @v multiplier Big integer to be multiplied
  414. * @v modulus Big integer modulus
  415. * @v expected Big integer expected result
  416. */
  417. #define bigint_mod_multiply_ok( multiplicand, multiplier, modulus, \
  418. expected ) do { \
  419. static const uint8_t multiplicand_raw[] = multiplicand; \
  420. static const uint8_t multiplier_raw[] = multiplier; \
  421. static const uint8_t modulus_raw[] = modulus; \
  422. static const uint8_t expected_raw[] = expected; \
  423. uint8_t result_raw[ sizeof ( expected_raw ) ]; \
  424. unsigned int size = \
  425. bigint_required_size ( sizeof ( multiplicand_raw ) ); \
  426. bigint_t ( size ) multiplicand_temp; \
  427. bigint_t ( size ) multiplier_temp; \
  428. bigint_t ( size ) modulus_temp; \
  429. bigint_t ( size ) result_temp; \
  430. size_t tmp_len = bigint_mod_multiply_tmp_len ( &modulus_temp ); \
  431. uint8_t tmp[tmp_len]; \
  432. {} /* Fix emacs alignment */ \
  433. \
  434. assert ( bigint_size ( &multiplier_temp ) == \
  435. bigint_size ( &multiplicand_temp ) ); \
  436. assert ( bigint_size ( &multiplier_temp ) == \
  437. bigint_size ( &modulus_temp ) ); \
  438. assert ( bigint_size ( &multiplier_temp ) == \
  439. bigint_size ( &result_temp ) ); \
  440. bigint_init ( &multiplicand_temp, multiplicand_raw, \
  441. sizeof ( multiplicand_raw ) ); \
  442. bigint_init ( &multiplier_temp, multiplier_raw, \
  443. sizeof ( multiplier_raw ) ); \
  444. bigint_init ( &modulus_temp, modulus_raw, \
  445. sizeof ( modulus_raw ) ); \
  446. DBG ( "Modular multiply:\n" ); \
  447. DBG_HDA ( 0, &multiplicand_temp, sizeof ( multiplicand_temp ) );\
  448. DBG_HDA ( 0, &multiplier_temp, sizeof ( multiplier_temp ) ); \
  449. DBG_HDA ( 0, &modulus_temp, sizeof ( modulus_temp ) ); \
  450. bigint_mod_multiply ( &multiplicand_temp, &multiplier_temp, \
  451. &modulus_temp, &result_temp, tmp ); \
  452. DBG_HDA ( 0, &result_temp, sizeof ( result_temp ) ); \
  453. bigint_done ( &result_temp, result_raw, sizeof ( result_raw ) );\
  454. \
  455. ok ( memcmp ( result_raw, expected_raw, \
  456. sizeof ( result_raw ) ) == 0 ); \
  457. } while ( 0 )
  458. /**
  459. * Report result of big integer modular exponentiation test
  460. *
  461. * @v base Big integer base
  462. * @v modulus Big integer modulus
  463. * @v exponent Big integer exponent
  464. * @v expected Big integer expected result
  465. */
  466. #define bigint_mod_exp_ok( base, modulus, exponent, expected ) do { \
  467. static const uint8_t base_raw[] = base; \
  468. static const uint8_t modulus_raw[] = modulus; \
  469. static const uint8_t exponent_raw[] = exponent; \
  470. static const uint8_t expected_raw[] = expected; \
  471. uint8_t result_raw[ sizeof ( expected_raw ) ]; \
  472. unsigned int size = \
  473. bigint_required_size ( sizeof ( base_raw ) ); \
  474. unsigned int exponent_size = \
  475. bigint_required_size ( sizeof ( exponent_raw ) ); \
  476. bigint_t ( size ) base_temp; \
  477. bigint_t ( size ) modulus_temp; \
  478. bigint_t ( exponent_size ) exponent_temp; \
  479. bigint_t ( size ) result_temp; \
  480. size_t tmp_len = bigint_mod_exp_tmp_len ( &modulus_temp, \
  481. &exponent_temp ); \
  482. uint8_t tmp[tmp_len]; \
  483. {} /* Fix emacs alignment */ \
  484. \
  485. assert ( bigint_size ( &modulus_temp ) == \
  486. bigint_size ( &base_temp ) ); \
  487. assert ( bigint_size ( &modulus_temp ) == \
  488. bigint_size ( &result_temp ) ); \
  489. bigint_init ( &base_temp, base_raw, sizeof ( base_raw ) ); \
  490. bigint_init ( &modulus_temp, modulus_raw, \
  491. sizeof ( modulus_raw ) ); \
  492. bigint_init ( &exponent_temp, exponent_raw, \
  493. sizeof ( exponent_raw ) ); \
  494. DBG ( "Modular exponentiation:\n" ); \
  495. DBG_HDA ( 0, &base_temp, sizeof ( base_temp ) ); \
  496. DBG_HDA ( 0, &modulus_temp, sizeof ( modulus_temp ) ); \
  497. DBG_HDA ( 0, &exponent_temp, sizeof ( exponent_temp ) ); \
  498. bigint_mod_exp ( &base_temp, &modulus_temp, &exponent_temp, \
  499. &result_temp, tmp ); \
  500. DBG_HDA ( 0, &result_temp, sizeof ( result_temp ) ); \
  501. bigint_done ( &result_temp, result_raw, sizeof ( result_raw ) );\
  502. \
  503. ok ( memcmp ( result_raw, expected_raw, \
  504. sizeof ( result_raw ) ) == 0 ); \
  505. } while ( 0 )
  506. /**
  507. * Perform big integer self-tests
  508. *
  509. */
  510. static void bigint_test_exec ( void ) {
  511. bigint_add_ok ( BIGINT ( 0x8a ),
  512. BIGINT ( 0x43 ),
  513. BIGINT ( 0xcd ) );
  514. bigint_add_ok ( BIGINT ( 0xc5, 0x7b ),
  515. BIGINT ( 0xd6, 0xb1 ),
  516. BIGINT ( 0x9c, 0x2c ) );
  517. bigint_add_ok ( BIGINT ( 0xf9, 0xd9, 0xdc ),
  518. BIGINT ( 0x6d, 0x4b, 0xca ),
  519. BIGINT ( 0x67, 0x25, 0xa6 ) );
  520. bigint_add_ok ( BIGINT ( 0xdd, 0xc2, 0x20, 0x5f ),
  521. BIGINT ( 0x80, 0x32, 0xc4, 0xb0 ),
  522. BIGINT ( 0x5d, 0xf4, 0xe5, 0x0f ) );
  523. bigint_add_ok ( BIGINT ( 0x01, 0xed, 0x45, 0x4b, 0x41, 0xeb, 0x4c,
  524. 0x2e, 0x53, 0x07, 0x15, 0x51, 0x56, 0x47,
  525. 0x29, 0xfc, 0x9c, 0xbd, 0xbd, 0xfb, 0x1b,
  526. 0xd1, 0x1d ),
  527. BIGINT ( 0x73, 0xed, 0xfc, 0x35, 0x31, 0x22, 0xd7,
  528. 0xb1, 0xea, 0x91, 0x5a, 0xe4, 0xba, 0xbc,
  529. 0xa1, 0x38, 0x72, 0xae, 0x4b, 0x1c, 0xc1,
  530. 0x05, 0xb3 ),
  531. BIGINT ( 0x75, 0xdb, 0x41, 0x80, 0x73, 0x0e, 0x23,
  532. 0xe0, 0x3d, 0x98, 0x70, 0x36, 0x11, 0x03,
  533. 0xcb, 0x35, 0x0f, 0x6c, 0x09, 0x17, 0xdc,
  534. 0xd6, 0xd0 ) );
  535. bigint_add_ok ( BIGINT ( 0x06, 0x8e, 0xd6, 0x18, 0xbb, 0x4b, 0x0c,
  536. 0xc5, 0x85, 0xde, 0xee, 0x9b, 0x3f, 0x65,
  537. 0x63, 0x86, 0xf5, 0x5a, 0x9f, 0xa2, 0xd7,
  538. 0xb2, 0xc7, 0xb6, 0x1d, 0x28, 0x6c, 0x50,
  539. 0x47, 0x10, 0x0a, 0x0e, 0x86, 0xcd, 0x2a,
  540. 0x64, 0xdc, 0xe6, 0x9d, 0x96, 0xd8, 0xf4,
  541. 0x56, 0x46, 0x6f, 0xbb, 0x7b, 0x64, 0x6f,
  542. 0xdc, 0x2a, 0xd1, 0x3b, 0xcc, 0x03, 0x85,
  543. 0x95, 0xf4, 0xe9, 0x68, 0x1f, 0x5c, 0xc5,
  544. 0xbf, 0x97, 0x19, 0x12, 0x88, 0x2e, 0x88,
  545. 0xb9, 0x34, 0xac, 0x74, 0x83, 0x2d, 0x8f,
  546. 0xb3, 0x97, 0x53, 0x99, 0xf3, 0xb4, 0x8b,
  547. 0x2d, 0x98, 0x69, 0x8d, 0x19, 0xf0, 0x40,
  548. 0x66, 0x3f, 0x60, 0x78, 0x34, 0x7f, 0x9b,
  549. 0xf7, 0x01, 0x74, 0x55, 0xca, 0x63, 0x25,
  550. 0x7b, 0x86, 0xe9, 0x73, 0xfd, 0x5d, 0x77,
  551. 0x32, 0x5e, 0x9e, 0x42, 0x53, 0xb6, 0x35,
  552. 0x92, 0xb9, 0xd7, 0x1b, 0xf7, 0x16, 0x55,
  553. 0xf6, 0xe2 ),
  554. BIGINT ( 0x3f, 0x8f, 0x62, 0x21, 0x4a, 0x7a, 0xa2,
  555. 0xef, 0xa8, 0x79, 0x9b, 0x73, 0xac, 0xde,
  556. 0x72, 0xe4, 0xfc, 0x3c, 0xd3, 0xa9, 0x44,
  557. 0x1a, 0x6a, 0x02, 0x76, 0xe3, 0x78, 0x4d,
  558. 0x2e, 0x07, 0x9b, 0xb6, 0x3d, 0x5d, 0xc5,
  559. 0xcd, 0x68, 0x23, 0x4b, 0x5f, 0x89, 0x0e,
  560. 0xd7, 0xa7, 0xff, 0x18, 0x80, 0xdc, 0xfb,
  561. 0x34, 0x45, 0xca, 0x4b, 0xdb, 0x8a, 0x19,
  562. 0xcb, 0xc9, 0xe5, 0xa1, 0x63, 0xa2, 0x0d,
  563. 0x56, 0xc4, 0xf9, 0x51, 0x1b, 0x88, 0x4e,
  564. 0x36, 0xab, 0x15, 0x4d, 0x8f, 0xdc, 0x08,
  565. 0xc4, 0x4d, 0x43, 0xc7, 0x2b, 0xc9, 0x5c,
  566. 0x05, 0x26, 0xe3, 0x46, 0xf0, 0x64, 0xaa,
  567. 0x02, 0xa4, 0xbe, 0x3a, 0xd1, 0xca, 0x07,
  568. 0x6a, 0x6e, 0x62, 0xf4, 0x57, 0x71, 0x96,
  569. 0xec, 0xf0, 0x0b, 0xac, 0xa4, 0x4a, 0xa3,
  570. 0x6d, 0x01, 0xba, 0xbd, 0x62, 0xc0, 0x10,
  571. 0x54, 0x33, 0x8a, 0x71, 0xef, 0xaa, 0x1c,
  572. 0x25, 0x25 ),
  573. BIGINT ( 0x46, 0x1e, 0x38, 0x3a, 0x05, 0xc5, 0xaf,
  574. 0xb5, 0x2e, 0x58, 0x8a, 0x0e, 0xec, 0x43,
  575. 0xd6, 0x6b, 0xf1, 0x97, 0x73, 0x4c, 0x1b,
  576. 0xcd, 0x31, 0xb8, 0x94, 0x0b, 0xe4, 0x9d,
  577. 0x75, 0x17, 0xa5, 0xc4, 0xc4, 0x2a, 0xf0,
  578. 0x32, 0x45, 0x09, 0xe8, 0xf6, 0x62, 0x03,
  579. 0x2d, 0xee, 0x6e, 0xd3, 0xfc, 0x41, 0x6b,
  580. 0x10, 0x70, 0x9b, 0x87, 0xa7, 0x8d, 0x9f,
  581. 0x61, 0xbe, 0xcf, 0x09, 0x82, 0xfe, 0xd3,
  582. 0x16, 0x5c, 0x12, 0x63, 0xa3, 0xb6, 0xd6,
  583. 0xef, 0xdf, 0xc1, 0xc2, 0x13, 0x09, 0x98,
  584. 0x77, 0xe4, 0x97, 0x61, 0x1f, 0x7d, 0xe7,
  585. 0x32, 0xbf, 0x4c, 0xd4, 0x0a, 0x54, 0xea,
  586. 0x68, 0xe4, 0x1e, 0xb3, 0x06, 0x49, 0xa3,
  587. 0x61, 0x6f, 0xd7, 0x4a, 0x21, 0xd4, 0xbc,
  588. 0x68, 0x76, 0xf5, 0x20, 0xa1, 0xa8, 0x1a,
  589. 0x9f, 0x60, 0x58, 0xff, 0xb6, 0x76, 0x45,
  590. 0xe6, 0xed, 0x61, 0x8d, 0xe6, 0xc0, 0x72,
  591. 0x1c, 0x07 ) );
  592. bigint_subtract_ok ( BIGINT ( 0x83 ),
  593. BIGINT ( 0x50 ),
  594. BIGINT ( 0xcd ) );
  595. bigint_subtract_ok ( BIGINT ( 0x2c, 0x7c ),
  596. BIGINT ( 0x49, 0x0e ),
  597. BIGINT ( 0x1c, 0x92 ) );
  598. bigint_subtract_ok ( BIGINT ( 0x9c, 0x30, 0xbf ),
  599. BIGINT ( 0xde, 0x4e, 0x07 ),
  600. BIGINT ( 0x42, 0x1d, 0x48 ) );
  601. bigint_subtract_ok ( BIGINT ( 0xbb, 0x77, 0x32, 0x5a ),
  602. BIGINT ( 0x5a, 0xd5, 0xfe, 0x28 ),
  603. BIGINT ( 0x9f, 0x5e, 0xcb, 0xce ) );
  604. bigint_subtract_ok ( BIGINT ( 0x7b, 0xaa, 0x16, 0xcf, 0x15, 0x87,
  605. 0xe0, 0x4f, 0x2c, 0xa3, 0xec, 0x2f,
  606. 0x46, 0xfb, 0x83, 0xc6, 0xe0, 0xee,
  607. 0x57, 0xfa, 0x04, 0xce, 0xa6 ),
  608. BIGINT ( 0x46, 0x55, 0xb6, 0x23, 0x63, 0xd0,
  609. 0x55, 0xdb, 0x8f, 0xcc, 0x55, 0xa8,
  610. 0x2f, 0x85, 0xc1, 0x9f, 0x2c, 0x13,
  611. 0x10, 0x9e, 0x76, 0x3c, 0x11 ),
  612. BIGINT ( 0xca, 0xab, 0x9f, 0x54, 0x4e, 0x48,
  613. 0x75, 0x8c, 0x63, 0x28, 0x69, 0x78,
  614. 0xe8, 0x8a, 0x3d, 0xd8, 0x4b, 0x24,
  615. 0xb8, 0xa4, 0x71, 0x6d, 0x6b ) );
  616. bigint_subtract_ok ( BIGINT ( 0x5b, 0x06, 0x77, 0x7b, 0xfd, 0x34,
  617. 0x5f, 0x0f, 0xd9, 0xbd, 0x8e, 0x5d,
  618. 0xc8, 0x4a, 0x70, 0x95, 0x1b, 0xb6,
  619. 0x48, 0xfb, 0x0e, 0x40, 0xce, 0x06,
  620. 0x66, 0xcc, 0x29, 0xe9, 0x51, 0x59,
  621. 0x59, 0xc9, 0x65, 0x07, 0x75, 0xb8,
  622. 0xd4, 0xcb, 0x07, 0x68, 0x14, 0x48,
  623. 0xc7, 0x1e, 0xfe, 0xb3, 0x4c, 0xf1,
  624. 0x10, 0xf0, 0xc7, 0x82, 0x38, 0x4c,
  625. 0xaf, 0x05, 0x6d, 0x91, 0xc5, 0x18,
  626. 0xfd, 0x1e, 0x26, 0x1b, 0xef, 0x71,
  627. 0x70, 0x2e, 0x06, 0x70, 0x8e, 0x54,
  628. 0xfa, 0x2b, 0x4d, 0x96, 0x85, 0x10,
  629. 0x03, 0x76, 0xe7, 0x17, 0x59, 0x86,
  630. 0x6c, 0x8b, 0x24, 0x6e, 0xd9, 0x30,
  631. 0xf3, 0xd2, 0x9b, 0x62, 0xdc, 0x23,
  632. 0x54, 0x06, 0x51, 0xb1, 0x95, 0x58,
  633. 0xec, 0x27, 0xf6, 0x19, 0xae, 0xf4,
  634. 0x31, 0xec, 0x72, 0x53, 0xcd, 0x32,
  635. 0xed, 0xf4, 0x25, 0x4a, 0x5b, 0x36,
  636. 0xa2, 0xb4, 0xa0, 0x29, 0x0c, 0x6b,
  637. 0x3f, 0xc2 ),
  638. BIGINT ( 0x7a, 0xd4, 0x25, 0xf1, 0xb5, 0xf5,
  639. 0x00, 0x96, 0x47, 0x5b, 0x4f, 0x9f,
  640. 0x1f, 0x61, 0x69, 0xd9, 0x72, 0x47,
  641. 0xde, 0xbd, 0x87, 0x5d, 0x50, 0x91,
  642. 0x69, 0xd8, 0x35, 0xe0, 0x43, 0xd8,
  643. 0xd5, 0x15, 0xf2, 0xcd, 0x01, 0x73,
  644. 0x0d, 0x34, 0xf0, 0x34, 0x46, 0x76,
  645. 0xc0, 0x55, 0x7b, 0x27, 0xf5, 0x7b,
  646. 0x55, 0xe9, 0xd0, 0x29, 0x0b, 0x4b,
  647. 0x9f, 0x07, 0xbf, 0x2c, 0x3f, 0xef,
  648. 0x36, 0x34, 0xde, 0x29, 0x1d, 0x5d,
  649. 0x84, 0x5a, 0x5d, 0xc1, 0x02, 0x4d,
  650. 0x56, 0xf1, 0x47, 0x39, 0x37, 0xc9,
  651. 0xb5, 0x5f, 0x73, 0xec, 0x7c, 0x3d,
  652. 0xbd, 0xc0, 0xfd, 0x38, 0x6c, 0x91,
  653. 0x88, 0x4a, 0x0f, 0xee, 0xa1, 0x80,
  654. 0xf5, 0x6a, 0x7c, 0x8c, 0x02, 0xc3,
  655. 0x5a, 0xb2, 0x15, 0xa6, 0x2f, 0x6b,
  656. 0x5b, 0x78, 0xb5, 0xf3, 0xbd, 0xd0,
  657. 0xc8, 0xbc, 0xb1, 0xbb, 0xe1, 0xce,
  658. 0x22, 0x80, 0x34, 0x5a, 0x2a, 0x27,
  659. 0x83, 0xdc ),
  660. BIGINT ( 0x1f, 0xcd, 0xae, 0x75, 0xb8, 0xc0,
  661. 0xa1, 0x86, 0x6d, 0x9d, 0xc1, 0x41,
  662. 0x57, 0x16, 0xf9, 0x44, 0x56, 0x91,
  663. 0x95, 0xc2, 0x79, 0x1c, 0x82, 0x8b,
  664. 0x03, 0x0c, 0x0b, 0xf6, 0xf2, 0x7f,
  665. 0x7b, 0x4c, 0x8d, 0xc5, 0x8b, 0xba,
  666. 0x38, 0x69, 0xe8, 0xcc, 0x32, 0x2d,
  667. 0xf9, 0x36, 0x7c, 0x74, 0xa8, 0x8a,
  668. 0x44, 0xf9, 0x08, 0xa6, 0xd2, 0xfe,
  669. 0xf0, 0x02, 0x51, 0x9a, 0x7a, 0xd6,
  670. 0x39, 0x16, 0xb8, 0x0d, 0x2d, 0xec,
  671. 0x14, 0x2c, 0x57, 0x50, 0x73, 0xf8,
  672. 0x5c, 0xc5, 0xf9, 0xa2, 0xb2, 0xb9,
  673. 0xb1, 0xe8, 0x8c, 0xd5, 0x22, 0xb7,
  674. 0x51, 0x35, 0xd8, 0xc9, 0x93, 0x60,
  675. 0x94, 0x77, 0x74, 0x8b, 0xc5, 0x5d,
  676. 0xa1, 0x64, 0x2a, 0xda, 0x6d, 0x6a,
  677. 0x6e, 0x8a, 0x1f, 0x8c, 0x80, 0x77,
  678. 0x29, 0x8c, 0x43, 0x9f, 0xf0, 0x9d,
  679. 0xda, 0xc8, 0x8c, 0x71, 0x86, 0x97,
  680. 0x7f, 0xcb, 0x94, 0x31, 0x1d, 0xbc,
  681. 0x44, 0x1a ) );
  682. bigint_rol_ok ( BIGINT ( 0xe0 ),
  683. BIGINT ( 0xc0 ) );
  684. bigint_rol_ok ( BIGINT ( 0x43, 0x1d ),
  685. BIGINT ( 0x86, 0x3a ) );
  686. bigint_rol_ok ( BIGINT ( 0xac, 0xed, 0x9b ),
  687. BIGINT ( 0x59, 0xdb, 0x36 ) );
  688. bigint_rol_ok ( BIGINT ( 0x2c, 0xe8, 0x3a, 0x22 ),
  689. BIGINT ( 0x59, 0xd0, 0x74, 0x44 ) );
  690. bigint_rol_ok ( BIGINT ( 0x4e, 0x88, 0x4a, 0x05, 0x5e, 0x10, 0xee,
  691. 0x5b, 0xc6, 0x40, 0x0e, 0x03, 0xd7, 0x0d,
  692. 0x28, 0xa5, 0x55, 0xb2, 0x50, 0xef, 0x69,
  693. 0xd1, 0x1d ),
  694. BIGINT ( 0x9d, 0x10, 0x94, 0x0a, 0xbc, 0x21, 0xdc,
  695. 0xb7, 0x8c, 0x80, 0x1c, 0x07, 0xae, 0x1a,
  696. 0x51, 0x4a, 0xab, 0x64, 0xa1, 0xde, 0xd3,
  697. 0xa2, 0x3a ) );
  698. bigint_rol_ok ( BIGINT ( 0x07, 0x62, 0x78, 0x70, 0x2e, 0xd4, 0x41,
  699. 0xaa, 0x9b, 0x50, 0xb1, 0x9a, 0x71, 0xf5,
  700. 0x1c, 0x2f, 0xe7, 0x0d, 0xf1, 0x46, 0x57,
  701. 0x04, 0x99, 0x78, 0x4e, 0x84, 0x78, 0xba,
  702. 0x57, 0xea, 0xa5, 0x43, 0xf7, 0x02, 0xf0,
  703. 0x7a, 0x22, 0x60, 0x65, 0x42, 0xf2, 0x33,
  704. 0x7d, 0xe3, 0xa8, 0x1b, 0xc4, 0x14, 0xdb,
  705. 0xee, 0x4a, 0xf1, 0xe1, 0x52, 0xd4, 0xda,
  706. 0x23, 0xed, 0x13, 0x5d, 0xea, 0xcf, 0xf6,
  707. 0x5e, 0x39, 0x84, 0xe2, 0xb3, 0xa2, 0x05,
  708. 0xba, 0xd9, 0x49, 0x8e, 0x75, 0x1d, 0xdb,
  709. 0xe6, 0xb1, 0x6e, 0xda, 0x0a, 0x83, 0xd0,
  710. 0x6e, 0xcf, 0x7a, 0x66, 0xb7, 0x64, 0x84,
  711. 0xf5, 0x09, 0x5a, 0xa8, 0x11, 0x93, 0xf3,
  712. 0x4f, 0x02, 0x28, 0x00, 0x3a, 0xf0, 0xa9,
  713. 0x08, 0x77, 0x04, 0xf5, 0x04, 0xcd, 0x6b,
  714. 0x24, 0xbe, 0x0f, 0x6d, 0xe3, 0xb2, 0xd3,
  715. 0x07, 0x68, 0xe9, 0x00, 0x59, 0xa0, 0xe4,
  716. 0x9e, 0x5e ),
  717. BIGINT ( 0x0e, 0xc4, 0xf0, 0xe0, 0x5d, 0xa8, 0x83,
  718. 0x55, 0x36, 0xa1, 0x63, 0x34, 0xe3, 0xea,
  719. 0x38, 0x5f, 0xce, 0x1b, 0xe2, 0x8c, 0xae,
  720. 0x09, 0x32, 0xf0, 0x9d, 0x08, 0xf1, 0x74,
  721. 0xaf, 0xd5, 0x4a, 0x87, 0xee, 0x05, 0xe0,
  722. 0xf4, 0x44, 0xc0, 0xca, 0x85, 0xe4, 0x66,
  723. 0xfb, 0xc7, 0x50, 0x37, 0x88, 0x29, 0xb7,
  724. 0xdc, 0x95, 0xe3, 0xc2, 0xa5, 0xa9, 0xb4,
  725. 0x47, 0xda, 0x26, 0xbb, 0xd5, 0x9f, 0xec,
  726. 0xbc, 0x73, 0x09, 0xc5, 0x67, 0x44, 0x0b,
  727. 0x75, 0xb2, 0x93, 0x1c, 0xea, 0x3b, 0xb7,
  728. 0xcd, 0x62, 0xdd, 0xb4, 0x15, 0x07, 0xa0,
  729. 0xdd, 0x9e, 0xf4, 0xcd, 0x6e, 0xc9, 0x09,
  730. 0xea, 0x12, 0xb5, 0x50, 0x23, 0x27, 0xe6,
  731. 0x9e, 0x04, 0x50, 0x00, 0x75, 0xe1, 0x52,
  732. 0x10, 0xee, 0x09, 0xea, 0x09, 0x9a, 0xd6,
  733. 0x49, 0x7c, 0x1e, 0xdb, 0xc7, 0x65, 0xa6,
  734. 0x0e, 0xd1, 0xd2, 0x00, 0xb3, 0x41, 0xc9,
  735. 0x3c, 0xbc ) );
  736. bigint_ror_ok ( BIGINT ( 0x8f ),
  737. BIGINT ( 0x47 ) );
  738. bigint_ror_ok ( BIGINT ( 0xaa, 0x1d ),
  739. BIGINT ( 0x55, 0x0e ) );
  740. bigint_ror_ok ( BIGINT ( 0xf0, 0xbd, 0x68 ),
  741. BIGINT ( 0x78, 0x5e, 0xb4 ) );
  742. bigint_ror_ok ( BIGINT ( 0x33, 0xa0, 0x3d, 0x95 ),
  743. BIGINT ( 0x19, 0xd0, 0x1e, 0xca ) );
  744. bigint_ror_ok ( BIGINT ( 0xa1, 0xf4, 0xb9, 0x64, 0x91, 0x99, 0xa1,
  745. 0xf4, 0xae, 0xeb, 0x71, 0x97, 0x1b, 0x71,
  746. 0x09, 0x38, 0x3f, 0x8f, 0xc5, 0x3a, 0xb9,
  747. 0x75, 0x94 ),
  748. BIGINT ( 0x50, 0xfa, 0x5c, 0xb2, 0x48, 0xcc, 0xd0,
  749. 0xfa, 0x57, 0x75, 0xb8, 0xcb, 0x8d, 0xb8,
  750. 0x84, 0x9c, 0x1f, 0xc7, 0xe2, 0x9d, 0x5c,
  751. 0xba, 0xca ) );
  752. bigint_ror_ok ( BIGINT ( 0xc0, 0xb3, 0x78, 0x46, 0x69, 0x6e, 0x35,
  753. 0x94, 0xed, 0x28, 0xdc, 0xfd, 0xf6, 0xdb,
  754. 0x2d, 0x24, 0xcb, 0xa4, 0x6f, 0x0e, 0x58,
  755. 0x89, 0x04, 0xec, 0xc8, 0x0c, 0x2d, 0xb3,
  756. 0x58, 0xa7, 0x22, 0x6d, 0x93, 0xe0, 0xb8,
  757. 0x48, 0x6a, 0x3f, 0x04, 0x7e, 0xbe, 0xb8,
  758. 0xa7, 0x84, 0xf5, 0xc9, 0x2f, 0x60, 0x9e,
  759. 0x7c, 0xbc, 0xaf, 0x28, 0x89, 0x2f, 0xaa,
  760. 0xd1, 0x82, 0x77, 0xa4, 0xdf, 0xf3, 0x4a,
  761. 0xc6, 0xed, 0xa3, 0x07, 0xb4, 0xa9, 0xfd,
  762. 0xef, 0xf8, 0x20, 0xb9, 0xb3, 0xff, 0x35,
  763. 0x27, 0xed, 0x02, 0xea, 0xec, 0x63, 0xc0,
  764. 0x46, 0x97, 0xc0, 0x4c, 0xca, 0x89, 0xca,
  765. 0x14, 0xe8, 0xe0, 0x02, 0x14, 0x44, 0x46,
  766. 0xf3, 0x2f, 0xbc, 0x6a, 0x28, 0xa2, 0xbe,
  767. 0x20, 0xc8, 0xaa, 0x0f, 0xd9, 0x51, 0x8e,
  768. 0x8d, 0x51, 0x29, 0x61, 0xef, 0x48, 0xae,
  769. 0x3e, 0xe5, 0x10, 0xbf, 0xda, 0x9b, 0x92,
  770. 0xb3, 0x77 ),
  771. BIGINT ( 0x60, 0x59, 0xbc, 0x23, 0x34, 0xb7, 0x1a,
  772. 0xca, 0x76, 0x94, 0x6e, 0x7e, 0xfb, 0x6d,
  773. 0x96, 0x92, 0x65, 0xd2, 0x37, 0x87, 0x2c,
  774. 0x44, 0x82, 0x76, 0x64, 0x06, 0x16, 0xd9,
  775. 0xac, 0x53, 0x91, 0x36, 0xc9, 0xf0, 0x5c,
  776. 0x24, 0x35, 0x1f, 0x82, 0x3f, 0x5f, 0x5c,
  777. 0x53, 0xc2, 0x7a, 0xe4, 0x97, 0xb0, 0x4f,
  778. 0x3e, 0x5e, 0x57, 0x94, 0x44, 0x97, 0xd5,
  779. 0x68, 0xc1, 0x3b, 0xd2, 0x6f, 0xf9, 0xa5,
  780. 0x63, 0x76, 0xd1, 0x83, 0xda, 0x54, 0xfe,
  781. 0xf7, 0xfc, 0x10, 0x5c, 0xd9, 0xff, 0x9a,
  782. 0x93, 0xf6, 0x81, 0x75, 0x76, 0x31, 0xe0,
  783. 0x23, 0x4b, 0xe0, 0x26, 0x65, 0x44, 0xe5,
  784. 0x0a, 0x74, 0x70, 0x01, 0x0a, 0x22, 0x23,
  785. 0x79, 0x97, 0xde, 0x35, 0x14, 0x51, 0x5f,
  786. 0x10, 0x64, 0x55, 0x07, 0xec, 0xa8, 0xc7,
  787. 0x46, 0xa8, 0x94, 0xb0, 0xf7, 0xa4, 0x57,
  788. 0x1f, 0x72, 0x88, 0x5f, 0xed, 0x4d, 0xc9,
  789. 0x59, 0xbb ) );
  790. bigint_is_zero_ok ( BIGINT ( 0x9b ),
  791. 0 );
  792. bigint_is_zero_ok ( BIGINT ( 0x5a, 0x9d ),
  793. 0 );
  794. bigint_is_zero_ok ( BIGINT ( 0x5f, 0x80, 0x78 ),
  795. 0 );
  796. bigint_is_zero_ok ( BIGINT ( 0xa0, 0x52, 0x47, 0x2e ),
  797. 0 );
  798. bigint_is_zero_ok ( BIGINT ( 0x18, 0x08, 0x49, 0xdb, 0x7b, 0x5c,
  799. 0xe7, 0x41, 0x07, 0xdf, 0xed, 0xf9,
  800. 0xd3, 0x92, 0x0d, 0x75, 0xa6, 0xb0,
  801. 0x14, 0xfa, 0xdd, 0xfd, 0x82 ),
  802. 0 );
  803. bigint_is_zero_ok ( BIGINT ( 0x04, 0x04, 0xb5, 0xf5, 0x01, 0xae,
  804. 0x2b, 0x91, 0xa7, 0xc1, 0x49, 0x97,
  805. 0x3f, 0x45, 0x53, 0x52, 0xb8, 0x52,
  806. 0xf1, 0x62, 0xa5, 0x21, 0x18, 0xd4,
  807. 0xb0, 0xb4, 0x8a, 0x17, 0x0e, 0xe8,
  808. 0xeb, 0xaa, 0x28, 0xae, 0x3d, 0x8e,
  809. 0xe3, 0x6c, 0xd0, 0x01, 0x0c, 0x54,
  810. 0xca, 0x23, 0xbb, 0x06, 0xcd, 0x7a,
  811. 0x61, 0x89, 0x38, 0x34, 0x6e, 0xc7,
  812. 0xc2, 0xee, 0xb1, 0x80, 0x61, 0x0e,
  813. 0xc6, 0x8d, 0x65, 0xa0, 0xeb, 0x34,
  814. 0xe9, 0x63, 0x09, 0x4c, 0x20, 0xac,
  815. 0x42, 0xe3, 0x35, 0xa2, 0x3e, 0x3b,
  816. 0x2e, 0x18, 0x70, 0x45, 0x7c, 0xab,
  817. 0x42, 0xcc, 0xe0, 0x9e, 0x7c, 0x42,
  818. 0xd1, 0xda, 0x6c, 0x51, 0x10, 0x1e,
  819. 0x0e, 0x3f, 0xe5, 0xd6, 0xd8, 0x56,
  820. 0x08, 0xb2, 0x3b, 0x15, 0xc4, 0x7c,
  821. 0x0c, 0x7e, 0xaf, 0x7b, 0x9d, 0xd6,
  822. 0x2b, 0xc0, 0x2f, 0xa2, 0xa3, 0xa3,
  823. 0x77, 0x58, 0x1b, 0xe9, 0xa8, 0x9a,
  824. 0x23, 0x7f ),
  825. 0 );
  826. bigint_is_zero_ok ( BIGINT ( 0x00 ),
  827. 1 );
  828. bigint_is_zero_ok ( BIGINT ( 0x00, 0x00 ),
  829. 1 );
  830. bigint_is_zero_ok ( BIGINT ( 0x00, 0x00, 0x00 ),
  831. 1 );
  832. bigint_is_zero_ok ( BIGINT ( 0x00, 0x00, 0x00, 0x00 ),
  833. 1 );
  834. bigint_is_zero_ok ( BIGINT ( 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  835. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  836. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  837. 0x00, 0x00, 0x00, 0x00, 0x00 ),
  838. 1 );
  839. bigint_is_zero_ok ( BIGINT ( 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  840. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  841. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  842. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  843. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  844. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  845. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  846. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  847. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  848. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  849. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  850. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  851. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  852. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  853. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  854. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  855. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  856. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  857. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  858. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  859. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  860. 0x00, 0x00 ),
  861. 1 );
  862. bigint_is_zero_ok ( BIGINT ( 0xff ),
  863. 0 );
  864. bigint_is_zero_ok ( BIGINT ( 0xff, 0xff ),
  865. 0 );
  866. bigint_is_zero_ok ( BIGINT ( 0xff, 0xff, 0xff ),
  867. 0 );
  868. bigint_is_zero_ok ( BIGINT ( 0xff, 0xff, 0xff, 0xff ),
  869. 0 );
  870. bigint_is_zero_ok ( BIGINT ( 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  871. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  872. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  873. 0xff, 0xff, 0xff, 0xff, 0xff ),
  874. 0 );
  875. bigint_is_zero_ok ( BIGINT ( 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  876. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  877. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  878. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  879. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  880. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  881. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  882. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  883. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  884. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  885. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  886. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  887. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  888. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  889. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  890. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  891. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  892. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  893. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  894. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  895. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  896. 0xff, 0xff ),
  897. 0 );
  898. bigint_is_geq_ok ( BIGINT ( 0xa2 ),
  899. BIGINT ( 0x58 ),
  900. 1 );
  901. bigint_is_geq_ok ( BIGINT ( 0x58 ),
  902. BIGINT ( 0xa2 ),
  903. 0 );
  904. bigint_is_geq_ok ( BIGINT ( 0xa2 ),
  905. BIGINT ( 0xa2 ),
  906. 1 );
  907. bigint_is_geq_ok ( BIGINT ( 0x61, 0x29 ),
  908. BIGINT ( 0x87, 0xac ),
  909. 0 );
  910. bigint_is_geq_ok ( BIGINT ( 0x87, 0xac ),
  911. BIGINT ( 0x61, 0x29 ),
  912. 1 );
  913. bigint_is_geq_ok ( BIGINT ( 0x61, 0x29 ),
  914. BIGINT ( 0x61, 0x29 ),
  915. 1 );
  916. bigint_is_geq_ok ( BIGINT ( 0xe6, 0x63, 0x14 ),
  917. BIGINT ( 0xb7, 0x2b, 0x76 ),
  918. 1 );
  919. bigint_is_geq_ok ( BIGINT ( 0xb7, 0x2b, 0x76 ),
  920. BIGINT ( 0xe6, 0x63, 0x14 ),
  921. 0 );
  922. bigint_is_geq_ok ( BIGINT ( 0xe6, 0x63, 0x14 ),
  923. BIGINT ( 0xe6, 0x63, 0x14 ),
  924. 1 );
  925. bigint_is_geq_ok ( BIGINT ( 0xe7, 0x4f, 0xd4, 0x80 ),
  926. BIGINT ( 0xb5, 0xf9, 0x9b, 0x90 ),
  927. 1 );
  928. bigint_is_geq_ok ( BIGINT ( 0xb5, 0xf9, 0x9b, 0x90 ),
  929. BIGINT ( 0xe7, 0x4f, 0xd4, 0x80 ),
  930. 0 );
  931. bigint_is_geq_ok ( BIGINT ( 0xe7, 0x4f, 0xd4, 0x80 ),
  932. BIGINT ( 0xe7, 0x4f, 0xd4, 0x80 ),
  933. 1 );
  934. bigint_is_geq_ok ( BIGINT ( 0xe6, 0x2c, 0x7c, 0x24, 0x78, 0x8f, 0x12,
  935. 0x20, 0xde, 0xd3, 0x6b, 0xc9, 0x97, 0x2d,
  936. 0x66, 0x74, 0xe5, 0xb6, 0xf7, 0x8f, 0x2b,
  937. 0x60, 0x98 ),
  938. BIGINT ( 0x77, 0xbc, 0x3b, 0x1b, 0x57, 0x43, 0x3b,
  939. 0x8c, 0x82, 0xda, 0xb5, 0xc7, 0x18, 0x09,
  940. 0xb3, 0x59, 0x0e, 0x53, 0x2a, 0xb9, 0xd8,
  941. 0xa2, 0xb4 ),
  942. 1 );
  943. bigint_is_geq_ok ( BIGINT ( 0x77, 0xbc, 0x3b, 0x1b, 0x57, 0x43, 0x3b,
  944. 0x8c, 0x82, 0xda, 0xb5, 0xc7, 0x18, 0x09,
  945. 0xb3, 0x59, 0x0e, 0x53, 0x2a, 0xb9, 0xd8,
  946. 0xa2, 0xb4 ),
  947. BIGINT ( 0xe6, 0x2c, 0x7c, 0x24, 0x78, 0x8f, 0x12,
  948. 0x20, 0xde, 0xd3, 0x6b, 0xc9, 0x97, 0x2d,
  949. 0x66, 0x74, 0xe5, 0xb6, 0xf7, 0x8f, 0x2b,
  950. 0x60, 0x98 ),
  951. 0 );
  952. bigint_is_geq_ok ( BIGINT ( 0xe6, 0x2c, 0x7c, 0x24, 0x78, 0x8f, 0x12,
  953. 0x20, 0xde, 0xd3, 0x6b, 0xc9, 0x97, 0x2d,
  954. 0x66, 0x74, 0xe5, 0xb6, 0xf7, 0x8f, 0x2b,
  955. 0x60, 0x98 ),
  956. BIGINT ( 0xe6, 0x2c, 0x7c, 0x24, 0x78, 0x8f, 0x12,
  957. 0x20, 0xde, 0xd3, 0x6b, 0xc9, 0x97, 0x2d,
  958. 0x66, 0x74, 0xe5, 0xb6, 0xf7, 0x8f, 0x2b,
  959. 0x60, 0x98 ),
  960. 1 );
  961. bigint_is_geq_ok ( BIGINT ( 0x2a, 0x98, 0xfd, 0x87, 0x5d, 0x9f, 0xb4,
  962. 0x8b, 0x5c, 0xcd, 0x5f, 0xcd, 0x53, 0xb3,
  963. 0xd1, 0x81, 0x6a, 0x9c, 0x93, 0x66, 0x40,
  964. 0xa7, 0x64, 0xe0, 0x8c, 0xec, 0x96, 0x63,
  965. 0x4d, 0x29, 0xfa, 0xb1, 0x5d, 0x93, 0x2f,
  966. 0xf9, 0x36, 0xea, 0x3b, 0xc1, 0xaf, 0x85,
  967. 0xcb, 0xde, 0x2d, 0xc8, 0x48, 0x33, 0xce,
  968. 0x7b, 0xa4, 0xa4, 0xda, 0x0f, 0xaa, 0x1b,
  969. 0xcb, 0xed, 0xbe, 0x3a, 0xa5, 0xbb, 0x73,
  970. 0x28, 0x04, 0xc6, 0x2a, 0xfb, 0x3a, 0xc3,
  971. 0xae, 0x42, 0x1f, 0x53, 0x6c, 0xb2, 0x76,
  972. 0xb7, 0xe2, 0x88, 0xcb, 0x88, 0xcf, 0xf0,
  973. 0x52, 0x81, 0xd3, 0xb2, 0x1f, 0x56, 0xe1,
  974. 0xe1, 0x47, 0x93, 0x6f, 0x2b, 0x49, 0xaa,
  975. 0x50, 0x99, 0x7a, 0xc4, 0x56, 0xb7, 0x13,
  976. 0x80, 0xf4, 0x73, 0x88, 0xc7, 0x39, 0x83,
  977. 0x67, 0xc7, 0xcc, 0xb2, 0x28, 0x7a, 0xd3,
  978. 0xdc, 0x48, 0xea, 0x62, 0x0d, 0xf5, 0x5a,
  979. 0x27, 0x96 ),
  980. BIGINT ( 0xd4, 0x6b, 0x0a, 0x2e, 0x9f, 0xde, 0x4b,
  981. 0x64, 0xfa, 0x6b, 0x37, 0x73, 0x66, 0x06,
  982. 0xee, 0x04, 0xef, 0xe6, 0x3c, 0x7d, 0x57,
  983. 0x22, 0x7f, 0x1f, 0x62, 0x1c, 0x7e, 0x20,
  984. 0xda, 0x97, 0xd0, 0x27, 0x23, 0xf6, 0x77,
  985. 0x5b, 0x49, 0x97, 0xe1, 0x65, 0x91, 0x13,
  986. 0x93, 0xd6, 0x12, 0xc3, 0x66, 0x91, 0x76,
  987. 0xe8, 0x47, 0x4c, 0x6a, 0x1b, 0xa2, 0x02,
  988. 0xf8, 0x94, 0xaa, 0xe0, 0x1b, 0x0b, 0x17,
  989. 0x86, 0x5e, 0xf5, 0x17, 0x23, 0xf5, 0x17,
  990. 0x91, 0x6b, 0xd7, 0x2f, 0x5a, 0xfe, 0x8a,
  991. 0x63, 0x28, 0x31, 0x1e, 0x09, 0x60, 0x29,
  992. 0x5d, 0x55, 0xd8, 0x79, 0xeb, 0x78, 0x36,
  993. 0x44, 0x69, 0xa4, 0x76, 0xa5, 0x35, 0x30,
  994. 0xca, 0xc9, 0xf9, 0x62, 0xd7, 0x82, 0x13,
  995. 0x56, 0xd0, 0x58, 0xfe, 0x16, 0x4b, 0xfb,
  996. 0xa8, 0x4c, 0xb3, 0xd7, 0xcf, 0x5f, 0x93,
  997. 0x9d, 0xc4, 0x11, 0xb4, 0xdd, 0xf8, 0x8f,
  998. 0xe1, 0x11 ),
  999. 0 );
  1000. bigint_is_geq_ok ( BIGINT ( 0xd4, 0x6b, 0x0a, 0x2e, 0x9f, 0xde, 0x4b,
  1001. 0x64, 0xfa, 0x6b, 0x37, 0x73, 0x66, 0x06,
  1002. 0xee, 0x04, 0xef, 0xe6, 0x3c, 0x7d, 0x57,
  1003. 0x22, 0x7f, 0x1f, 0x62, 0x1c, 0x7e, 0x20,
  1004. 0xda, 0x97, 0xd0, 0x27, 0x23, 0xf6, 0x77,
  1005. 0x5b, 0x49, 0x97, 0xe1, 0x65, 0x91, 0x13,
  1006. 0x93, 0xd6, 0x12, 0xc3, 0x66, 0x91, 0x76,
  1007. 0xe8, 0x47, 0x4c, 0x6a, 0x1b, 0xa2, 0x02,
  1008. 0xf8, 0x94, 0xaa, 0xe0, 0x1b, 0x0b, 0x17,
  1009. 0x86, 0x5e, 0xf5, 0x17, 0x23, 0xf5, 0x17,
  1010. 0x91, 0x6b, 0xd7, 0x2f, 0x5a, 0xfe, 0x8a,
  1011. 0x63, 0x28, 0x31, 0x1e, 0x09, 0x60, 0x29,
  1012. 0x5d, 0x55, 0xd8, 0x79, 0xeb, 0x78, 0x36,
  1013. 0x44, 0x69, 0xa4, 0x76, 0xa5, 0x35, 0x30,
  1014. 0xca, 0xc9, 0xf9, 0x62, 0xd7, 0x82, 0x13,
  1015. 0x56, 0xd0, 0x58, 0xfe, 0x16, 0x4b, 0xfb,
  1016. 0xa8, 0x4c, 0xb3, 0xd7, 0xcf, 0x5f, 0x93,
  1017. 0x9d, 0xc4, 0x11, 0xb4, 0xdd, 0xf8, 0x8f,
  1018. 0xe1, 0x11 ),
  1019. BIGINT ( 0x2a, 0x98, 0xfd, 0x87, 0x5d, 0x9f, 0xb4,
  1020. 0x8b, 0x5c, 0xcd, 0x5f, 0xcd, 0x53, 0xb3,
  1021. 0xd1, 0x81, 0x6a, 0x9c, 0x93, 0x66, 0x40,
  1022. 0xa7, 0x64, 0xe0, 0x8c, 0xec, 0x96, 0x63,
  1023. 0x4d, 0x29, 0xfa, 0xb1, 0x5d, 0x93, 0x2f,
  1024. 0xf9, 0x36, 0xea, 0x3b, 0xc1, 0xaf, 0x85,
  1025. 0xcb, 0xde, 0x2d, 0xc8, 0x48, 0x33, 0xce,
  1026. 0x7b, 0xa4, 0xa4, 0xda, 0x0f, 0xaa, 0x1b,
  1027. 0xcb, 0xed, 0xbe, 0x3a, 0xa5, 0xbb, 0x73,
  1028. 0x28, 0x04, 0xc6, 0x2a, 0xfb, 0x3a, 0xc3,
  1029. 0xae, 0x42, 0x1f, 0x53, 0x6c, 0xb2, 0x76,
  1030. 0xb7, 0xe2, 0x88, 0xcb, 0x88, 0xcf, 0xf0,
  1031. 0x52, 0x81, 0xd3, 0xb2, 0x1f, 0x56, 0xe1,
  1032. 0xe1, 0x47, 0x93, 0x6f, 0x2b, 0x49, 0xaa,
  1033. 0x50, 0x99, 0x7a, 0xc4, 0x56, 0xb7, 0x13,
  1034. 0x80, 0xf4, 0x73, 0x88, 0xc7, 0x39, 0x83,
  1035. 0x67, 0xc7, 0xcc, 0xb2, 0x28, 0x7a, 0xd3,
  1036. 0xdc, 0x48, 0xea, 0x62, 0x0d, 0xf5, 0x5a,
  1037. 0x27, 0x96 ),
  1038. 1 );
  1039. bigint_is_geq_ok ( BIGINT ( 0x2a, 0x98, 0xfd, 0x87, 0x5d, 0x9f, 0xb4,
  1040. 0x8b, 0x5c, 0xcd, 0x5f, 0xcd, 0x53, 0xb3,
  1041. 0xd1, 0x81, 0x6a, 0x9c, 0x93, 0x66, 0x40,
  1042. 0xa7, 0x64, 0xe0, 0x8c, 0xec, 0x96, 0x63,
  1043. 0x4d, 0x29, 0xfa, 0xb1, 0x5d, 0x93, 0x2f,
  1044. 0xf9, 0x36, 0xea, 0x3b, 0xc1, 0xaf, 0x85,
  1045. 0xcb, 0xde, 0x2d, 0xc8, 0x48, 0x33, 0xce,
  1046. 0x7b, 0xa4, 0xa4, 0xda, 0x0f, 0xaa, 0x1b,
  1047. 0xcb, 0xed, 0xbe, 0x3a, 0xa5, 0xbb, 0x73,
  1048. 0x28, 0x04, 0xc6, 0x2a, 0xfb, 0x3a, 0xc3,
  1049. 0xae, 0x42, 0x1f, 0x53, 0x6c, 0xb2, 0x76,
  1050. 0xb7, 0xe2, 0x88, 0xcb, 0x88, 0xcf, 0xf0,
  1051. 0x52, 0x81, 0xd3, 0xb2, 0x1f, 0x56, 0xe1,
  1052. 0xe1, 0x47, 0x93, 0x6f, 0x2b, 0x49, 0xaa,
  1053. 0x50, 0x99, 0x7a, 0xc4, 0x56, 0xb7, 0x13,
  1054. 0x80, 0xf4, 0x73, 0x88, 0xc7, 0x39, 0x83,
  1055. 0x67, 0xc7, 0xcc, 0xb2, 0x28, 0x7a, 0xd3,
  1056. 0xdc, 0x48, 0xea, 0x62, 0x0d, 0xf5, 0x5a,
  1057. 0x27, 0x96 ),
  1058. BIGINT ( 0x2a, 0x98, 0xfd, 0x87, 0x5d, 0x9f, 0xb4,
  1059. 0x8b, 0x5c, 0xcd, 0x5f, 0xcd, 0x53, 0xb3,
  1060. 0xd1, 0x81, 0x6a, 0x9c, 0x93, 0x66, 0x40,
  1061. 0xa7, 0x64, 0xe0, 0x8c, 0xec, 0x96, 0x63,
  1062. 0x4d, 0x29, 0xfa, 0xb1, 0x5d, 0x93, 0x2f,
  1063. 0xf9, 0x36, 0xea, 0x3b, 0xc1, 0xaf, 0x85,
  1064. 0xcb, 0xde, 0x2d, 0xc8, 0x48, 0x33, 0xce,
  1065. 0x7b, 0xa4, 0xa4, 0xda, 0x0f, 0xaa, 0x1b,
  1066. 0xcb, 0xed, 0xbe, 0x3a, 0xa5, 0xbb, 0x73,
  1067. 0x28, 0x04, 0xc6, 0x2a, 0xfb, 0x3a, 0xc3,
  1068. 0xae, 0x42, 0x1f, 0x53, 0x6c, 0xb2, 0x76,
  1069. 0xb7, 0xe2, 0x88, 0xcb, 0x88, 0xcf, 0xf0,
  1070. 0x52, 0x81, 0xd3, 0xb2, 0x1f, 0x56, 0xe1,
  1071. 0xe1, 0x47, 0x93, 0x6f, 0x2b, 0x49, 0xaa,
  1072. 0x50, 0x99, 0x7a, 0xc4, 0x56, 0xb7, 0x13,
  1073. 0x80, 0xf4, 0x73, 0x88, 0xc7, 0x39, 0x83,
  1074. 0x67, 0xc7, 0xcc, 0xb2, 0x28, 0x7a, 0xd3,
  1075. 0xdc, 0x48, 0xea, 0x62, 0x0d, 0xf5, 0x5a,
  1076. 0x27, 0x96 ),
  1077. 1 );
  1078. bigint_bit_is_set_ok ( BIGINT ( 0x37 ),
  1079. 0, 1 );
  1080. bigint_bit_is_set_ok ( BIGINT ( 0xe6, 0xcb ),
  1081. 0, 1 );
  1082. bigint_bit_is_set_ok ( BIGINT ( 0xd9, 0x0c, 0x5b ),
  1083. 0, 1 );
  1084. bigint_bit_is_set_ok ( BIGINT ( 0x8b, 0x56, 0x89, 0xaf ),
  1085. 0, 1 );
  1086. bigint_bit_is_set_ok ( BIGINT ( 0x25, 0xfc, 0xaf, 0xeb, 0x81, 0xc3,
  1087. 0xb8, 0x2f, 0xbb, 0xe3, 0x07, 0xb2,
  1088. 0xe2, 0x2a, 0xe2, 0x2d, 0xb4, 0x4d,
  1089. 0x6d, 0xec, 0x51, 0xa0, 0x2f ),
  1090. 0, 1 );
  1091. bigint_bit_is_set_ok ( BIGINT ( 0x25, 0xfc, 0xaf, 0xeb, 0x81, 0xc3,
  1092. 0xb8, 0x2f, 0xbb, 0xe3, 0x07, 0xb2,
  1093. 0xe2, 0x2a, 0xe2, 0x2d, 0xb4, 0x4d,
  1094. 0x6d, 0xec, 0x51, 0xa0, 0x2f ),
  1095. 45, 0 );
  1096. bigint_bit_is_set_ok ( BIGINT ( 0x88, 0x04, 0xec, 0xe6, 0xfb, 0x31,
  1097. 0x87, 0x43, 0xb2, 0x04, 0x9e, 0x09,
  1098. 0xba, 0x3e, 0x6d, 0x64, 0x1a, 0x85,
  1099. 0xb6, 0x46, 0x7d, 0x71, 0x3c, 0x06,
  1100. 0xd6, 0x40, 0x52, 0x39, 0x95, 0xa1,
  1101. 0x06, 0xff, 0x6a, 0x5c, 0xa3, 0x6d,
  1102. 0x4a, 0xc9, 0x77, 0x87, 0x75, 0x25,
  1103. 0x57, 0x65, 0x72, 0x73, 0x64, 0x7e,
  1104. 0xe9, 0x16, 0x17, 0xf3, 0x65, 0x3f,
  1105. 0xd5, 0xcc, 0xd7, 0xa2, 0xee, 0xe7,
  1106. 0x8d, 0x48, 0xd5, 0x7e, 0xdd, 0x59,
  1107. 0x4b, 0xf0, 0x96, 0x8b, 0x21, 0x65,
  1108. 0x04, 0x66, 0xc5, 0xff, 0x3e, 0x60,
  1109. 0xba, 0x28, 0x38, 0x7d, 0x9c, 0x09,
  1110. 0xd1, 0x8e, 0xac, 0x73, 0x8e, 0xf2,
  1111. 0x1e, 0xdf, 0x83, 0x6e, 0x54, 0xd5,
  1112. 0x34, 0xc1, 0xc6, 0xf9, 0x62, 0x2a,
  1113. 0x7d, 0xec, 0x47, 0xf2, 0xfc, 0xa2,
  1114. 0x10, 0x0a, 0x67, 0x1b, 0xc6, 0x11,
  1115. 0x9d, 0x68, 0x25, 0x8b, 0xb5, 0x9b,
  1116. 0x83, 0xf8, 0xa2, 0x11, 0xf5, 0xd4,
  1117. 0xcb, 0xe0 ),
  1118. 0, 0 );
  1119. bigint_bit_is_set_ok ( BIGINT ( 0x88, 0x04, 0xec, 0xe6, 0xfb, 0x31,
  1120. 0x87, 0x43, 0xb2, 0x04, 0x9e, 0x09,
  1121. 0xba, 0x3e, 0x6d, 0x64, 0x1a, 0x85,
  1122. 0xb6, 0x46, 0x7d, 0x71, 0x3c, 0x06,
  1123. 0xd6, 0x40, 0x52, 0x39, 0x95, 0xa1,
  1124. 0x06, 0xff, 0x6a, 0x5c, 0xa3, 0x6d,
  1125. 0x4a, 0xc9, 0x77, 0x87, 0x75, 0x25,
  1126. 0x57, 0x65, 0x72, 0x73, 0x64, 0x7e,
  1127. 0xe9, 0x16, 0x17, 0xf3, 0x65, 0x3f,
  1128. 0xd5, 0xcc, 0xd7, 0xa2, 0xee, 0xe7,
  1129. 0x8d, 0x48, 0xd5, 0x7e, 0xdd, 0x59,
  1130. 0x4b, 0xf0, 0x96, 0x8b, 0x21, 0x65,
  1131. 0x04, 0x66, 0xc5, 0xff, 0x3e, 0x60,
  1132. 0xba, 0x28, 0x38, 0x7d, 0x9c, 0x09,
  1133. 0xd1, 0x8e, 0xac, 0x73, 0x8e, 0xf2,
  1134. 0x1e, 0xdf, 0x83, 0x6e, 0x54, 0xd5,
  1135. 0x34, 0xc1, 0xc6, 0xf9, 0x62, 0x2a,
  1136. 0x7d, 0xec, 0x47, 0xf2, 0xfc, 0xa2,
  1137. 0x10, 0x0a, 0x67, 0x1b, 0xc6, 0x11,
  1138. 0x9d, 0x68, 0x25, 0x8b, 0xb5, 0x9b,
  1139. 0x83, 0xf8, 0xa2, 0x11, 0xf5, 0xd4,
  1140. 0xcb, 0xe0 ),
  1141. 45, 1 );
  1142. bigint_bit_is_set_ok ( BIGINT ( 0x88, 0x04, 0xec, 0xe6, 0xfb, 0x31,
  1143. 0x87, 0x43, 0xb2, 0x04, 0x9e, 0x09,
  1144. 0xba, 0x3e, 0x6d, 0x64, 0x1a, 0x85,
  1145. 0xb6, 0x46, 0x7d, 0x71, 0x3c, 0x06,
  1146. 0xd6, 0x40, 0x52, 0x39, 0x95, 0xa1,
  1147. 0x06, 0xff, 0x6a, 0x5c, 0xa3, 0x6d,
  1148. 0x4a, 0xc9, 0x77, 0x87, 0x75, 0x25,
  1149. 0x57, 0x65, 0x72, 0x73, 0x64, 0x7e,
  1150. 0xe9, 0x16, 0x17, 0xf3, 0x65, 0x3f,
  1151. 0xd5, 0xcc, 0xd7, 0xa2, 0xee, 0xe7,
  1152. 0x8d, 0x48, 0xd5, 0x7e, 0xdd, 0x59,
  1153. 0x4b, 0xf0, 0x96, 0x8b, 0x21, 0x65,
  1154. 0x04, 0x66, 0xc5, 0xff, 0x3e, 0x60,
  1155. 0xba, 0x28, 0x38, 0x7d, 0x9c, 0x09,
  1156. 0xd1, 0x8e, 0xac, 0x73, 0x8e, 0xf2,
  1157. 0x1e, 0xdf, 0x83, 0x6e, 0x54, 0xd5,
  1158. 0x34, 0xc1, 0xc6, 0xf9, 0x62, 0x2a,
  1159. 0x7d, 0xec, 0x47, 0xf2, 0xfc, 0xa2,
  1160. 0x10, 0x0a, 0x67, 0x1b, 0xc6, 0x11,
  1161. 0x9d, 0x68, 0x25, 0x8b, 0xb5, 0x9b,
  1162. 0x83, 0xf8, 0xa2, 0x11, 0xf5, 0xd4,
  1163. 0xcb, 0xe0 ),
  1164. 1013, 0 );
  1165. bigint_max_set_bit_ok ( BIGINT ( 0x3a ),
  1166. 6 );
  1167. bigint_max_set_bit_ok ( BIGINT ( 0x03 ),
  1168. 2 );
  1169. bigint_max_set_bit_ok ( BIGINT ( 0x00 ),
  1170. 0 );
  1171. bigint_max_set_bit_ok ( BIGINT ( 0xff ),
  1172. 8 );
  1173. bigint_max_set_bit_ok ( BIGINT ( 0x20, 0x30 ),
  1174. 14 );
  1175. bigint_max_set_bit_ok ( BIGINT ( 0x00, 0x10 ),
  1176. 5 );
  1177. bigint_max_set_bit_ok ( BIGINT ( 0x00, 0x00 ),
  1178. 0 );
  1179. bigint_max_set_bit_ok ( BIGINT ( 0xff, 0xff ),
  1180. 16 );
  1181. bigint_max_set_bit_ok ( BIGINT ( 0x06, 0xdb, 0x7a ),
  1182. 19 );
  1183. bigint_max_set_bit_ok ( BIGINT ( 0x00, 0x00, 0x00 ),
  1184. 0 );
  1185. bigint_max_set_bit_ok ( BIGINT ( 0x00, 0x00, 0x00 ),
  1186. 0 );
  1187. bigint_max_set_bit_ok ( BIGINT ( 0xff, 0xff, 0xff ),
  1188. 24 );
  1189. bigint_max_set_bit_ok ( BIGINT ( 0xee, 0xcb, 0x7b, 0xfd ),
  1190. 32 );
  1191. bigint_max_set_bit_ok ( BIGINT ( 0x00, 0x00, 0x01, 0xdd ),
  1192. 9 );
  1193. bigint_max_set_bit_ok ( BIGINT ( 0x00, 0x00, 0x00, 0x00 ),
  1194. 0 );
  1195. bigint_max_set_bit_ok ( BIGINT ( 0xff, 0xff, 0xff, 0xff ),
  1196. 32 );
  1197. bigint_max_set_bit_ok ( BIGINT ( 0x32, 0x39, 0x96, 0x52, 0x10, 0x67,
  1198. 0x7e, 0x32, 0xfc, 0x4e, 0x56, 0xc3,
  1199. 0x68, 0x18, 0x76, 0x1a, 0xac, 0x0e,
  1200. 0x93, 0xee, 0x55, 0xc5, 0x6e ),
  1201. 182 );
  1202. bigint_max_set_bit_ok ( BIGINT ( 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1203. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1204. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1205. 0x00, 0x00, 0xc8, 0xe6, 0x59 ),
  1206. 24 );
  1207. bigint_max_set_bit_ok ( BIGINT ( 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1208. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1209. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1210. 0x00, 0x00, 0x00, 0x00, 0x00 ),
  1211. 0 );
  1212. bigint_max_set_bit_ok ( BIGINT ( 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1213. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1214. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1215. 0xff, 0xff, 0xff, 0xff, 0xff ),
  1216. 184 );
  1217. bigint_max_set_bit_ok ( BIGINT ( 0xcd, 0xb3, 0x22, 0x30, 0xdd, 0xa7,
  1218. 0xff, 0x37, 0xbf, 0xe3, 0x38, 0xf7,
  1219. 0xe1, 0x41, 0x73, 0xea, 0x3a, 0xfc,
  1220. 0x78, 0x9e, 0xfb, 0x4f, 0x85, 0xdc,
  1221. 0x1c, 0x40, 0x89, 0x6e, 0xda, 0xf9,
  1222. 0x9d, 0x6d, 0x12, 0x97, 0xb1, 0x80,
  1223. 0x2a, 0xeb, 0x91, 0xce, 0x3b, 0x83,
  1224. 0xb8, 0xa5, 0x3d, 0xce, 0x46, 0x56,
  1225. 0xb7, 0xd1, 0x28, 0xbc, 0x93, 0x4e,
  1226. 0x8c, 0x29, 0x6d, 0x2c, 0xcc, 0x58,
  1227. 0x49, 0x2f, 0x37, 0xa0, 0x08, 0x37,
  1228. 0x86, 0xdd, 0x38, 0x21, 0xa7, 0x57,
  1229. 0x37, 0xe3, 0xc5, 0xcc, 0x50, 0x11,
  1230. 0x1a, 0xe4, 0xea, 0xe7, 0x4d, 0x3c,
  1231. 0x37, 0x65, 0x78, 0xd1, 0xf6, 0xc3,
  1232. 0x94, 0x46, 0xd4, 0x0e, 0xd3, 0x9a,
  1233. 0x21, 0x8b, 0xa6, 0x54, 0xc0, 0xd2,
  1234. 0x88, 0x07, 0x24, 0xbf, 0x7d, 0x31,
  1235. 0xfd, 0x15, 0xa8, 0x92, 0x65, 0xe1,
  1236. 0x8d, 0xed, 0x70, 0x7b, 0x68, 0x0f,
  1237. 0xcc, 0x13, 0xb9, 0xb2, 0xdd, 0x3c,
  1238. 0x6a, 0x52 ),
  1239. 1024 );
  1240. bigint_max_set_bit_ok ( BIGINT ( 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1241. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1242. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1243. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1244. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1245. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1246. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1247. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1248. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1249. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1250. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1251. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1252. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1253. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1254. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1255. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1256. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1257. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1258. 0x00, 0x00, 0x00, 0x00, 0x66, 0xd9,
  1259. 0x91, 0x18, 0x6e, 0xd3, 0xff, 0x9b,
  1260. 0xdf, 0xf1, 0x9c, 0x7b, 0xf0, 0xa0,
  1261. 0xb9, 0xf5 ),
  1262. 127 );
  1263. bigint_max_set_bit_ok ( BIGINT ( 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1264. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1265. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1266. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1267. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1268. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1269. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1270. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1271. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1272. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1273. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1274. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1275. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1276. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1277. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1278. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1279. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1280. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1281. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1282. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1283. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1284. 0x00, 0x00 ),
  1285. 0 );
  1286. bigint_max_set_bit_ok ( BIGINT ( 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1287. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1288. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1289. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1290. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1291. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1292. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1293. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1294. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1295. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1296. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1297. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1298. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1299. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1300. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1301. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1302. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1303. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1304. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1305. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1306. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1307. 0xff, 0xff ),
  1308. 1024 );
  1309. bigint_multiply_ok ( BIGINT ( 0xf0 ),
  1310. BIGINT ( 0xeb ),
  1311. BIGINT ( 0xdc, 0x50 ) );
  1312. bigint_multiply_ok ( BIGINT ( 0xd7, 0x16 ),
  1313. BIGINT ( 0x88, 0xfb ),
  1314. BIGINT ( 0x73, 0x16, 0x92, 0x92 ) );
  1315. bigint_multiply_ok ( BIGINT ( 0xfe, 0xed, 0x1d ),
  1316. BIGINT ( 0x69, 0x9c, 0x03 ),
  1317. BIGINT ( 0x69, 0x2a, 0x9c, 0x5f, 0x73, 0x57 ) );
  1318. bigint_multiply_ok ( BIGINT ( 0x96, 0xe9, 0x6f, 0x81 ),
  1319. BIGINT ( 0x67, 0x3c, 0x5a, 0x16 ),
  1320. BIGINT ( 0x3c, 0xdb, 0x7f, 0xae, 0x12, 0x7e,
  1321. 0xef, 0x16 ) );
  1322. bigint_multiply_ok ( BIGINT ( 0xe8, 0x08, 0x0b, 0xe9, 0x29, 0x36,
  1323. 0xea, 0x51, 0x1d, 0x75, 0x1a, 0xd5,
  1324. 0xba, 0xc6, 0xa0, 0xf3, 0x48, 0x5c,
  1325. 0xdf, 0x42, 0xdf, 0x28, 0x38 ),
  1326. BIGINT ( 0x22, 0x07, 0x41, 0x54, 0x4e, 0xf9,
  1327. 0x90, 0xa8, 0xaf, 0xba, 0xf6, 0xb0,
  1328. 0x35, 0x7e, 0x98, 0xef, 0x2c, 0x31,
  1329. 0xc9, 0xa7, 0x25, 0x74, 0x8d ),
  1330. BIGINT ( 0x1e, 0xd7, 0xa5, 0x03, 0xc0, 0x18,
  1331. 0x2e, 0x29, 0xb1, 0x3e, 0x96, 0x71,
  1332. 0x90, 0xa5, 0x6d, 0x43, 0x58, 0xf7,
  1333. 0x22, 0x80, 0x0b, 0x21, 0xc6, 0x70,
  1334. 0x90, 0x1c, 0xa8, 0x85, 0x87, 0xaf,
  1335. 0xd7, 0xdd, 0x27, 0x69, 0xaf, 0x20,
  1336. 0xa0, 0x2d, 0x43, 0x5d, 0xda, 0xba,
  1337. 0x4b, 0x3a, 0x86, 0xd8 ) );
  1338. bigint_multiply_ok ( BIGINT ( 0xa2, 0x0f, 0xc6, 0x08, 0x0a, 0x01,
  1339. 0x19, 0x42, 0x0e, 0xaa, 0x5c, 0xae,
  1340. 0x4f, 0x4e, 0xb0, 0xad, 0xb2, 0xe8,
  1341. 0xee, 0xd5, 0x65, 0xec, 0x5a, 0xda,
  1342. 0xc0, 0xba, 0x78, 0xa8, 0x0f, 0x15,
  1343. 0x39, 0xd7, 0x7a, 0x10, 0xc2, 0xa7,
  1344. 0xec, 0x44, 0xac, 0xad, 0x39, 0x04,
  1345. 0x2e, 0x66, 0x54, 0x70, 0x57, 0xee,
  1346. 0xf6, 0x97, 0x19, 0x71, 0x16, 0xf9,
  1347. 0xbb, 0x2e, 0x84, 0x09, 0x6e, 0x9a,
  1348. 0x3b, 0x16, 0xb2, 0x65, 0x74, 0x50,
  1349. 0x19, 0xd1, 0xe9, 0x95, 0xa0, 0x7b,
  1350. 0x33, 0xb5, 0xac, 0x7c, 0x9e, 0xd4,
  1351. 0x68, 0x0d, 0xc9, 0xe4, 0x03, 0x86,
  1352. 0x1a, 0xa3, 0x42, 0x33, 0x28, 0x14,
  1353. 0x12, 0x7d, 0x5a, 0xd9, 0x30, 0x18,
  1354. 0x0a, 0xf4, 0x0c, 0x96, 0x58, 0xc9,
  1355. 0xb5, 0x37, 0xdb, 0x49, 0xdc, 0x01,
  1356. 0x4a, 0xcb, 0x6d, 0x87, 0x52, 0xf6,
  1357. 0xae, 0xa7, 0x71, 0x31, 0x9a, 0x1a,
  1358. 0xe2, 0x1c, 0x87, 0x51, 0xc9, 0xeb,
  1359. 0x70, 0x71 ),
  1360. BIGINT ( 0x7c, 0xdd, 0x2f, 0x5d, 0x27, 0xfe,
  1361. 0xca, 0x70, 0x96, 0xc3, 0xb1, 0x1f,
  1362. 0xac, 0xa9, 0x3a, 0xdc, 0xcd, 0xbc,
  1363. 0x58, 0xb4, 0xde, 0xe7, 0xe5, 0x34,
  1364. 0x1a, 0xc0, 0xb9, 0x46, 0xf7, 0x52,
  1365. 0x76, 0x23, 0xe8, 0xe9, 0x92, 0xa1,
  1366. 0x86, 0x3c, 0x6f, 0xf1, 0x22, 0xf4,
  1367. 0x72, 0xb1, 0xde, 0xd3, 0x8f, 0x11,
  1368. 0x9e, 0x52, 0xe5, 0x81, 0x54, 0xe9,
  1369. 0xa7, 0x72, 0x3f, 0x3e, 0xa0, 0x80,
  1370. 0xbb, 0xae, 0x0e, 0x30, 0x6a, 0x11,
  1371. 0x91, 0x11, 0x3b, 0x3f, 0x44, 0x1f,
  1372. 0x8d, 0x4d, 0xea, 0xdd, 0x09, 0x95,
  1373. 0x9d, 0x02, 0xa6, 0x6d, 0x3b, 0x08,
  1374. 0x40, 0x8d, 0xb4, 0x4b, 0x05, 0x74,
  1375. 0x8c, 0x1f, 0xaa, 0x61, 0x6f, 0x0e,
  1376. 0xcc, 0xcf, 0xe0, 0x81, 0x03, 0xe4,
  1377. 0x9b, 0x11, 0xd9, 0xab, 0xf3, 0x24,
  1378. 0xe2, 0x3b, 0xe0, 0x05, 0x60, 0x65,
  1379. 0x16, 0xc6, 0x2e, 0x83, 0xa0, 0x98,
  1380. 0x8e, 0x11, 0x05, 0x00, 0xe4, 0x3f,
  1381. 0x7e, 0x65 ),
  1382. BIGINT ( 0x4f, 0x0b, 0xa9, 0x85, 0xb8, 0x31,
  1383. 0x48, 0xea, 0x11, 0x44, 0xaf, 0x2d,
  1384. 0xed, 0x1a, 0x76, 0x45, 0xac, 0x87,
  1385. 0x0c, 0xf3, 0xd7, 0xc4, 0x8e, 0x5c,
  1386. 0xd7, 0xdf, 0x28, 0x74, 0xa6, 0x40,
  1387. 0xe4, 0x6b, 0x5b, 0x19, 0x36, 0x37,
  1388. 0x9c, 0xcd, 0x43, 0x76, 0x15, 0x00,
  1389. 0x5d, 0x23, 0xa2, 0x8a, 0x53, 0x25,
  1390. 0xbf, 0x18, 0xda, 0xe6, 0x09, 0xdf,
  1391. 0xaa, 0xeb, 0x9a, 0x82, 0x01, 0x14,
  1392. 0x2b, 0x20, 0x2b, 0xb6, 0x22, 0x62,
  1393. 0x6b, 0xcc, 0xd4, 0xc9, 0x02, 0x67,
  1394. 0x95, 0x43, 0x75, 0x4e, 0x97, 0x4e,
  1395. 0xec, 0x04, 0xde, 0x29, 0x0a, 0xef,
  1396. 0xf7, 0xc1, 0x72, 0x8c, 0x64, 0x38,
  1397. 0x16, 0x47, 0x9f, 0x16, 0x0c, 0xa5,
  1398. 0x79, 0x6b, 0xea, 0x2e, 0x4c, 0x3d,
  1399. 0x0c, 0xe6, 0x57, 0x51, 0x65, 0xa5,
  1400. 0x3b, 0xca, 0xae, 0x54, 0x0c, 0x67,
  1401. 0xf8, 0x23, 0x00, 0xc9, 0x8d, 0xe6,
  1402. 0x16, 0x91, 0x19, 0xb3, 0x5b, 0x68,
  1403. 0x7b, 0xf2, 0xe2, 0x5d, 0x69, 0x48,
  1404. 0x3f, 0x2b, 0xa0, 0x4f, 0x7c, 0x3c,
  1405. 0x26, 0xf9, 0xd9, 0xfd, 0x3d, 0x5d,
  1406. 0xd6, 0x05, 0x00, 0xd8, 0xdf, 0x5a,
  1407. 0x56, 0x8f, 0x16, 0x68, 0x4f, 0x15,
  1408. 0x19, 0x9d, 0xd7, 0x11, 0x51, 0x7d,
  1409. 0x73, 0x5c, 0xd4, 0xd5, 0xb4, 0xc7,
  1410. 0x42, 0xe3, 0xee, 0xf1, 0x67, 0xd6,
  1411. 0x69, 0x72, 0x04, 0x4b, 0x88, 0x3d,
  1412. 0x05, 0xd8, 0x1e, 0x50, 0xcb, 0xce,
  1413. 0x39, 0x19, 0x42, 0xb6, 0xa7, 0xf3,
  1414. 0xba, 0x78, 0x90, 0xd2, 0x09, 0x05,
  1415. 0x87, 0xf8, 0xc0, 0x9c, 0x47, 0xff,
  1416. 0xbf, 0xaa, 0x21, 0x8d, 0x81, 0x86,
  1417. 0xcd, 0x58, 0xdf, 0x30, 0xf1, 0xd1,
  1418. 0x60, 0x53, 0x85, 0x40, 0xbf, 0x14,
  1419. 0x3e, 0xdc, 0x9e, 0x9e, 0xc4, 0xc7,
  1420. 0x48, 0xa0, 0x83, 0xe0, 0x99, 0x8b,
  1421. 0x43, 0xf8, 0x52, 0x8a, 0x15, 0x88,
  1422. 0x89, 0x83, 0x7d, 0x71, 0xbb, 0x62,
  1423. 0x12, 0x7a, 0x23, 0x85, 0x3a, 0xbb,
  1424. 0xdb, 0x09, 0xfa, 0x95 ) );
  1425. bigint_multiply_ok ( BIGINT ( 0xff ),
  1426. BIGINT ( 0xff ),
  1427. BIGINT ( 0xfe, 0x01 ) );
  1428. bigint_multiply_ok ( BIGINT ( 0xff, 0xff ),
  1429. BIGINT ( 0xff, 0xff ),
  1430. BIGINT ( 0xff, 0xfe, 0x00, 0x01 ) );
  1431. bigint_multiply_ok ( BIGINT ( 0xff, 0xff, 0xff ),
  1432. BIGINT ( 0xff, 0xff, 0xff ),
  1433. BIGINT ( 0xff, 0xff, 0xfe, 0x00, 0x00, 0x01 ) );
  1434. bigint_multiply_ok ( BIGINT ( 0xff, 0xff, 0xff, 0xff ),
  1435. BIGINT ( 0xff, 0xff, 0xff, 0xff ),
  1436. BIGINT ( 0xff, 0xff, 0xff, 0xfe, 0x00, 0x00,
  1437. 0x00, 0x01 ) );
  1438. bigint_multiply_ok ( BIGINT ( 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1439. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1440. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1441. 0xff, 0xff, 0xff, 0xff, 0xff ),
  1442. BIGINT ( 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1443. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1444. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1445. 0xff, 0xff, 0xff, 0xff, 0xff ),
  1446. BIGINT ( 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1447. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1448. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1449. 0xff, 0xff, 0xff, 0xff, 0xfe, 0x00,
  1450. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1451. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1452. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1453. 0x00, 0x00, 0x00, 0x01 ) );
  1454. bigint_multiply_ok ( BIGINT ( 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1455. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1456. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1457. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1458. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1459. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1460. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1461. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1462. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1463. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1464. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1465. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1466. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1467. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1468. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1469. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1470. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1471. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1472. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1473. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1474. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1475. 0xff, 0xff ),
  1476. BIGINT ( 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1477. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1478. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1479. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1480. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1481. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1482. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1483. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1484. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1485. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1486. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1487. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1488. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1489. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1490. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1491. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1492. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1493. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1494. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1495. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1496. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1497. 0xff, 0xff ),
  1498. BIGINT ( 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1499. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1500. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1501. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1502. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1503. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1504. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1505. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1506. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1507. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1508. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1509. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1510. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1511. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1512. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1513. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1514. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1515. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1516. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1517. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1518. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
  1519. 0xff, 0xfe, 0x00, 0x00, 0x00, 0x00,
  1520. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1521. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1522. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1523. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1524. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1525. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1526. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1527. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1528. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1529. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1530. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1531. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1532. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1533. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1534. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1535. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1536. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1537. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1538. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1539. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  1540. 0x00, 0x00, 0x00, 0x01 ) );
  1541. bigint_mod_multiply_ok ( BIGINT ( 0x37 ),
  1542. BIGINT ( 0x67 ),
  1543. BIGINT ( 0x3f ),
  1544. BIGINT ( 0x3a ) );
  1545. bigint_mod_multiply_ok ( BIGINT ( 0x45, 0x94 ),
  1546. BIGINT ( 0xbd, 0xd2 ),
  1547. BIGINT ( 0xca, 0xc7 ),
  1548. BIGINT ( 0xac, 0xc1 ) );
  1549. bigint_mod_multiply_ok ( BIGINT ( 0x8e, 0xcd, 0x74 ),
  1550. BIGINT ( 0xe2, 0xf1, 0xea ),
  1551. BIGINT ( 0x59, 0x51, 0x53 ),
  1552. BIGINT ( 0x22, 0xdd, 0x1c ) );
  1553. bigint_mod_multiply_ok ( BIGINT ( 0xc2, 0xa8, 0x40, 0x6f ),
  1554. BIGINT ( 0x29, 0xd7, 0xf4, 0x77 ),
  1555. BIGINT ( 0xbb, 0xbd, 0xdb, 0x3d ),
  1556. BIGINT ( 0x8f, 0x39, 0xd0, 0x47 ) );
  1557. bigint_mod_multiply_ok ( BIGINT ( 0x2e, 0xcb, 0x74, 0x7c, 0x64, 0x60,
  1558. 0xb3, 0x44, 0xf3, 0x23, 0x49, 0x4a,
  1559. 0xc6, 0xb6, 0xbf, 0xea, 0x80, 0xd8,
  1560. 0x34, 0xc5, 0x54, 0x22, 0x09 ),
  1561. BIGINT ( 0x61, 0x2c, 0x5a, 0xc5, 0xde, 0x07,
  1562. 0x65, 0x8e, 0xab, 0x88, 0x1a, 0x2e,
  1563. 0x7a, 0x95, 0x17, 0xe3, 0x3b, 0x17,
  1564. 0xe4, 0x21, 0xb0, 0xb4, 0x57 ),
  1565. BIGINT ( 0x8e, 0x46, 0xa5, 0x87, 0x7b, 0x7f,
  1566. 0xc4, 0xd7, 0x31, 0xb1, 0x94, 0xe7,
  1567. 0xe7, 0x1c, 0x7e, 0x7a, 0xc2, 0x6c,
  1568. 0xce, 0xcb, 0xc8, 0x5d, 0x70 ),
  1569. BIGINT ( 0x1e, 0xd1, 0x5b, 0x3d, 0x1d, 0x17,
  1570. 0x7c, 0x31, 0x95, 0x13, 0x1b, 0xd8,
  1571. 0xee, 0x0a, 0xb0, 0xe1, 0x5b, 0x13,
  1572. 0xad, 0x83, 0xe9, 0xf8, 0x7f ) );
  1573. bigint_mod_multiply_ok ( BIGINT ( 0x56, 0x37, 0xab, 0x07, 0x8b, 0x25,
  1574. 0xa7, 0xc2, 0x50, 0x30, 0x43, 0xfc,
  1575. 0x63, 0x8b, 0xdf, 0x84, 0x68, 0x85,
  1576. 0xca, 0xce, 0x44, 0x5c, 0xb1, 0x14,
  1577. 0xa4, 0xb5, 0xba, 0x43, 0xe0, 0x31,
  1578. 0x45, 0x6b, 0x82, 0xa9, 0x0b, 0x9e,
  1579. 0x3a, 0xb0, 0x39, 0x09, 0x2a, 0x68,
  1580. 0x2e, 0x0f, 0x09, 0x54, 0x47, 0x04,
  1581. 0xdb, 0xcf, 0x4a, 0x3a, 0x2d, 0x7b,
  1582. 0x7d, 0x50, 0xa4, 0xc5, 0xeb, 0x13,
  1583. 0xdd, 0x49, 0x61, 0x7d, 0x18, 0xa1,
  1584. 0x0d, 0x6b, 0x58, 0xba, 0x9f, 0x7c,
  1585. 0x81, 0x34, 0x9e, 0xf9, 0x9c, 0x9e,
  1586. 0x28, 0xa8, 0x1c, 0x15, 0x16, 0x20,
  1587. 0x3c, 0x0a, 0xb1, 0x11, 0x06, 0x93,
  1588. 0xbc, 0xd8, 0x4e, 0x49, 0xae, 0x7b,
  1589. 0xb4, 0x02, 0x8b, 0x1c, 0x5b, 0x18,
  1590. 0xb4, 0xac, 0x7f, 0xdd, 0x70, 0xef,
  1591. 0x87, 0xac, 0x1b, 0xac, 0x25, 0xa3,
  1592. 0xc9, 0xa7, 0x3a, 0xc5, 0x76, 0x68,
  1593. 0x09, 0x1f, 0xa1, 0x48, 0x53, 0xb6,
  1594. 0x13, 0xac ),
  1595. BIGINT ( 0xef, 0x5c, 0x1f, 0x1a, 0x44, 0x64,
  1596. 0x66, 0xcf, 0xdd, 0x3f, 0x0b, 0x27,
  1597. 0x81, 0xa7, 0x91, 0x7a, 0x35, 0x7b,
  1598. 0x0f, 0x46, 0x5e, 0xca, 0xbf, 0xf8,
  1599. 0x50, 0x5e, 0x99, 0x7c, 0xc6, 0x64,
  1600. 0x43, 0x00, 0x9f, 0xb2, 0xda, 0xfa,
  1601. 0x42, 0x15, 0x9c, 0xa3, 0xd6, 0xc8,
  1602. 0x64, 0xa7, 0x65, 0x4a, 0x98, 0xf7,
  1603. 0xb3, 0x96, 0x5f, 0x42, 0xf9, 0x73,
  1604. 0xe1, 0x75, 0xc3, 0xc4, 0x0b, 0x5d,
  1605. 0x5f, 0xf3, 0x04, 0x8a, 0xee, 0x59,
  1606. 0xa6, 0x1b, 0x06, 0x38, 0x0b, 0xa2,
  1607. 0x9f, 0xb4, 0x4f, 0x6d, 0x50, 0x5e,
  1608. 0x37, 0x37, 0x21, 0x83, 0x9d, 0xa3,
  1609. 0x12, 0x16, 0x4d, 0xab, 0x36, 0x51,
  1610. 0x21, 0xb1, 0x74, 0x66, 0x40, 0x9a,
  1611. 0xd3, 0x72, 0xcc, 0x18, 0x40, 0x53,
  1612. 0x89, 0xff, 0xd7, 0x00, 0x8d, 0x7e,
  1613. 0x93, 0x81, 0xdb, 0x29, 0xb6, 0xd7,
  1614. 0x23, 0x2b, 0x67, 0x2f, 0x11, 0x98,
  1615. 0x49, 0x87, 0x2f, 0x46, 0xb7, 0x33,
  1616. 0x6d, 0x12 ),
  1617. BIGINT ( 0x67, 0x7a, 0x17, 0x6a, 0xd2, 0xf8,
  1618. 0x49, 0xfb, 0x7c, 0x95, 0x25, 0x54,
  1619. 0xf0, 0xab, 0x5b, 0xb3, 0x0e, 0x01,
  1620. 0xab, 0xd3, 0x65, 0x6f, 0x7e, 0x18,
  1621. 0x05, 0xed, 0x9b, 0xc4, 0x90, 0x6c,
  1622. 0xd0, 0x6d, 0x94, 0x79, 0x28, 0xd6,
  1623. 0x24, 0x77, 0x9a, 0x08, 0xd2, 0x2f,
  1624. 0x7c, 0x2d, 0xa0, 0x0c, 0x14, 0xbe,
  1625. 0x7b, 0xee, 0x9e, 0x48, 0x88, 0x3c,
  1626. 0x8f, 0x9f, 0xb9, 0x7a, 0xcb, 0x98,
  1627. 0x76, 0x61, 0x0d, 0xee, 0xa2, 0x42,
  1628. 0x67, 0x1b, 0x2c, 0x42, 0x8f, 0x41,
  1629. 0xcc, 0x78, 0xba, 0xba, 0xaa, 0xa2,
  1630. 0x92, 0xb0, 0x6e, 0x0c, 0x4e, 0xe1,
  1631. 0xa5, 0x13, 0x7d, 0x8a, 0x8f, 0x81,
  1632. 0x95, 0x8a, 0xdf, 0x57, 0x93, 0x88,
  1633. 0x27, 0x4f, 0x1a, 0x59, 0xa4, 0x74,
  1634. 0x22, 0xa9, 0x78, 0xe5, 0xed, 0xb1,
  1635. 0x09, 0x26, 0x59, 0xde, 0x88, 0x21,
  1636. 0x8d, 0xa2, 0xa8, 0x58, 0x10, 0x7b,
  1637. 0x65, 0x96, 0xbf, 0x69, 0x3b, 0xc5,
  1638. 0x55, 0xf8 ),
  1639. BIGINT ( 0x15, 0xf7, 0x00, 0xeb, 0xc7, 0x5a,
  1640. 0x6f, 0xf0, 0x50, 0xf3, 0x21, 0x8a,
  1641. 0x8e, 0xa6, 0xf6, 0x67, 0x56, 0x7d,
  1642. 0x07, 0x45, 0x89, 0xdb, 0xd7, 0x7e,
  1643. 0x9e, 0x28, 0x7f, 0xfb, 0xed, 0xca,
  1644. 0x2c, 0xbf, 0x47, 0x77, 0x99, 0x95,
  1645. 0xf3, 0xd6, 0x9d, 0xc5, 0x57, 0x81,
  1646. 0x7f, 0x97, 0xf2, 0x6b, 0x24, 0xee,
  1647. 0xce, 0xc5, 0x9b, 0xe6, 0x42, 0x2d,
  1648. 0x37, 0xb7, 0xeb, 0x3d, 0xb5, 0xf7,
  1649. 0x1e, 0x86, 0xc2, 0x40, 0x44, 0xc9,
  1650. 0x85, 0x5a, 0x1a, 0xc0, 0xac, 0x9e,
  1651. 0x78, 0x69, 0x00, 0x7b, 0x93, 0x65,
  1652. 0xd7, 0x7f, 0x0c, 0xd6, 0xba, 0x4f,
  1653. 0x06, 0x00, 0x61, 0x05, 0xb2, 0x44,
  1654. 0xb4, 0xe7, 0xbb, 0x3b, 0x96, 0xb0,
  1655. 0x6d, 0xe8, 0x43, 0xd2, 0x03, 0xb7,
  1656. 0x0a, 0xc4, 0x6d, 0x30, 0xd8, 0xd5,
  1657. 0xe6, 0x54, 0x65, 0xdd, 0xa9, 0x1b,
  1658. 0x50, 0xc0, 0xb9, 0x95, 0xb0, 0x7d,
  1659. 0x7c, 0xca, 0x63, 0xf8, 0x72, 0xbe,
  1660. 0x3b, 0x00 ) );
  1661. bigint_mod_exp_ok ( BIGINT ( 0xcd ),
  1662. BIGINT ( 0xbb ),
  1663. BIGINT ( 0x25 ),
  1664. BIGINT ( 0xab ) );
  1665. bigint_mod_exp_ok ( BIGINT ( 0xc4 ),
  1666. BIGINT ( 0xe9 ),
  1667. BIGINT ( 0x02, 0x4c ),
  1668. BIGINT ( 0x7e ) );
  1669. bigint_mod_exp_ok ( BIGINT ( 0xcb ),
  1670. BIGINT ( 0xde ),
  1671. BIGINT ( 0xbd, 0x73, 0xbf ),
  1672. BIGINT ( 0x17 ) );
  1673. bigint_mod_exp_ok ( BIGINT ( 0x17 ),
  1674. BIGINT ( 0xb9 ),
  1675. BIGINT ( 0x39, 0x68, 0xba, 0x7d ),
  1676. BIGINT ( 0x17 ) );
  1677. bigint_mod_exp_ok ( BIGINT ( 0x2e ),
  1678. BIGINT ( 0xb7 ),
  1679. BIGINT ( 0x39, 0x07, 0x1b, 0x49, 0x5b, 0xea,
  1680. 0xf2, 0x61, 0x75, 0x94, 0x60, 0x86,
  1681. 0x73, 0xd0, 0xeb, 0x11, 0x08, 0x19,
  1682. 0x90, 0x19, 0xe0, 0xed, 0x2a ),
  1683. BIGINT ( 0x19 ) );
  1684. bigint_mod_exp_ok ( BIGINT ( 0x59 ),
  1685. BIGINT ( 0xce ),
  1686. BIGINT ( 0xdf, 0xbc, 0x0d, 0x0c, 0x09, 0xeb,
  1687. 0xf8, 0xcf, 0xdb, 0xb6, 0x00, 0xa3,
  1688. 0x9e, 0xc3, 0x6c, 0x8d, 0xf1, 0xc3,
  1689. 0x03, 0x36, 0xaa, 0xd4, 0x22, 0x7c,
  1690. 0x20, 0x7b, 0xa9, 0x9a, 0x01, 0xe4,
  1691. 0xf2, 0x50, 0x42, 0x29, 0x68, 0x7a,
  1692. 0xa6, 0x2c, 0xdf, 0xb6, 0x51, 0xa9,
  1693. 0x73, 0x10, 0x98, 0x37, 0x69, 0xb3,
  1694. 0x21, 0x49, 0x6d, 0xcc, 0x80, 0xfa,
  1695. 0x7e, 0x12, 0xe4, 0x9c, 0xc2, 0xbb,
  1696. 0xe3, 0xa3, 0x10, 0x3f, 0xba, 0x99,
  1697. 0x22, 0x79, 0x71, 0x39, 0x96, 0x7b,
  1698. 0x1a, 0x89, 0xdc, 0xda, 0x43, 0x52,
  1699. 0x50, 0x7b, 0xe3, 0x8c, 0xd3, 0xc0,
  1700. 0xf5, 0x7d, 0xfc, 0x80, 0x71, 0x6e,
  1701. 0xaf, 0x5c, 0xd0, 0x14, 0xc0, 0x60,
  1702. 0x24, 0xa8, 0x9a, 0x8a, 0x54, 0x4a,
  1703. 0x6f, 0x42, 0x7a, 0x14, 0x14, 0x25,
  1704. 0xd5, 0x22, 0x08, 0x8f, 0xd9, 0xdb,
  1705. 0xd4, 0x0f, 0x14, 0xf4, 0x3b, 0x26,
  1706. 0x0e, 0xb6, 0x72, 0xd7, 0x03, 0xd5,
  1707. 0xf0, 0x0e ),
  1708. BIGINT ( 0xa9 ) );
  1709. bigint_mod_exp_ok ( BIGINT ( 0x7f, 0x30 ),
  1710. BIGINT ( 0x73, 0x74 ),
  1711. BIGINT ( 0x75 ),
  1712. BIGINT ( 0x4b, 0xe8 ) );
  1713. bigint_mod_exp_ok ( BIGINT ( 0x04, 0x6c ),
  1714. BIGINT ( 0x99, 0x04 ),
  1715. BIGINT ( 0x33, 0xd2 ),
  1716. BIGINT ( 0x86, 0x74 ) );
  1717. bigint_mod_exp_ok ( BIGINT ( 0xca, 0x88 ),
  1718. BIGINT ( 0xdc, 0x60 ),
  1719. BIGINT ( 0x7e, 0x76, 0x79 ),
  1720. BIGINT ( 0x42, 0x40 ) );
  1721. bigint_mod_exp_ok ( BIGINT ( 0x68, 0x97 ),
  1722. BIGINT ( 0x52, 0x8b ),
  1723. BIGINT ( 0x4f, 0x7f, 0xe7, 0xda ),
  1724. BIGINT ( 0x22, 0x77 ) );
  1725. bigint_mod_exp_ok ( BIGINT ( 0xbd, 0x14 ),
  1726. BIGINT ( 0x9e, 0xfc ),
  1727. BIGINT ( 0x23, 0xf7, 0xd0, 0xa1, 0x9e, 0x9b,
  1728. 0x05, 0xd2, 0x44, 0x24, 0x4f, 0x3f,
  1729. 0x83, 0xcc, 0x49, 0x70, 0xa5, 0x0d,
  1730. 0xfc, 0xa7, 0x43, 0xf3, 0x3e ),
  1731. BIGINT ( 0x1a, 0xc8 ) );
  1732. bigint_mod_exp_ok ( BIGINT ( 0x46, 0x3e ),
  1733. BIGINT ( 0xb8, 0xde ),
  1734. BIGINT ( 0xa9, 0xc0, 0xdc, 0x45, 0x65, 0x0d,
  1735. 0xa5, 0x56, 0x70, 0x4c, 0xf1, 0xda,
  1736. 0xab, 0x64, 0xc2, 0x04, 0xf6, 0x32,
  1737. 0x20, 0x68, 0x31, 0x5f, 0x9a, 0x00,
  1738. 0x0f, 0x7b, 0x24, 0x33, 0xdf, 0xaf,
  1739. 0xfe, 0x03, 0x1e, 0x4a, 0xa1, 0xf8,
  1740. 0x45, 0x8d, 0x5a, 0x7d, 0x12, 0x58,
  1741. 0x00, 0x6d, 0xba, 0x79, 0x9f, 0xe1,
  1742. 0xa1, 0xfc, 0x1f, 0xb9, 0xf3, 0xa7,
  1743. 0x07, 0xf5, 0xfe, 0xd6, 0xa1, 0xba,
  1744. 0xda, 0x63, 0xef, 0x39, 0x8e, 0xb7,
  1745. 0x48, 0xa8, 0x81, 0x86, 0xb1, 0x22,
  1746. 0x14, 0x9f, 0x9e, 0xac, 0x69, 0xf7,
  1747. 0xae, 0x1f, 0xf2, 0x99, 0x41, 0xb7,
  1748. 0x37, 0xa7, 0xbc, 0x42, 0xf2, 0x45,
  1749. 0x43, 0xf2, 0x2a, 0xef, 0xc2, 0x83,
  1750. 0xd5, 0x32, 0x6e, 0xfa, 0x49, 0x1c,
  1751. 0x94, 0x9c, 0xc2, 0xc5, 0xad, 0x28,
  1752. 0x53, 0x1c, 0x11, 0xc4, 0x1c, 0x78,
  1753. 0x8f, 0x13, 0xdc, 0xb3, 0x2a, 0x63,
  1754. 0xfd, 0x1f, 0x89, 0x9b, 0x0c, 0x31,
  1755. 0x92, 0x73 ),
  1756. BIGINT ( 0x7b, 0x8a ) );
  1757. bigint_mod_exp_ok ( BIGINT ( 0xf3, 0xc3, 0xab ),
  1758. BIGINT ( 0xd0, 0x7e, 0xd0 ),
  1759. BIGINT ( 0xf6 ),
  1760. BIGINT ( 0x1f, 0xb3, 0x09 ) );
  1761. bigint_mod_exp_ok ( BIGINT ( 0x13, 0xec, 0xf6 ),
  1762. BIGINT ( 0x87, 0x1a, 0x9a ),
  1763. BIGINT ( 0x03, 0xf3 ),
  1764. BIGINT ( 0x15, 0xe9, 0x8e ) );
  1765. bigint_mod_exp_ok ( BIGINT ( 0x5a, 0x96, 0xe5 ),
  1766. BIGINT ( 0x56, 0x4a, 0xd1 ),
  1767. BIGINT ( 0x89, 0x62, 0x8e ),
  1768. BIGINT ( 0x34, 0xb8, 0xaa ) );
  1769. bigint_mod_exp_ok ( BIGINT ( 0x84, 0x7c, 0xbd ),
  1770. BIGINT ( 0x3c, 0x80, 0x0a ),
  1771. BIGINT ( 0x5e, 0x52, 0x9d, 0xba ),
  1772. BIGINT ( 0x04, 0xcb, 0x4f ) );
  1773. bigint_mod_exp_ok ( BIGINT ( 0x50, 0x01, 0x51 ),
  1774. BIGINT ( 0x02, 0xe6, 0x96 ),
  1775. BIGINT ( 0x34, 0x0c, 0x7e, 0xbf, 0x27, 0x23,
  1776. 0x46, 0x92, 0x1c, 0xca, 0x91, 0xab,
  1777. 0x50, 0x2c, 0x3a, 0x64, 0xc8, 0x4a,
  1778. 0x75, 0xd6, 0xe2, 0xde, 0x31 ),
  1779. BIGINT ( 0x02, 0x16, 0x05 ) );
  1780. bigint_mod_exp_ok ( BIGINT ( 0x5e, 0x47, 0xd8 ),
  1781. BIGINT ( 0x26, 0xd1, 0xb6 ),
  1782. BIGINT ( 0x49, 0x61, 0x84, 0x7a, 0xa9, 0xfb,
  1783. 0x93, 0x45, 0xe4, 0xfa, 0x53, 0x60,
  1784. 0x73, 0x98, 0x5a, 0x17, 0xe7, 0x77,
  1785. 0x2d, 0xcd, 0x97, 0xf4, 0xc0, 0x34,
  1786. 0x46, 0xfa, 0xbd, 0x21, 0xdf, 0xa5,
  1787. 0xa0, 0x12, 0x38, 0x7c, 0xbd, 0xd9,
  1788. 0xcd, 0xbc, 0xde, 0x29, 0xa5, 0x13,
  1789. 0xa8, 0xf0, 0xf6, 0x88, 0xc6, 0x31,
  1790. 0xed, 0x90, 0x19, 0x11, 0x7d, 0xe1,
  1791. 0x0e, 0x81, 0x98, 0x8e, 0x98, 0x86,
  1792. 0xde, 0x2a, 0x4c, 0xad, 0xff, 0x57,
  1793. 0x12, 0xbc, 0x4b, 0xaf, 0x21, 0xde,
  1794. 0xca, 0x3a, 0x25, 0xd7, 0x98, 0xe3,
  1795. 0x25, 0xbc, 0x17, 0x74, 0x0b, 0x9c,
  1796. 0x53, 0xe1, 0x1a, 0xec, 0x9a, 0x5a,
  1797. 0xdc, 0x68, 0xdf, 0xad, 0xd6, 0x71,
  1798. 0x6b, 0x5b, 0x8b, 0x85, 0xbb, 0xe5,
  1799. 0xd5, 0x14, 0x4c, 0x30, 0x27, 0x68,
  1800. 0xd1, 0xf7, 0x58, 0x34, 0x4c, 0xe1,
  1801. 0x71, 0xde, 0x7b, 0x8d, 0xa2, 0xe6,
  1802. 0x0a, 0x44, 0x22, 0x26, 0x5a, 0x70,
  1803. 0xbb, 0x68 ),
  1804. BIGINT ( 0x18, 0x36, 0x96 ) );
  1805. bigint_mod_exp_ok ( BIGINT ( 0xc7, 0x4a, 0xf0, 0x48 ),
  1806. BIGINT ( 0x5d, 0x27, 0x07, 0x54 ),
  1807. BIGINT ( 0x4a ),
  1808. BIGINT ( 0x48, 0x68, 0x7b, 0xe0 ) );
  1809. bigint_mod_exp_ok ( BIGINT ( 0xb4, 0x89, 0xc9, 0x5b ),
  1810. BIGINT ( 0x7c, 0xd7, 0xc7, 0xff ),
  1811. BIGINT ( 0xc6, 0x9c ),
  1812. BIGINT ( 0x0b, 0x2d, 0xf8, 0xf7 ) );
  1813. bigint_mod_exp_ok ( BIGINT ( 0xea, 0x72, 0x43, 0xfe ),
  1814. BIGINT ( 0xfc, 0x57, 0x2d, 0x47 ),
  1815. BIGINT ( 0x60, 0x01, 0x2c ),
  1816. BIGINT ( 0x12, 0x01, 0xe3, 0xf5 ) );
  1817. bigint_mod_exp_ok ( BIGINT ( 0x81, 0x7f, 0x27, 0x94 ),
  1818. BIGINT ( 0x17, 0x21, 0x67, 0xab ),
  1819. BIGINT ( 0x50, 0x19, 0x12, 0x52 ),
  1820. BIGINT ( 0x05, 0x17, 0x6b, 0x13 ) );
  1821. bigint_mod_exp_ok ( BIGINT ( 0x38, 0xab, 0xd4, 0xec ),
  1822. BIGINT ( 0x0c, 0x2a, 0x56, 0x38 ),
  1823. BIGINT ( 0x2f, 0x85, 0x85, 0x57, 0xf6, 0xde,
  1824. 0x24, 0xb4, 0x28, 0x3c, 0x5a, 0x3c,
  1825. 0x0b, 0x12, 0x85, 0x85, 0x85, 0x98,
  1826. 0x46, 0x5b, 0x9c, 0x52, 0x3a ),
  1827. BIGINT ( 0x02, 0xe6, 0x6a, 0x70 ) );
  1828. bigint_mod_exp_ok ( BIGINT ( 0xa6, 0x35, 0xc0, 0x6f ),
  1829. BIGINT ( 0x23, 0xac, 0x78, 0x72 ),
  1830. BIGINT ( 0x6a, 0x07, 0x80, 0xbf, 0x1b, 0xa5,
  1831. 0xf8, 0x0b, 0x90, 0x06, 0xa4, 0xa5,
  1832. 0x44, 0x13, 0xba, 0x4b, 0xb3, 0xce,
  1833. 0x9f, 0x55, 0x42, 0x56, 0xc3, 0x30,
  1834. 0x82, 0x85, 0x5a, 0x3b, 0xae, 0x88,
  1835. 0x92, 0x4e, 0x3c, 0x37, 0xf6, 0x80,
  1836. 0x4c, 0x03, 0x3c, 0x1e, 0x2c, 0x17,
  1837. 0xef, 0x9d, 0xd7, 0x6f, 0xdc, 0xbb,
  1838. 0x42, 0x42, 0xa1, 0x7f, 0x97, 0x66,
  1839. 0xcd, 0xc8, 0x8a, 0x7c, 0xc6, 0x70,
  1840. 0x61, 0x54, 0x82, 0xd0, 0xd0, 0x8b,
  1841. 0xd5, 0x4f, 0x57, 0x7b, 0x8e, 0xab,
  1842. 0xdc, 0xbf, 0x8e, 0x85, 0x94, 0x83,
  1843. 0x8a, 0xb3, 0x72, 0x69, 0x2d, 0x51,
  1844. 0xdd, 0x86, 0x1e, 0x58, 0xb8, 0x00,
  1845. 0xe2, 0x5e, 0xa7, 0xef, 0x6a, 0x6a,
  1846. 0xb0, 0x10, 0x3d, 0x53, 0xfe, 0x23,
  1847. 0x51, 0xc0, 0x51, 0xed, 0x1f, 0x02,
  1848. 0x4b, 0x73, 0x17, 0x59, 0xfa, 0xb9,
  1849. 0xa8, 0x05, 0xa7, 0x79, 0xc3, 0xc9,
  1850. 0x4c, 0x2d, 0x58, 0x59, 0x10, 0x99,
  1851. 0x71, 0xe6 ),
  1852. BIGINT ( 0x01, 0x63, 0xd0, 0x07 ) );
  1853. bigint_mod_exp_ok ( BIGINT ( 0xff, 0x2a, 0x37, 0x04, 0xd4, 0x08,
  1854. 0x9f, 0xf5, 0xac, 0x29, 0x7f, 0x4b,
  1855. 0x93, 0x86, 0x02, 0x26, 0xac, 0x29,
  1856. 0xa8, 0xf9, 0x77, 0x91, 0x20 ),
  1857. BIGINT ( 0x2c, 0xb2, 0xe2, 0x1f, 0x4b, 0x97,
  1858. 0xaa, 0x3b, 0xd1, 0x36, 0xb0, 0x40,
  1859. 0x8b, 0x1c, 0x19, 0xa2, 0xea, 0xc8,
  1860. 0xc6, 0x4e, 0x2a, 0x66, 0x50 ),
  1861. BIGINT ( 0x97 ),
  1862. BIGINT ( 0x04, 0x22, 0x44, 0xe2, 0x14, 0x54,
  1863. 0x6c, 0x5a, 0xba, 0x1b, 0x39, 0xb7,
  1864. 0xaa, 0x06, 0xcf, 0x2b, 0xc8, 0x7e,
  1865. 0xc0, 0xe0, 0x70, 0xf2, 0x90 ) );
  1866. bigint_mod_exp_ok ( BIGINT ( 0xcd, 0xf3, 0xf7, 0x50, 0x13, 0x39,
  1867. 0x13, 0x4a, 0x56, 0xc5, 0xb8, 0xa6,
  1868. 0x42, 0x2d, 0x40, 0x5e, 0x07, 0xf2,
  1869. 0x92, 0x2a, 0x51, 0x87, 0x20 ),
  1870. BIGINT ( 0x93, 0x1a, 0x28, 0xbb, 0x69, 0x4f,
  1871. 0x31, 0x01, 0xe0, 0x88, 0x8a, 0x4c,
  1872. 0x4f, 0x9b, 0xda, 0xf6, 0x4e, 0xf3,
  1873. 0x11, 0xe7, 0x35, 0xa1, 0xfb ),
  1874. BIGINT ( 0x66, 0x69 ),
  1875. BIGINT ( 0x7a, 0x5a, 0x9b, 0x84, 0x72, 0x8f,
  1876. 0x57, 0x31, 0xb4, 0x34, 0x70, 0x18,
  1877. 0x77, 0xa6, 0x43, 0xa9, 0x51, 0x69,
  1878. 0x07, 0x3e, 0xf6, 0x68, 0x82 ) );
  1879. bigint_mod_exp_ok ( BIGINT ( 0xdd, 0x4c, 0x85, 0xcb, 0x3f, 0x45,
  1880. 0x61, 0xe0, 0x58, 0x1e, 0xad, 0xd3,
  1881. 0x6b, 0xef, 0x82, 0x53, 0x4a, 0x16,
  1882. 0x1a, 0xf0, 0x09, 0x82, 0x74 ),
  1883. BIGINT ( 0xd2, 0xa2, 0x73, 0x89, 0x0c, 0x56,
  1884. 0xe4, 0x31, 0xdf, 0x70, 0x3c, 0x40,
  1885. 0x0d, 0x36, 0xfc, 0x4a, 0xf3, 0xa2,
  1886. 0x8f, 0x9a, 0x9d, 0xaa, 0xb0 ),
  1887. BIGINT ( 0xbc, 0xca, 0x45 ),
  1888. BIGINT ( 0x9f, 0x5f, 0x7c, 0xac, 0x5e, 0xc7,
  1889. 0xf2, 0xc5, 0x72, 0x3d, 0xff, 0x29,
  1890. 0xd2, 0x25, 0xa9, 0x64, 0x5b, 0xbe,
  1891. 0x63, 0x63, 0xc6, 0x84, 0x20 ) );
  1892. bigint_mod_exp_ok ( BIGINT ( 0xf8, 0xc9, 0xb9, 0x3d, 0xe1, 0xff,
  1893. 0xa6, 0x8e, 0xb0, 0xd2, 0xa9, 0xa9,
  1894. 0xc1, 0x5c, 0xc5, 0x94, 0x90, 0xb9,
  1895. 0xca, 0x2f, 0x1a, 0xbd, 0x21 ),
  1896. BIGINT ( 0xa7, 0xf4, 0xb0, 0x3c, 0xf4, 0x2b,
  1897. 0x9d, 0x40, 0x5f, 0xfd, 0x2e, 0x28,
  1898. 0xa9, 0x23, 0x01, 0xaf, 0x0b, 0x73,
  1899. 0xaa, 0xcf, 0x14, 0xdc, 0xd8 ),
  1900. BIGINT ( 0x31, 0xe2, 0xe8, 0xf0 ),
  1901. BIGINT ( 0x53, 0x30, 0xc6, 0x10, 0x12, 0x7c,
  1902. 0xb3, 0x91, 0x15, 0x5f, 0x01, 0x62,
  1903. 0xec, 0x1f, 0x15, 0x61, 0x3b, 0x9a,
  1904. 0x76, 0x22, 0xf8, 0x31, 0xb1 ) );
  1905. bigint_mod_exp_ok ( BIGINT ( 0xff, 0x8c, 0x04, 0x74, 0x3e, 0x93,
  1906. 0xfd, 0xce, 0xd5, 0x7f, 0xc5, 0x58,
  1907. 0xce, 0x00, 0x53, 0x44, 0x02, 0xf4,
  1908. 0xfd, 0x01, 0xc3, 0xb0, 0x3c ),
  1909. BIGINT ( 0x2f, 0xbe, 0xb3, 0x2d, 0xd6, 0x59,
  1910. 0x69, 0x44, 0xc0, 0xd4, 0x27, 0x9c,
  1911. 0xff, 0x53, 0x9e, 0x66, 0x2c, 0x01,
  1912. 0x3a, 0x96, 0x5d, 0x75, 0xc1 ),
  1913. BIGINT ( 0x47, 0x3e, 0xb2, 0x81, 0x51, 0x9a,
  1914. 0xdf, 0x75, 0xba, 0xa5, 0x19, 0xc1,
  1915. 0xc7, 0xcc, 0xae, 0x82, 0x9c, 0x3e,
  1916. 0xfd, 0x7f, 0xb0, 0xd7, 0x00 ),
  1917. BIGINT ( 0x09, 0x9c, 0xd0, 0x49, 0x1d, 0x88,
  1918. 0xd8, 0x08, 0x45, 0x61, 0x71, 0xa1,
  1919. 0xb5, 0xab, 0xa9, 0x5b, 0xa8, 0xf1,
  1920. 0xc6, 0x53, 0x68, 0x8f, 0x3e ) );
  1921. bigint_mod_exp_ok ( BIGINT ( 0xd8, 0x78, 0xad, 0x80, 0x81, 0xf1,
  1922. 0x84, 0x23, 0x82, 0x5d, 0x49, 0x46,
  1923. 0x75, 0xfd, 0xd1, 0x49, 0x53, 0x10,
  1924. 0x4d, 0x10, 0xab, 0x0f, 0xf0 ),
  1925. BIGINT ( 0x78, 0x3d, 0x09, 0x1b, 0xea, 0xa4,
  1926. 0xb9, 0x13, 0xf8, 0xb5, 0xb5, 0x5e,
  1927. 0x69, 0xa4, 0xe1, 0xfd, 0x88, 0x58,
  1928. 0x26, 0xb3, 0x76, 0xa2, 0x38 ),
  1929. BIGINT ( 0x3b, 0x12, 0xe0, 0x8e, 0xa2, 0x2f,
  1930. 0x2a, 0x2b, 0xb1, 0x78, 0xf9, 0xf6,
  1931. 0x93, 0x4d, 0x52, 0x82, 0x29, 0x2d,
  1932. 0xe4, 0x36, 0x92, 0x49, 0xc1, 0x25,
  1933. 0x6e, 0x26, 0xe6, 0x6e, 0xc2, 0x4d,
  1934. 0xea, 0x13, 0x86, 0x85, 0x71, 0x4d,
  1935. 0x85, 0x70, 0xf9, 0x2b, 0xa0, 0x0f,
  1936. 0x96, 0xe5, 0x63, 0x7a, 0xb4, 0x25,
  1937. 0x53, 0x1a, 0xd8, 0x30, 0x36, 0xba,
  1938. 0x6e, 0x2e, 0xce, 0x2d, 0x8f, 0x32,
  1939. 0xe9, 0xdc, 0x91, 0x9e, 0xd4, 0xf1,
  1940. 0x3b, 0x40, 0xc9, 0xf4, 0x97, 0x74,
  1941. 0x5e, 0x69, 0xcd, 0x34, 0x4a, 0x18,
  1942. 0x65, 0xe5, 0x07, 0xb5, 0x9e, 0x2a,
  1943. 0xc4, 0xeb, 0xb6, 0x96, 0x7b, 0x99,
  1944. 0x0c, 0xe4, 0xb3, 0x85, 0xff, 0x17,
  1945. 0x72, 0x5d, 0xf6, 0x30, 0xb4, 0xff,
  1946. 0x98, 0xe6, 0xf6, 0x31, 0x24, 0x82,
  1947. 0x91, 0xa6, 0x18, 0x6d, 0x0b, 0x84,
  1948. 0x6f, 0x5f, 0x64, 0xa3, 0xdf, 0x92,
  1949. 0x06, 0x16, 0xe3, 0x7c, 0x08, 0x61,
  1950. 0x77, 0xce ),
  1951. BIGINT ( 0x17, 0xc9, 0xc5, 0x38, 0x4c, 0x15,
  1952. 0x0f, 0x4e, 0xc2, 0x90, 0x3b, 0x46,
  1953. 0x7b, 0x2f, 0x95, 0x82, 0xfe, 0x51,
  1954. 0x95, 0x2b, 0xff, 0xd5, 0x28 ) );
  1955. bigint_mod_exp_ok ( BIGINT ( 0x69, 0xa3, 0x7e, 0x24, 0xdf, 0x9e,
  1956. 0x0b, 0x3e, 0x3f, 0x43, 0x06, 0x0e,
  1957. 0x1d, 0x57, 0x74, 0xe0, 0xa0, 0x5b,
  1958. 0x82, 0xca, 0xb0, 0x33, 0x8b, 0xe4,
  1959. 0x39, 0x27, 0x41, 0xd4, 0x2e, 0x30,
  1960. 0x3a, 0x0e, 0x62, 0x6f, 0xfa, 0xb4,
  1961. 0x02, 0x88, 0x70, 0x35, 0xa6, 0xea,
  1962. 0x7d, 0xb2, 0x87, 0xc3, 0xa5, 0x50,
  1963. 0x49, 0x38, 0xa4, 0x68, 0xa9, 0xe4,
  1964. 0xa6, 0xcc, 0xd7, 0x13, 0xb1, 0xd9,
  1965. 0x1c, 0x6a, 0x9a, 0xb8, 0x6c, 0x9b,
  1966. 0xff, 0xcd, 0x2c, 0xb3, 0xbd, 0xe2,
  1967. 0xfd, 0x1f, 0x08, 0xdd, 0xc6, 0xee,
  1968. 0x18, 0x0c, 0xa5, 0xcd, 0x09, 0x19,
  1969. 0x51, 0x51, 0xa5, 0x6f, 0x93, 0x1b,
  1970. 0x34, 0xfd, 0x8f, 0xd9, 0x87, 0xed,
  1971. 0x15, 0x7e, 0x36, 0x60, 0xdd, 0x1b,
  1972. 0xf4, 0xcc, 0xc4, 0x4c, 0x19, 0x2b,
  1973. 0xd6, 0x1e, 0xec, 0x51, 0xe9, 0x27,
  1974. 0xe9, 0xbd, 0x6a, 0x3f, 0x91, 0x45,
  1975. 0xc3, 0x6d, 0x40, 0x7e, 0x6c, 0x56,
  1976. 0x05, 0x5a ),
  1977. BIGINT ( 0x5c, 0x96, 0x05, 0x81, 0x94, 0x45,
  1978. 0xcf, 0x47, 0x5f, 0x1b, 0xb0, 0xf9,
  1979. 0xef, 0x13, 0x8f, 0xcc, 0x71, 0xfd,
  1980. 0x50, 0xf1, 0xe7, 0x62, 0x6e, 0xfa,
  1981. 0x48, 0x66, 0x1c, 0xf7, 0xef, 0x09,
  1982. 0x12, 0xa2, 0xfd, 0x17, 0xb7, 0x6a,
  1983. 0x3b, 0xed, 0xf7, 0x86, 0xd2, 0xbe,
  1984. 0x95, 0x90, 0xc6, 0x00, 0x14, 0x8d,
  1985. 0xe3, 0x27, 0xbe, 0x03, 0x7c, 0x9e,
  1986. 0x6b, 0x51, 0x31, 0x8d, 0x18, 0xc4,
  1987. 0x16, 0xd2, 0x84, 0x63, 0x9b, 0xe9,
  1988. 0xa4, 0xf8, 0xff, 0x70, 0x4d, 0xeb,
  1989. 0x6f, 0x4a, 0xb7, 0x5b, 0x54, 0xf1,
  1990. 0xb5, 0xbe, 0x78, 0xb6, 0xfd, 0x8b,
  1991. 0xe1, 0x39, 0x62, 0x85, 0x9b, 0xde,
  1992. 0x30, 0xa8, 0xe4, 0x37, 0x52, 0x57,
  1993. 0x39, 0x79, 0xdb, 0x0b, 0x19, 0x6b,
  1994. 0xc9, 0x17, 0xfd, 0x8c, 0x2c, 0xaa,
  1995. 0xa4, 0xf1, 0x04, 0xd1, 0xd3, 0x2f,
  1996. 0xbb, 0x3a, 0x36, 0x82, 0x31, 0xa4,
  1997. 0x40, 0xd4, 0x87, 0x46, 0xe3, 0x6e,
  1998. 0xd0, 0x17 ),
  1999. BIGINT ( 0x93 ),
  2000. BIGINT ( 0x0d, 0x39, 0x92, 0x57, 0xaa, 0x6d,
  2001. 0xfc, 0x3b, 0x10, 0x18, 0x6d, 0x59,
  2002. 0xbe, 0x31, 0x8f, 0xee, 0xf9, 0x82,
  2003. 0x84, 0xe0, 0xdf, 0xa5, 0x00, 0x28,
  2004. 0xd1, 0x64, 0x6b, 0x4b, 0x43, 0x3b,
  2005. 0x76, 0x3e, 0x6b, 0xc4, 0xe4, 0xf5,
  2006. 0x0b, 0x59, 0x5a, 0xe4, 0x53, 0x5e,
  2007. 0x02, 0xd4, 0xde, 0x72, 0xd3, 0xa3,
  2008. 0x58, 0x66, 0xa7, 0xdd, 0x2b, 0x0b,
  2009. 0xa4, 0x83, 0xd0, 0xd9, 0xef, 0x29,
  2010. 0x3d, 0x2f, 0x97, 0xff, 0x9a, 0xc7,
  2011. 0xf6, 0x8a, 0x8d, 0x59, 0xef, 0x87,
  2012. 0xd1, 0xe6, 0xba, 0x4d, 0x99, 0xd9,
  2013. 0x5f, 0x5e, 0x7a, 0x7e, 0x67, 0x22,
  2014. 0x5b, 0x77, 0x83, 0xa2, 0x02, 0xfd,
  2015. 0xb2, 0xe4, 0xf6, 0x20, 0x4c, 0x12,
  2016. 0x20, 0xa7, 0xda, 0x5b, 0x3b, 0x8c,
  2017. 0xa2, 0xca, 0xda, 0x20, 0xaa, 0x27,
  2018. 0xe6, 0x54, 0x3e, 0xa8, 0x6f, 0x64,
  2019. 0x9d, 0xa7, 0x0d, 0x57, 0x1b, 0x21,
  2020. 0xff, 0xd2, 0xe2, 0xb2, 0x0a, 0x4f,
  2021. 0xb7, 0x0e ) );
  2022. bigint_mod_exp_ok ( BIGINT ( 0x06, 0xcf, 0x54, 0xf2, 0x0d, 0x62,
  2023. 0x33, 0xdd, 0xe7, 0x4d, 0x7f, 0x2f,
  2024. 0x8e, 0x52, 0x73, 0xf4, 0x73, 0x68,
  2025. 0x4b, 0x13, 0x6e, 0x58, 0x6b, 0x4a,
  2026. 0xb8, 0x4c, 0xef, 0x73, 0xfe, 0x5f,
  2027. 0xf6, 0xd0, 0xbb, 0x82, 0x17, 0x3f,
  2028. 0x9d, 0x91, 0xf8, 0xa3, 0xb8, 0x79,
  2029. 0xef, 0x41, 0x38, 0xc1, 0xef, 0xc9,
  2030. 0xc6, 0xcf, 0x2a, 0xc3, 0xaa, 0x75,
  2031. 0x17, 0xda, 0xbc, 0x76, 0x29, 0x61,
  2032. 0x6d, 0x05, 0x79, 0x0b, 0x44, 0xb1,
  2033. 0x54, 0x75, 0xb7, 0xd9, 0xf6, 0xa8,
  2034. 0xbd, 0xf7, 0x85, 0xe0, 0xe7, 0x90,
  2035. 0x62, 0xce, 0x79, 0xfb, 0xc5, 0x23,
  2036. 0xa5, 0x09, 0xc0, 0xc4, 0x4d, 0xe7,
  2037. 0x9c, 0x49, 0x8f, 0x82, 0xf1, 0x31,
  2038. 0x34, 0x85, 0xdd, 0x3b, 0xbe, 0xe9,
  2039. 0x93, 0x19, 0x03, 0x75, 0x3f, 0xc4,
  2040. 0xa4, 0x0f, 0x52, 0x53, 0xc1, 0xcd,
  2041. 0x08, 0xb0, 0x05, 0x0c, 0xa2, 0x0c,
  2042. 0x3a, 0x72, 0xb2, 0x3c, 0xdb, 0x4f,
  2043. 0xac, 0xc6 ),
  2044. BIGINT ( 0xe4, 0x40, 0xd8, 0x30, 0x00, 0xcf,
  2045. 0x4c, 0xfd, 0xda, 0xae, 0x90, 0xd3,
  2046. 0x5b, 0xc7, 0x20, 0xcc, 0x2b, 0xe2,
  2047. 0x0a, 0x39, 0x1e, 0xde, 0xef, 0x98,
  2048. 0x16, 0x3b, 0x9d, 0x36, 0x63, 0x0d,
  2049. 0x46, 0xed, 0x23, 0x6e, 0x38, 0xa8,
  2050. 0x15, 0xb5, 0xb1, 0xaf, 0x47, 0xb1,
  2051. 0xec, 0xaa, 0x8b, 0x57, 0xd6, 0xca,
  2052. 0x39, 0x2f, 0x62, 0xbd, 0xd5, 0xf8,
  2053. 0x98, 0x98, 0x5d, 0xfe, 0x14, 0xd6,
  2054. 0xdc, 0xe5, 0x98, 0x60, 0x5b, 0x16,
  2055. 0x92, 0xcb, 0xed, 0xb6, 0x9c, 0x5c,
  2056. 0x82, 0x40, 0x6b, 0xaa, 0x48, 0x7a,
  2057. 0xd4, 0xfe, 0xa3, 0xe7, 0x30, 0xf1,
  2058. 0x7c, 0xfb, 0x94, 0x2e, 0xeb, 0xb6,
  2059. 0x71, 0xe4, 0x33, 0x63, 0xc3, 0xb0,
  2060. 0x94, 0x6d, 0xee, 0xa5, 0x15, 0x3f,
  2061. 0x28, 0xf1, 0xfa, 0xdc, 0xf2, 0x13,
  2062. 0x0f, 0xc7, 0xd9, 0xe0, 0xbf, 0x1b,
  2063. 0x49, 0xee, 0x21, 0x8e, 0x26, 0xc9,
  2064. 0x28, 0x21, 0x86, 0x1d, 0x46, 0x33,
  2065. 0xd4, 0x69 ),
  2066. BIGINT ( 0xd9, 0x87 ),
  2067. BIGINT ( 0xdf, 0xff, 0xcc, 0xb7, 0xfe, 0x19,
  2068. 0x02, 0x92, 0x9d, 0xab, 0x33, 0xd2,
  2069. 0x21, 0xbc, 0xd3, 0xc4, 0x31, 0xad,
  2070. 0x4b, 0xb3, 0x16, 0x50, 0x96, 0xd9,
  2071. 0xdc, 0x88, 0x74, 0x60, 0xde, 0xdf,
  2072. 0xb7, 0x83, 0xdb, 0x22, 0xef, 0xcb,
  2073. 0xcb, 0xdb, 0x4c, 0xfb, 0x94, 0x4c,
  2074. 0x3f, 0xf5, 0xf5, 0x99, 0x85, 0x21,
  2075. 0x1a, 0x2b, 0xec, 0x90, 0x2d, 0xb4,
  2076. 0x20, 0x3c, 0x27, 0x9f, 0xe5, 0xb1,
  2077. 0x5c, 0x92, 0xfa, 0xb0, 0xa9, 0x8e,
  2078. 0x2c, 0x21, 0x8e, 0x8d, 0xe5, 0x55,
  2079. 0x84, 0x02, 0xa5, 0x15, 0x5c, 0x53,
  2080. 0x1f, 0x40, 0x81, 0x0a, 0x10, 0xde,
  2081. 0x21, 0x41, 0xa9, 0x97, 0xf8, 0x6f,
  2082. 0xbf, 0x42, 0x58, 0x9e, 0xc6, 0xdd,
  2083. 0x10, 0x33, 0x3f, 0xad, 0xe6, 0x8e,
  2084. 0x57, 0x27, 0x37, 0x20, 0xa4, 0x86,
  2085. 0xef, 0x39, 0x7b, 0x6f, 0x78, 0x77,
  2086. 0xab, 0xa0, 0x62, 0xe1, 0xfd, 0x9c,
  2087. 0xbe, 0xfa, 0x98, 0x2e, 0x29, 0xe3,
  2088. 0xeb, 0x52 ) );
  2089. bigint_mod_exp_ok ( BIGINT ( 0x00, 0x91, 0xb3, 0x87, 0xe6, 0x01,
  2090. 0x57, 0xe9, 0x68, 0xa4, 0xf4, 0x9b,
  2091. 0xea, 0x6a, 0x8a, 0x9e, 0x1a, 0x8b,
  2092. 0xd3, 0x85, 0x9d, 0xba, 0x85, 0xab,
  2093. 0xd8, 0xcd, 0x25, 0x56, 0x8e, 0x85,
  2094. 0x8a, 0x8e, 0x48, 0x9e, 0xb4, 0x90,
  2095. 0xc8, 0x2e, 0x07, 0x78, 0x80, 0x49,
  2096. 0xa0, 0xb7, 0x95, 0x6a, 0xd8, 0xad,
  2097. 0xb5, 0xda, 0x5d, 0xe6, 0x11, 0x87,
  2098. 0xb8, 0x33, 0x8f, 0xa8, 0x6f, 0x4e,
  2099. 0xc6, 0xc3, 0x0d, 0xf5, 0xa9, 0x4e,
  2100. 0xb2, 0x42, 0x53, 0x81, 0xcd, 0x33,
  2101. 0x83, 0x49, 0xab, 0x0d, 0x0e, 0xf5,
  2102. 0x2c, 0xcd, 0x84, 0x58, 0xf3, 0x30,
  2103. 0xa3, 0x6e, 0x3c, 0x3a, 0xc6, 0x77,
  2104. 0x43, 0xb0, 0xe7, 0x4b, 0x66, 0x30,
  2105. 0xe9, 0x48, 0x0b, 0x0d, 0x86, 0x3f,
  2106. 0xd8, 0xe2, 0xb5, 0x88, 0xc1, 0x44,
  2107. 0xb2, 0x6b, 0xb0, 0x7a, 0x35, 0x3b,
  2108. 0x56, 0x83, 0xb1, 0xac, 0x9e, 0xeb,
  2109. 0x9b, 0x08, 0x43, 0xac, 0x0a, 0x3a,
  2110. 0x31, 0x69 ),
  2111. BIGINT ( 0x96, 0x6f, 0xb0, 0xa7, 0x02, 0xb5,
  2112. 0xd9, 0x19, 0xbe, 0x4b, 0x27, 0x65,
  2113. 0x5b, 0x96, 0xd4, 0x0b, 0x49, 0x70,
  2114. 0xf0, 0x09, 0x8e, 0xf2, 0x04, 0x85,
  2115. 0x93, 0xe9, 0x2e, 0x09, 0x31, 0x76,
  2116. 0x8b, 0xbb, 0xe9, 0xe1, 0x2b, 0x4f,
  2117. 0xed, 0x83, 0xa6, 0x87, 0xa3, 0x07,
  2118. 0x0a, 0x3d, 0x1c, 0x65, 0x14, 0x5a,
  2119. 0xd5, 0xc0, 0x5d, 0x3c, 0x31, 0x9a,
  2120. 0x83, 0xad, 0xca, 0x6a, 0x93, 0x0d,
  2121. 0x1a, 0x67, 0x4e, 0x68, 0x06, 0x64,
  2122. 0x53, 0x2e, 0x15, 0xd9, 0xdd, 0x5e,
  2123. 0xcb, 0xb7, 0x2e, 0xef, 0xd3, 0xbb,
  2124. 0x5f, 0xaf, 0xef, 0x9e, 0xf2, 0x7b,
  2125. 0x69, 0x15, 0xb0, 0x18, 0x6c, 0x67,
  2126. 0x10, 0xda, 0x33, 0x07, 0x48, 0x97,
  2127. 0x31, 0xb3, 0x3d, 0x3d, 0xc9, 0x2e,
  2128. 0x0b, 0x68, 0x91, 0x3f, 0x6a, 0x3b,
  2129. 0x1a, 0xdf, 0xa8, 0x69, 0x46, 0x1c,
  2130. 0xb2, 0x69, 0x08, 0x0b, 0x02, 0x1b,
  2131. 0x03, 0x64, 0xae, 0xb6, 0x2d, 0xc6,
  2132. 0xc4, 0x0a ),
  2133. BIGINT ( 0x6d, 0x3f, 0xdd ),
  2134. BIGINT ( 0x40, 0x6e, 0x9d, 0x3e, 0xeb, 0xa4,
  2135. 0xb1, 0x8d, 0xb7, 0xb4, 0x0f, 0x5b,
  2136. 0x12, 0xad, 0x27, 0x9e, 0xbd, 0xe7,
  2137. 0xe5, 0x9d, 0xec, 0xb4, 0xac, 0x23,
  2138. 0x5f, 0xa9, 0xec, 0x9c, 0xd1, 0x6a,
  2139. 0xbe, 0x99, 0xba, 0xb3, 0x66, 0x0e,
  2140. 0x17, 0xaa, 0x13, 0xa2, 0x2e, 0x01,
  2141. 0x28, 0xb1, 0x6c, 0xba, 0xad, 0x68,
  2142. 0x48, 0xf0, 0xf3, 0x4c, 0x08, 0x9f,
  2143. 0xd1, 0x9c, 0xb7, 0x75, 0xc5, 0xb6,
  2144. 0x5a, 0x05, 0xb0, 0x14, 0xd4, 0x61,
  2145. 0xea, 0x18, 0x9f, 0xe6, 0xe5, 0xe3,
  2146. 0xd4, 0xff, 0x35, 0x43, 0x0b, 0xb8,
  2147. 0xf6, 0xe9, 0x19, 0x7a, 0x88, 0xa7,
  2148. 0x4d, 0x01, 0x92, 0x05, 0xd2, 0x6e,
  2149. 0xa3, 0xc1, 0xb6, 0x66, 0x75, 0xb1,
  2150. 0x00, 0x0d, 0x42, 0x37, 0xcc, 0xca,
  2151. 0xc0, 0x8d, 0xc8, 0x7e, 0x5c, 0xc9,
  2152. 0x53, 0x81, 0x2f, 0xc4, 0x61, 0xb6,
  2153. 0x96, 0x3b, 0xa5, 0x04, 0x14, 0x1b,
  2154. 0xa7, 0x77, 0xa1, 0xbc, 0x73, 0x1d,
  2155. 0xad, 0xed ) );
  2156. bigint_mod_exp_ok ( BIGINT ( 0x45, 0xfb, 0xf3, 0xdc, 0x31, 0xe5,
  2157. 0x56, 0x7a, 0xee, 0x15, 0xfb, 0x16,
  2158. 0xee, 0x6e, 0x90, 0x3e, 0xa3, 0x89,
  2159. 0xc2, 0x6d, 0x9b, 0x06, 0x65, 0xd0,
  2160. 0xcd, 0xa2, 0xcc, 0x01, 0x60, 0x0d,
  2161. 0xd1, 0xdd, 0x68, 0x14, 0xc2, 0xcd,
  2162. 0xd8, 0x79, 0x75, 0xad, 0x0a, 0x9f,
  2163. 0x39, 0x5f, 0x52, 0x4b, 0x58, 0x31,
  2164. 0x48, 0xbb, 0x2a, 0xcc, 0xe0, 0x42,
  2165. 0x18, 0x32, 0xdc, 0x63, 0x14, 0x11,
  2166. 0x4e, 0xab, 0x96, 0x29, 0xc5, 0x06,
  2167. 0x79, 0xe5, 0x06, 0xf7, 0x59, 0xdb,
  2168. 0x1e, 0x51, 0xfd, 0xc4, 0x48, 0x3a,
  2169. 0x4c, 0x7f, 0xd0, 0xe2, 0x36, 0x86,
  2170. 0xc1, 0x8b, 0xc5, 0x86, 0x52, 0xe0,
  2171. 0xdb, 0x92, 0x5f, 0x0e, 0x19, 0xb1,
  2172. 0xa3, 0x23, 0xdd, 0xf0, 0x78, 0xcc,
  2173. 0x81, 0x3f, 0x4a, 0xe6, 0xb0, 0x32,
  2174. 0xd1, 0x5c, 0x5e, 0x3a, 0xb0, 0xd8,
  2175. 0xe2, 0x04, 0xc0, 0x30, 0x85, 0x1d,
  2176. 0x5e, 0x28, 0xee, 0xd9, 0xb3, 0x83,
  2177. 0x9f, 0xe2 ),
  2178. BIGINT ( 0xb3, 0x2c, 0x2e, 0xc5, 0xba, 0xf8,
  2179. 0x41, 0x98, 0x79, 0x7e, 0xaa, 0x0c,
  2180. 0x2a, 0x8f, 0xd9, 0x56, 0x55, 0xaa,
  2181. 0x74, 0x60, 0x74, 0xd1, 0x49, 0x2c,
  2182. 0x6f, 0x0a, 0x4e, 0xf8, 0x3f, 0x1b,
  2183. 0x73, 0x4c, 0xe0, 0x17, 0x37, 0x06,
  2184. 0x76, 0x73, 0xd5, 0x2d, 0x4d, 0x3f,
  2185. 0xb0, 0x15, 0x7e, 0x98, 0xd0, 0xdf,
  2186. 0xf0, 0x33, 0x78, 0xe2, 0xe6, 0xec,
  2187. 0x21, 0x22, 0xad, 0xd5, 0xab, 0x2d,
  2188. 0x0d, 0x59, 0x95, 0x05, 0x34, 0x1f,
  2189. 0x51, 0xf5, 0xec, 0x93, 0x05, 0x15,
  2190. 0x37, 0xcf, 0x93, 0x03, 0xd7, 0xf6,
  2191. 0x35, 0x23, 0x8f, 0x33, 0xf6, 0xba,
  2192. 0x42, 0xc8, 0x52, 0x94, 0xd3, 0x33,
  2193. 0x3e, 0x39, 0x01, 0xd1, 0x55, 0x3f,
  2194. 0x48, 0x84, 0xe9, 0xbc, 0x0b, 0x0f,
  2195. 0xc9, 0x69, 0x41, 0x2c, 0x5f, 0x34,
  2196. 0xd0, 0xe6, 0x15, 0x50, 0x06, 0x64,
  2197. 0x5b, 0x8b, 0x71, 0x22, 0xb3, 0x3e,
  2198. 0x09, 0x9c, 0x76, 0x13, 0x9b, 0x29,
  2199. 0x57, 0x94 ),
  2200. BIGINT ( 0xca, 0x94, 0xf7, 0xca ),
  2201. BIGINT ( 0x83, 0x68, 0xb9, 0xe7, 0x91, 0xf3,
  2202. 0x3b, 0x5a, 0x0b, 0xb6, 0x1e, 0x2f,
  2203. 0x3f, 0x5f, 0xdc, 0x96, 0x5b, 0x7f,
  2204. 0x8d, 0xc5, 0x8e, 0xda, 0x6e, 0x21,
  2205. 0xe3, 0x20, 0xea, 0x37, 0x39, 0x3b,
  2206. 0xb4, 0xd7, 0xf6, 0xba, 0x61, 0xfe,
  2207. 0xdc, 0x7e, 0x82, 0x9a, 0x38, 0x7b,
  2208. 0xd5, 0xb1, 0x11, 0x98, 0xc4, 0x88,
  2209. 0x0b, 0x01, 0x7d, 0x81, 0xc9, 0x64,
  2210. 0x23, 0xc3, 0x3e, 0xf3, 0x67, 0x95,
  2211. 0x78, 0xca, 0xda, 0x52, 0xaf, 0x72,
  2212. 0x25, 0xd9, 0xf0, 0x27, 0xd3, 0x1c,
  2213. 0xfb, 0xad, 0xa1, 0xa7, 0x06, 0x2f,
  2214. 0xaa, 0x2f, 0x86, 0x5c, 0x8b, 0x30,
  2215. 0xe1, 0xda, 0x5a, 0x36, 0xf9, 0xfd,
  2216. 0xbf, 0xfe, 0x0d, 0x03, 0xf8, 0x9c,
  2217. 0x6b, 0x9b, 0xe5, 0x70, 0x6d, 0x75,
  2218. 0xd7, 0x54, 0x28, 0x43, 0x34, 0x69,
  2219. 0x98, 0x11, 0x29, 0xee, 0x50, 0x06,
  2220. 0xa4, 0xc4, 0x11, 0x6d, 0x60, 0x8c,
  2221. 0xcd, 0xd1, 0x88, 0xe9, 0x6b, 0xbb,
  2222. 0xc1, 0xd4 ) );
  2223. bigint_mod_exp_ok ( BIGINT ( 0xa1, 0x01, 0x7e, 0xb4, 0x0e, 0x66,
  2224. 0xa5, 0x07, 0x8b, 0x10, 0x84, 0x0d,
  2225. 0x30, 0x0a, 0xa4, 0x2d, 0x10, 0x2c,
  2226. 0xd4, 0x9a, 0x27, 0xf1, 0x02, 0x8c,
  2227. 0x38, 0x18, 0x7f, 0x7f, 0x95, 0x65,
  2228. 0xf1, 0xa9, 0x3b, 0x7d, 0x1f, 0x4f,
  2229. 0x88, 0xb0, 0x65, 0x62, 0x63, 0x63,
  2230. 0xaa, 0x82, 0xfc, 0x83, 0x3a, 0x3a,
  2231. 0x46, 0x59, 0x6a, 0x89, 0xec, 0xa9,
  2232. 0xb0, 0x4c, 0x5e, 0xbe, 0x46, 0x98,
  2233. 0xd0, 0xd4, 0xb7, 0xe3, 0x1b, 0x30,
  2234. 0x0b, 0xfb, 0xbb, 0x4f, 0x0b, 0xd3,
  2235. 0xe4, 0xa0, 0x80, 0x54, 0xcb, 0x52,
  2236. 0x0a, 0xe8, 0x03, 0x75, 0x8e, 0x96,
  2237. 0xa4, 0x21, 0xaa, 0xbd, 0x7a, 0xfd,
  2238. 0xfa, 0xf8, 0xaf, 0x42, 0xf6, 0x61,
  2239. 0xd2, 0x93, 0xce, 0x66, 0x67, 0xe9,
  2240. 0x02, 0xda, 0x81, 0x0b, 0xb0, 0x1e,
  2241. 0x9e, 0x27, 0x57, 0x98, 0x18, 0x88,
  2242. 0x35, 0x49, 0xc0, 0x88, 0x88, 0x59,
  2243. 0xae, 0x2f, 0x66, 0x59, 0x31, 0x87,
  2244. 0x88, 0xda ),
  2245. BIGINT ( 0xfe, 0x21, 0x7c, 0xf4, 0xbe, 0xae,
  2246. 0x65, 0xda, 0x89, 0xd2, 0x26, 0xd6,
  2247. 0x9c, 0x65, 0xc6, 0xb6, 0xb4, 0x0a,
  2248. 0x84, 0x11, 0xe1, 0xe8, 0xba, 0xd8,
  2249. 0x16, 0xcf, 0x60, 0x6c, 0x83, 0xa5,
  2250. 0x4a, 0xbf, 0xa2, 0x24, 0x0b, 0x66,
  2251. 0xda, 0xe2, 0x4e, 0x2d, 0xe5, 0x9e,
  2252. 0xbf, 0xad, 0x5c, 0xa3, 0x1e, 0x5c,
  2253. 0xbd, 0xe2, 0x5b, 0x46, 0xcf, 0xcc,
  2254. 0xd5, 0xc9, 0x13, 0x95, 0xc3, 0xdb,
  2255. 0x64, 0xbf, 0xeb, 0x31, 0xa9, 0x8a,
  2256. 0x3b, 0xd2, 0x5d, 0x3b, 0x2e, 0xdc,
  2257. 0x0c, 0xca, 0xab, 0xde, 0x92, 0xae,
  2258. 0x45, 0x35, 0x96, 0xb0, 0xb7, 0xb9,
  2259. 0xe6, 0xfe, 0x28, 0x0d, 0x10, 0x72,
  2260. 0x53, 0x8e, 0x21, 0xc0, 0x33, 0x79,
  2261. 0x01, 0x43, 0x8d, 0x77, 0xc4, 0xaa,
  2262. 0xcf, 0x7f, 0xc3, 0xd1, 0xf5, 0xfd,
  2263. 0x79, 0x81, 0xf6, 0x2e, 0xb7, 0xeb,
  2264. 0x55, 0x5f, 0x74, 0xf0, 0x3a, 0xb9,
  2265. 0x57, 0x07, 0x09, 0x97, 0xa5, 0x4c,
  2266. 0x4a, 0x85 ),
  2267. BIGINT ( 0xd9, 0xb7, 0xb2, 0xd6, 0xeb, 0xf3,
  2268. 0x66, 0xbe, 0x15, 0x64, 0xad, 0x2e,
  2269. 0x9e, 0xc6, 0xaf, 0x5e, 0xaf, 0x40,
  2270. 0x1e, 0x90, 0x82, 0x2f, 0x98 ),
  2271. BIGINT ( 0x12, 0x48, 0x31, 0x7f, 0x09, 0xbb,
  2272. 0x8f, 0xd9, 0x02, 0x7e, 0x4a, 0xd0,
  2273. 0x2f, 0x42, 0x7c, 0x17, 0x6e, 0x83,
  2274. 0x74, 0x21, 0x95, 0x47, 0x7d, 0x93,
  2275. 0x4a, 0xce, 0x34, 0x7c, 0xde, 0xc7,
  2276. 0x8f, 0xf6, 0x28, 0x97, 0xba, 0x81,
  2277. 0x9b, 0xcc, 0x54, 0x14, 0x7f, 0xd3,
  2278. 0x93, 0x66, 0x41, 0x8c, 0x0e, 0x47,
  2279. 0xee, 0xc5, 0x5e, 0xd6, 0x5f, 0x01,
  2280. 0x62, 0x97, 0xf1, 0x2b, 0xee, 0x60,
  2281. 0x5e, 0x82, 0x2c, 0x7b, 0x0a, 0xf2,
  2282. 0xc3, 0x23, 0xbf, 0xb9, 0x83, 0xf7,
  2283. 0x97, 0xf5, 0xca, 0x58, 0xd7, 0xf0,
  2284. 0x87, 0x7b, 0xcb, 0x87, 0x69, 0x42,
  2285. 0xbc, 0x05, 0xc4, 0xad, 0xbd, 0x82,
  2286. 0xcf, 0x44, 0x16, 0x4f, 0x46, 0xe0,
  2287. 0xde, 0x2f, 0xfa, 0x77, 0xec, 0xa4,
  2288. 0x23, 0x7d, 0x47, 0x3e, 0x94, 0x19,
  2289. 0x8b, 0xb8, 0x84, 0x81, 0x80, 0x6c,
  2290. 0x1e, 0x31, 0xa3, 0x6d, 0x14, 0x94,
  2291. 0x57, 0x28, 0x99, 0x08, 0x0a, 0xa7,
  2292. 0x98, 0x4b ) );
  2293. bigint_mod_exp_ok ( BIGINT ( 0xda, 0x52, 0xfd, 0x44, 0x5d, 0x11,
  2294. 0x60, 0x6c, 0xec, 0x87, 0xbf, 0x19,
  2295. 0xb8, 0x46, 0xaa, 0x41, 0xfc, 0x10,
  2296. 0xae, 0x47, 0xd6, 0x72, 0x42, 0x57,
  2297. 0xc3, 0x05, 0xca, 0xe3, 0x59, 0x94,
  2298. 0x82, 0x7c, 0xa1, 0xe0, 0xd2, 0x6b,
  2299. 0x77, 0x71, 0x42, 0xa1, 0xf7, 0x84,
  2300. 0xae, 0xf4, 0x6f, 0x44, 0x0d, 0x88,
  2301. 0xa2, 0xc5, 0x45, 0x9b, 0x49, 0x36,
  2302. 0xd4, 0x20, 0x3a, 0x7c, 0x92, 0xdb,
  2303. 0x65, 0xd9, 0x20, 0xd6, 0x71, 0x22,
  2304. 0x90, 0x70, 0xbf, 0xf3, 0x17, 0xe8,
  2305. 0x2c, 0x10, 0xe9, 0x4c, 0x02, 0x69,
  2306. 0x37, 0xa2, 0x91, 0x04, 0x46, 0x11,
  2307. 0xdc, 0xab, 0x5b, 0x1e, 0x3e, 0x31,
  2308. 0xd8, 0x69, 0xf8, 0x48, 0x84, 0x1f,
  2309. 0x56, 0x46, 0xf1, 0xc0, 0x14, 0x3f,
  2310. 0xcc, 0x5d, 0xe2, 0xf7, 0x8b, 0xa4,
  2311. 0x9e, 0x94, 0x32, 0xaa, 0x3c, 0x5e,
  2312. 0x21, 0x70, 0x00, 0x24, 0x2a, 0x1b,
  2313. 0xec, 0x25, 0xb1, 0xb6, 0x83, 0x36,
  2314. 0x5a, 0x95 ),
  2315. BIGINT ( 0x5e, 0xdc, 0x71, 0x1f, 0x5b, 0x55,
  2316. 0xaa, 0xda, 0x56, 0xf5, 0x93, 0x9b,
  2317. 0xe8, 0xfc, 0x6a, 0x80, 0xe1, 0xe3,
  2318. 0x93, 0xe4, 0xc0, 0x58, 0x6f, 0x22,
  2319. 0xce, 0x9d, 0x6f, 0x84, 0x4c, 0xd4,
  2320. 0x12, 0x44, 0x57, 0x25, 0xca, 0xe5,
  2321. 0x2b, 0x7c, 0x35, 0x88, 0xc7, 0x38,
  2322. 0x25, 0x20, 0x9b, 0x57, 0xf2, 0xf2,
  2323. 0x6c, 0x28, 0x47, 0x9c, 0x3f, 0x91,
  2324. 0x1e, 0x3f, 0xe9, 0xeb, 0x50, 0xd6,
  2325. 0xa7, 0x22, 0x88, 0x6c, 0x71, 0xe5,
  2326. 0x62, 0x2a, 0xb7, 0xce, 0xbe, 0xf7,
  2327. 0x1a, 0x8c, 0x52, 0xa6, 0xff, 0xb8,
  2328. 0x34, 0x83, 0x7e, 0x04, 0xa8, 0x9c,
  2329. 0xa8, 0xa7, 0xd1, 0x05, 0x8e, 0x13,
  2330. 0x03, 0xe0, 0x49, 0xd8, 0x4a, 0xc4,
  2331. 0x4d, 0x38, 0x21, 0x5b, 0x62, 0xc2,
  2332. 0x38, 0x23, 0x7c, 0x9e, 0xf1, 0xe9,
  2333. 0xb6, 0x9a, 0x75, 0x42, 0x14, 0x99,
  2334. 0x63, 0x36, 0x13, 0x4c, 0x2d, 0x3a,
  2335. 0x77, 0xd4, 0x74, 0xb7, 0x30, 0xb2,
  2336. 0x00, 0x0f ),
  2337. BIGINT ( 0xe3, 0xe5, 0x3b, 0xb5, 0x92, 0x5a,
  2338. 0xc6, 0xfa, 0x8f, 0xe8, 0x00, 0xb9,
  2339. 0x5c, 0xa0, 0xb6, 0x3e, 0x5e, 0x14,
  2340. 0x12, 0xa9, 0xdd, 0x2a, 0x3d, 0x4d,
  2341. 0xa3, 0x91, 0x6a, 0x56, 0x99, 0xc2,
  2342. 0x6c, 0x8e, 0xda, 0xb0, 0x5a, 0x2a,
  2343. 0x37, 0x55, 0x8b, 0xd3, 0x9b, 0xb6,
  2344. 0x1d, 0x49, 0x7d, 0x81, 0x76, 0x1c,
  2345. 0x2e, 0xb9, 0x92, 0x6d, 0xfa, 0x54,
  2346. 0x53, 0xfc, 0x74, 0x9b, 0x6b, 0x63,
  2347. 0x95, 0x1a, 0x89, 0xcc, 0xbd, 0x36,
  2348. 0xc5, 0x31, 0x7f, 0xf5, 0x31, 0x69,
  2349. 0x40, 0xd5, 0x7b, 0x94, 0x5d, 0xa9,
  2350. 0xd1, 0x34, 0x95, 0xa1, 0x8b, 0xa5,
  2351. 0xb5, 0x83, 0xda, 0xb5, 0x9d, 0x5b,
  2352. 0x74, 0x41, 0xad, 0x81, 0x45, 0x40,
  2353. 0x9b, 0xc3, 0xe8, 0xfe, 0x47, 0xdc,
  2354. 0xb0, 0xc3, 0x34, 0x5d, 0xf6, 0x3c,
  2355. 0x1d, 0x07, 0x76, 0xd9, 0x25, 0xca,
  2356. 0xa2, 0x39, 0x6c, 0xa8, 0xae, 0x30,
  2357. 0x4a, 0xde, 0xfb, 0xeb, 0x19, 0x80,
  2358. 0x5e, 0x49 ),
  2359. BIGINT ( 0x4b, 0x0e, 0x74, 0xb8, 0xa7, 0x92,
  2360. 0x74, 0xd9, 0x50, 0xf6, 0x1b, 0x67,
  2361. 0x76, 0x76, 0x56, 0x6c, 0x09, 0x9c,
  2362. 0x01, 0xda, 0xaf, 0xa3, 0xca, 0xb2,
  2363. 0x12, 0x85, 0x52, 0x24, 0xe9, 0x7e,
  2364. 0x2b, 0xf2, 0x6e, 0xe9, 0x1a, 0x10,
  2365. 0x5d, 0xa0, 0x25, 0x46, 0x8f, 0x2a,
  2366. 0x95, 0x62, 0x50, 0xb6, 0x66, 0x43,
  2367. 0x37, 0x8b, 0xcb, 0x05, 0xf8, 0x61,
  2368. 0x59, 0xf9, 0xdd, 0xd2, 0x68, 0x72,
  2369. 0xfa, 0x88, 0x13, 0x36, 0xd8, 0x24,
  2370. 0x73, 0xec, 0x47, 0x44, 0xdd, 0x45,
  2371. 0x8a, 0x59, 0xd2, 0xbd, 0x43, 0xe3,
  2372. 0x05, 0x16, 0xd5, 0x9b, 0x1c, 0x8a,
  2373. 0x4b, 0x07, 0xda, 0x58, 0x0d, 0x4a,
  2374. 0x4e, 0xe7, 0x15, 0xfc, 0xbd, 0x95,
  2375. 0xf7, 0x18, 0xa5, 0xa7, 0x93, 0xff,
  2376. 0xf8, 0x1f, 0xd4, 0x6b, 0x07, 0xc6,
  2377. 0x5d, 0x90, 0x73, 0x57, 0x57, 0x37,
  2378. 0xfa, 0x83, 0xd4, 0x7c, 0xe9, 0x77,
  2379. 0x46, 0x91, 0x3a, 0x50, 0x0d, 0x6a,
  2380. 0x25, 0xd0 ) );
  2381. }
  2382. /** Big integer self-test */
  2383. struct self_test bigint_test __self_test = {
  2384. .name = "bigint",
  2385. .exec = bigint_test_exec,
  2386. };