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
d8f37d0a
Commit
d8f37d0a
authored
Nov 08, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Nov 08, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rsaenh: Remove DECLSPEC_HIDDEN usage.
parent
ee211f34
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
24 deletions
+22
-24
handle.h
dlls/rsaenh/handle.h
+7
-7
implglue.h
dlls/rsaenh/implglue.h
+15
-17
No files found.
dlls/rsaenh/handle.h
View file @
d8f37d0a
...
...
@@ -56,15 +56,15 @@ struct handle_table
CRITICAL_SECTION
mutex
;
};
void
init_handle_table
(
struct
handle_table
*
lpTable
)
DECLSPEC_HIDDEN
;
void
destroy_handle_table
(
struct
handle_table
*
lpTable
)
DECLSPEC_HIDDEN
;
BOOL
release_handle
(
struct
handle_table
*
lpTable
,
HCRYPTKEY
handle
,
DWORD
dwType
)
DECLSPEC_HIDDEN
;
BOOL
copy_handle
(
struct
handle_table
*
lpTable
,
HCRYPTKEY
handle
,
DWORD
dwType
,
HCRYPTKEY
*
copy
)
DECLSPEC_HIDDEN
;
BOOL
lookup_handle
(
struct
handle_table
*
lpTable
,
HCRYPTKEY
handle
,
DWORD
dwType
,
OBJECTHDR
**
lplpObject
)
DECLSPEC_HIDDEN
;
BOOL
is_valid_handle
(
struct
handle_table
*
lpTable
,
HCRYPTKEY
handle
,
DWORD
dwType
)
DECLSPEC_HIDDEN
;
void
init_handle_table
(
struct
handle_table
*
lpTable
);
void
destroy_handle_table
(
struct
handle_table
*
lpTable
);
BOOL
release_handle
(
struct
handle_table
*
lpTable
,
HCRYPTKEY
handle
,
DWORD
dwType
);
BOOL
copy_handle
(
struct
handle_table
*
lpTable
,
HCRYPTKEY
handle
,
DWORD
dwType
,
HCRYPTKEY
*
copy
);
BOOL
lookup_handle
(
struct
handle_table
*
lpTable
,
HCRYPTKEY
handle
,
DWORD
dwType
,
OBJECTHDR
**
lplpObject
);
BOOL
is_valid_handle
(
struct
handle_table
*
lpTable
,
HCRYPTKEY
handle
,
DWORD
dwType
);
HCRYPTKEY
new_object
(
struct
handle_table
*
lpTable
,
size_t
cbSize
,
DWORD
dwType
,
DESTRUCTOR
destructor
,
OBJECTHDR
**
ppObject
)
DECLSPEC_HIDDEN
;
OBJECTHDR
**
ppObject
);
#ifdef __cplusplus
}
...
...
dlls/rsaenh/implglue.h
View file @
d8f37d0a
...
...
@@ -38,34 +38,32 @@ typedef union tagKEY_CONTEXT {
rsa_key
rsa
;
}
KEY_CONTEXT
;
BOOL
init_hash_impl
(
ALG_ID
aiAlgid
,
BCRYPT_HASH_HANDLE
*
hash_handle
)
DECLSPEC_HIDDEN
;
BOOL
update_hash_impl
(
BCRYPT_HASH_HANDLE
hash_handle
,
const
BYTE
*
pbData
,
DWORD
dwDataLen
)
DECLSPEC_HIDDEN
;
BOOL
finalize_hash_impl
(
BCRYPT_HASH_HANDLE
hash_handle
,
BYTE
*
hash_value
,
DWORD
hash_size
)
DECLSPEC_HIDDEN
;
BOOL
duplicate_hash_impl
(
BCRYPT_HASH_HANDLE
src_hash_handle
,
BCRYPT_HASH_HANDLE
*
dest_hash_handle
)
DECLSPEC_HIDDEN
;
BOOL
init_hash_impl
(
ALG_ID
aiAlgid
,
BCRYPT_HASH_HANDLE
*
hash_handle
);
BOOL
update_hash_impl
(
BCRYPT_HASH_HANDLE
hash_handle
,
const
BYTE
*
pbData
,
DWORD
dwDataLen
);
BOOL
finalize_hash_impl
(
BCRYPT_HASH_HANDLE
hash_handle
,
BYTE
*
hash_value
,
DWORD
hash_size
);
BOOL
duplicate_hash_impl
(
BCRYPT_HASH_HANDLE
src_hash_handle
,
BCRYPT_HASH_HANDLE
*
dest_hash_handle
);
BOOL
new_key_impl
(
ALG_ID
aiAlgid
,
KEY_CONTEXT
*
pKeyContext
,
DWORD
dwKeyLen
)
DECLSPEC_HIDDEN
;
BOOL
free_key_impl
(
ALG_ID
aiAlgid
,
KEY_CONTEXT
*
pKeyContext
)
DECLSPEC_HIDDEN
;
BOOL
new_key_impl
(
ALG_ID
aiAlgid
,
KEY_CONTEXT
*
pKeyContext
,
DWORD
dwKeyLen
);
BOOL
free_key_impl
(
ALG_ID
aiAlgid
,
KEY_CONTEXT
*
pKeyContext
);
BOOL
setup_key_impl
(
ALG_ID
aiAlgid
,
KEY_CONTEXT
*
pKeyContext
,
DWORD
dwKeyLen
,
DWORD
dwEffectiveKeyLen
,
DWORD
dwSaltLen
,
BYTE
*
abKeyValue
)
DECLSPEC_HIDDEN
;
DWORD
dwEffectiveKeyLen
,
DWORD
dwSaltLen
,
BYTE
*
abKeyValue
);
BOOL
duplicate_key_impl
(
ALG_ID
aiAlgid
,
const
KEY_CONTEXT
*
pSrcKeyContext
,
KEY_CONTEXT
*
pDestKeyContext
)
DECLSPEC_HIDDEN
;
KEY_CONTEXT
*
pDestKeyContext
);
/* dwKeySpec is optional for symmetric key algorithms */
BOOL
encrypt_block_impl
(
ALG_ID
aiAlgid
,
DWORD
dwKeySpec
,
KEY_CONTEXT
*
pKeyContext
,
const
BYTE
*
pbIn
,
BYTE
*
pbOut
,
DWORD
enc
)
DECLSPEC_HIDDEN
;
BOOL
encrypt_stream_impl
(
ALG_ID
aiAlgid
,
KEY_CONTEXT
*
pKeyContext
,
BYTE
*
pbInOut
,
DWORD
dwLen
)
DECLSPEC_HIDDEN
;
BYTE
*
pbOut
,
DWORD
enc
);
BOOL
encrypt_stream_impl
(
ALG_ID
aiAlgid
,
KEY_CONTEXT
*
pKeyContext
,
BYTE
*
pbInOut
,
DWORD
dwLen
);
BOOL
export_public_key_impl
(
BYTE
*
pbDest
,
const
KEY_CONTEXT
*
pKeyContext
,
DWORD
dwKeyLen
,
DWORD
*
pdwPubExp
)
DECLSPEC_HIDDEN
;
DWORD
*
pdwPubExp
);
BOOL
import_public_key_impl
(
const
BYTE
*
pbSrc
,
KEY_CONTEXT
*
pKeyContext
,
DWORD
dwKeyLen
,
DWORD
dwPubExp
)
DECLSPEC_HIDDEN
;
DWORD
dwPubExp
);
BOOL
export_private_key_impl
(
BYTE
*
pbDest
,
const
KEY_CONTEXT
*
pKeyContext
,
DWORD
dwKeyLen
,
DWORD
*
pdwPubExp
)
DECLSPEC_HIDDEN
;
DWORD
*
pdwPubExp
);
BOOL
import_private_key_impl
(
const
BYTE
*
pbSrc
,
KEY_CONTEXT
*
pKeyContext
,
DWORD
dwKeyLen
,
DWORD
dwDataLen
,
DWORD
dwPubExp
)
DECLSPEC_HIDDEN
;
DWORD
dwDataLen
,
DWORD
dwPubExp
);
BOOL
gen_rand_impl
(
BYTE
*
pbBuffer
,
DWORD
dwLen
)
DECLSPEC_HIDDEN
;
BOOL
gen_rand_impl
(
BYTE
*
pbBuffer
,
DWORD
dwLen
);
#endif
/* __WINE_IMPLGLUE_H */
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