This website works better with JavaScript.
Home
Help
Register
Sign In
leviathan
/
openssl
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
This commit was generated by cvs2svn to track changes on a CVS vendor
branch.
master
Ralf S. Engelschall
24 years ago
parent
78414a6a89
15403de6ca
commit
7dfb0b774e
3 changed files
with
12 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+12
-0
crypto/bn/asm/......add.c
BIN
ms/.rnd
BIN
test/.rnd
+ 12
- 0
crypto/bn/asm/......add.c
View 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
]
)
;
}
BIN
ms/.rnd
View File
BIN
test/.rnd
View File
Write
Preview
Loading…
Cancel
Save