mirror of
https://github.com/openssl/openssl.git
synced 2024-11-25 02:53:30 +08:00
This commit was generated by cvs2svn to track changes on a CVS vendor
branch.
This commit is contained in:
commit
7dfb0b774e
12
crypto/bn/asm/......add.c
Normal file
12
crypto/bn/asm/......add.c
Normal file
@ -0,0 +1,12 @@
|
||||
#include <stdio.h>
|
||||
{
|
||||
unsigned long a[10],b[10],c[10];
|
||||
|
||||
a[0]=0xFFFFFFFF;
|
||||
a[1]=0xFFFFFFFF;
|
||||
b[0]=0xFFFFFFFF;
|
||||
b[1]=0xFFFFFFFF;
|
||||
|
||||
c[2]=bn_add_words(c,a,b,2);
|
||||
printf("%08X %08X %08X\n",c[2],c[1],c[0]);
|
||||
}
|
Loading…
Reference in New Issue
Block a user