Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
4be41680
Commit
4be41680
authored
Jan 21, 2009
by
Andrew Talbot
Committed by
Alexandre Julliard
Jan 22, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rsaenh: Declare some functions static.
parent
2a0e6593
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
18 deletions
+0
-18
mpi.c
dlls/rsaenh/mpi.c
+0
-0
tomcrypt.h
dlls/rsaenh/tomcrypt.h
+0
-18
No files found.
dlls/rsaenh/mpi.c
View file @
4be41680
This diff is collapsed.
Click to expand it.
dlls/rsaenh/tomcrypt.h
View file @
4be41680
...
...
@@ -278,18 +278,6 @@ void mp_clamp(mp_int *a);
/* right shift by "b" digits */
void
mp_rshd
(
mp_int
*
a
,
int
b
);
/* left shift by "b" digits */
int
mp_lshd
(
mp_int
*
a
,
int
b
);
/* c = a * 2**b */
int
mp_mul_2d
(
const
mp_int
*
a
,
int
b
,
mp_int
*
c
);
/* b = a*2 */
int
mp_mul_2
(
const
mp_int
*
a
,
mp_int
*
b
);
/* c = a mod 2**d */
int
mp_mod_2d
(
const
mp_int
*
a
,
int
b
,
mp_int
*
c
);
/* computes a = 2**b */
int
mp_2expt
(
mp_int
*
a
,
int
b
);
...
...
@@ -351,18 +339,12 @@ int mp_add_d(mp_int *a, mp_digit b, mp_int *c);
/* c = a - b */
int
mp_sub_d
(
mp_int
*
a
,
mp_digit
b
,
mp_int
*
c
);
/* c = a * b */
int
mp_mul_d
(
const
mp_int
*
a
,
mp_digit
b
,
mp_int
*
c
);
/* a/3 => 3c + d == a */
int
mp_div_3
(
mp_int
*
a
,
mp_int
*
c
,
mp_digit
*
d
);
/* c = a**b */
int
mp_expt_d
(
mp_int
*
a
,
mp_digit
b
,
mp_int
*
c
);
/* c = a mod b, 0 <= c < b */
int
mp_mod_d
(
const
mp_int
*
a
,
mp_digit
b
,
mp_digit
*
c
);
/* ---> number theory <--- */
/* d = a + b (mod c) */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment