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
de379263
Commit
de379263
authored
May 13, 2011
by
Marcus Meissner
Committed by
Alexandre Julliard
May 24, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rsaenh: First part of marking internal symbols with hidden visibility.
parent
4af30811
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
22 deletions
+22
-22
handle.h
dlls/rsaenh/handle.h
+7
-7
implglue.h
dlls/rsaenh/implglue.h
+15
-15
No files found.
dlls/rsaenh/handle.h
View file @
de379263
...
...
@@ -56,15 +56,15 @@ struct handle_table
CRITICAL_SECTION
mutex
;
};
void
init_handle_table
(
struct
handle_table
*
lpTable
);
void
destroy_handle_table
(
struct
handle_table
*
lpTable
);
int
release_handle
(
struct
handle_table
*
lpTable
,
HCRYPTKEY
handle
,
DWORD
dwType
);
int
copy_handle
(
struct
handle_table
*
lpTable
,
HCRYPTKEY
handle
,
DWORD
dwType
,
HCRYPTKEY
*
copy
);
int
lookup_handle
(
struct
handle_table
*
lpTable
,
HCRYPTKEY
handle
,
DWORD
dwType
,
OBJECTHDR
**
lplpObject
);
int
is_valid_handle
(
struct
handle_table
*
lpTable
,
HCRYPTKEY
handle
,
DWORD
dwType
);
void
init_handle_table
(
struct
handle_table
*
lpTable
)
DECLSPEC_HIDDEN
;
void
destroy_handle_table
(
struct
handle_table
*
lpTable
)
DECLSPEC_HIDDEN
;
int
release_handle
(
struct
handle_table
*
lpTable
,
HCRYPTKEY
handle
,
DWORD
dwType
)
DECLSPEC_HIDDEN
;
int
copy_handle
(
struct
handle_table
*
lpTable
,
HCRYPTKEY
handle
,
DWORD
dwType
,
HCRYPTKEY
*
copy
)
DECLSPEC_HIDDEN
;
int
lookup_handle
(
struct
handle_table
*
lpTable
,
HCRYPTKEY
handle
,
DWORD
dwType
,
OBJECTHDR
**
lplpObject
)
DECLSPEC_HIDDEN
;
int
is_valid_handle
(
struct
handle_table
*
lpTable
,
HCRYPTKEY
handle
,
DWORD
dwType
)
DECLSPEC_HIDDEN
;
HCRYPTKEY
new_object
(
struct
handle_table
*
lpTable
,
size_t
cbSize
,
DWORD
dwType
,
DESTRUCTOR
destructor
,
OBJECTHDR
**
ppObject
);
OBJECTHDR
**
ppObject
)
DECLSPEC_HIDDEN
;
#ifdef __cplusplus
}
...
...
dlls/rsaenh/implglue.h
View file @
de379263
...
...
@@ -72,34 +72,34 @@ typedef union tagKEY_CONTEXT {
rsa_key
rsa
;
}
KEY_CONTEXT
;
BOOL
init_hash_impl
(
ALG_ID
aiAlgid
,
HASH_CONTEXT
*
pHashContext
);
BOOL
init_hash_impl
(
ALG_ID
aiAlgid
,
HASH_CONTEXT
*
pHashContext
)
DECLSPEC_HIDDEN
;
BOOL
update_hash_impl
(
ALG_ID
aiAlgid
,
HASH_CONTEXT
*
pHashContext
,
CONST
BYTE
*
pbData
,
DWORD
dwDataLen
);
BOOL
finalize_hash_impl
(
ALG_ID
aiAlgid
,
HASH_CONTEXT
*
pHashContext
,
BYTE
*
pbHashValue
);
DWORD
dwDataLen
)
DECLSPEC_HIDDEN
;
BOOL
finalize_hash_impl
(
ALG_ID
aiAlgid
,
HASH_CONTEXT
*
pHashContext
,
BYTE
*
pbHashValue
)
DECLSPEC_HIDDEN
;
BOOL
duplicate_hash_impl
(
ALG_ID
aiAlgid
,
CONST
HASH_CONTEXT
*
pSrcHashContext
,
HASH_CONTEXT
*
pDestHashContext
);
HASH_CONTEXT
*
pDestHashContext
)
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
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
setup_key_impl
(
ALG_ID
aiAlgid
,
KEY_CONTEXT
*
pKeyContext
,
DWORD
dwKeyLen
,
DWORD
dwEffectiveKeyLen
,
DWORD
dwSaltLen
,
BYTE
*
abKeyValue
);
DWORD
dwEffectiveKeyLen
,
DWORD
dwSaltLen
,
BYTE
*
abKeyValue
)
DECLSPEC_HIDDEN
;
BOOL
duplicate_key_impl
(
ALG_ID
aiAlgid
,
CONST
KEY_CONTEXT
*
pSrcKeyContext
,
KEY_CONTEXT
*
pDestKeyContext
);
KEY_CONTEXT
*
pDestKeyContext
)
DECLSPEC_HIDDEN
;
/* 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
);
BOOL
encrypt_stream_impl
(
ALG_ID
aiAlgid
,
KEY_CONTEXT
*
pKeyContext
,
BYTE
*
pbInOut
,
DWORD
dwLen
);
DWORD
enc
)
DECLSPEC_HIDDEN
;
BOOL
encrypt_stream_impl
(
ALG_ID
aiAlgid
,
KEY_CONTEXT
*
pKeyContext
,
BYTE
*
pbInOut
,
DWORD
dwLen
)
DECLSPEC_HIDDEN
;
BOOL
export_public_key_impl
(
BYTE
*
pbDest
,
const
KEY_CONTEXT
*
pKeyContext
,
DWORD
dwKeyLen
,
DWORD
*
pdwPubExp
);
DWORD
*
pdwPubExp
)
DECLSPEC_HIDDEN
;
BOOL
import_public_key_impl
(
CONST
BYTE
*
pbSrc
,
KEY_CONTEXT
*
pKeyContext
,
DWORD
dwKeyLen
,
DWORD
dwPubExp
);
DWORD
dwPubExp
)
DECLSPEC_HIDDEN
;
BOOL
export_private_key_impl
(
BYTE
*
pbDest
,
const
KEY_CONTEXT
*
pKeyContext
,
DWORD
dwKeyLen
,
DWORD
*
pdwPubExp
);
DWORD
*
pdwPubExp
)
DECLSPEC_HIDDEN
;
BOOL
import_private_key_impl
(
CONST
BYTE
*
pbSrc
,
KEY_CONTEXT
*
pKeyContext
,
DWORD
dwKeyLen
,
DWORD
dwPubExp
);
DWORD
dwPubExp
)
DECLSPEC_HIDDEN
;
BOOL
gen_rand_impl
(
BYTE
*
pbBuffer
,
DWORD
dwLen
);
BOOL
gen_rand_impl
(
BYTE
*
pbBuffer
,
DWORD
dwLen
)
DECLSPEC_HIDDEN
;
#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