Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libplist
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pwn
libplist
Commits
6039e5bb
Commit
6039e5bb
authored
Jul 29, 2008
by
Matt Colyer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unnecessary constants, now it works with gnutls 1.6.3.
parent
fb54273d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lockdown.c
lockdown.c
+1
-1
No files found.
lockdown.c
View file @
6039e5bb
...
...
@@ -162,7 +162,7 @@ int lockdownd_start_SSL_session(lockdownd_client *control, const char *HostID) {
int
protocol_priority
[
16
]
=
{
GNUTLS_SSL3
,
0
};
int
kx_priority
[
16
]
=
{
GNUTLS_KX_ANON_DH
,
GNUTLS_KX_RSA
,
0
};
int
cipher_priority
[
16
]
=
{
GNUTLS_CIPHER_AES_128_CBC
,
GNUTLS_CIPHER_AES_256_CBC
,
0
};
int
mac_priority
[
16
]
=
{
GNUTLS_MAC_SHA1
,
GNUTLS_MAC_
SHA256
,
GNUTLS_MAC_SHA512
,
GNUTLS_MAC_
MD5
,
0
};
int
mac_priority
[
16
]
=
{
GNUTLS_MAC_SHA1
,
GNUTLS_MAC_MD5
,
0
};
int
comp_priority
[
16
]
=
{
GNUTLS_COMP_NULL
,
0
};
gnutls_cipher_set_priority
(
*
control
->
ssl_session
,
cipher_priority
);
...
...
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