Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
f2451be0
Commit
f2451be0
authored
Nov 23, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bcrypt: Remove DECLSPEC_HIDDEN usage.
parent
2863311d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
bcrypt_internal.h
dlls/bcrypt/bcrypt_internal.h
+11
-11
No files found.
dlls/bcrypt/bcrypt_internal.h
View file @
f2451be0
...
@@ -39,9 +39,9 @@ typedef struct
...
@@ -39,9 +39,9 @@ typedef struct
UCHAR
buf
[
64
];
UCHAR
buf
[
64
];
}
SHA256_CTX
;
}
SHA256_CTX
;
void
sha256_init
(
SHA256_CTX
*
ctx
)
DECLSPEC_HIDDEN
;
void
sha256_init
(
SHA256_CTX
*
ctx
);
void
sha256_update
(
SHA256_CTX
*
ctx
,
const
UCHAR
*
buffer
,
ULONG
len
)
DECLSPEC_HIDDEN
;
void
sha256_update
(
SHA256_CTX
*
ctx
,
const
UCHAR
*
buffer
,
ULONG
len
);
void
sha256_finalize
(
SHA256_CTX
*
ctx
,
UCHAR
*
buffer
)
DECLSPEC_HIDDEN
;
void
sha256_finalize
(
SHA256_CTX
*
ctx
,
UCHAR
*
buffer
);
typedef
struct
typedef
struct
{
{
...
@@ -50,22 +50,22 @@ typedef struct
...
@@ -50,22 +50,22 @@ typedef struct
UCHAR
buf
[
128
];
UCHAR
buf
[
128
];
}
SHA512_CTX
;
}
SHA512_CTX
;
void
sha512_init
(
SHA512_CTX
*
ctx
)
DECLSPEC_HIDDEN
;
void
sha512_init
(
SHA512_CTX
*
ctx
);
void
sha512_update
(
SHA512_CTX
*
ctx
,
const
UCHAR
*
buffer
,
ULONG
len
)
DECLSPEC_HIDDEN
;
void
sha512_update
(
SHA512_CTX
*
ctx
,
const
UCHAR
*
buffer
,
ULONG
len
);
void
sha512_finalize
(
SHA512_CTX
*
ctx
,
UCHAR
*
buffer
)
DECLSPEC_HIDDEN
;
void
sha512_finalize
(
SHA512_CTX
*
ctx
,
UCHAR
*
buffer
);
void
sha384_init
(
SHA512_CTX
*
ctx
)
DECLSPEC_HIDDEN
;
void
sha384_init
(
SHA512_CTX
*
ctx
);
#define sha384_update sha512_update
#define sha384_update sha512_update
void
sha384_finalize
(
SHA512_CTX
*
ctx
,
UCHAR
*
buffer
)
DECLSPEC_HIDDEN
;
void
sha384_finalize
(
SHA512_CTX
*
ctx
,
UCHAR
*
buffer
);
typedef
struct
{
typedef
struct
{
unsigned
char
chksum
[
16
],
X
[
48
],
buf
[
16
];
unsigned
char
chksum
[
16
],
X
[
48
],
buf
[
16
];
unsigned
long
curlen
;
unsigned
long
curlen
;
}
MD2_CTX
;
}
MD2_CTX
;
void
md2_init
(
MD2_CTX
*
ctx
)
DECLSPEC_HIDDEN
;
void
md2_init
(
MD2_CTX
*
ctx
);
void
md2_update
(
MD2_CTX
*
ctx
,
const
unsigned
char
*
buf
,
ULONG
len
)
DECLSPEC_HIDDEN
;
void
md2_update
(
MD2_CTX
*
ctx
,
const
unsigned
char
*
buf
,
ULONG
len
);
void
md2_finalize
(
MD2_CTX
*
ctx
,
unsigned
char
*
hash
)
DECLSPEC_HIDDEN
;
void
md2_finalize
(
MD2_CTX
*
ctx
,
unsigned
char
*
hash
);
/* Definitions from advapi32 */
/* Definitions from advapi32 */
typedef
struct
tagMD4_CTX
{
typedef
struct
tagMD4_CTX
{
...
...
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