Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
b879731f
Commit
b879731f
authored
Mar 11, 2011
by
Mayank Prasad
Browse files
Options
Browse Files
Download
Plain Diff
merge from mysql5.1 for bug#11760210
parents
258e3bfc
d2e36e42
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
1 deletion
+34
-1
extra/yassl/src/yassl_int.cpp
extra/yassl/src/yassl_int.cpp
+1
-1
mysql-test/r/ssl_cipher.result
mysql-test/r/ssl_cipher.result
+9
-0
mysql-test/t/ssl_cipher-master.opt
mysql-test/t/ssl_cipher-master.opt
+1
-0
mysql-test/t/ssl_cipher.test
mysql-test/t/ssl_cipher.test
+23
-0
No files found.
extra/yassl/src/yassl_int.cpp
View file @
b879731f
...
@@ -308,7 +308,7 @@ SSL::SSL(SSL_CTX* ctx)
...
@@ -308,7 +308,7 @@ SSL::SSL(SSL_CTX* ctx)
SetError
(
YasslError
(
err
));
SetError
(
YasslError
(
err
));
return
;
return
;
}
}
else
if
(
serverSide
)
{
else
if
(
serverSide
&&
!
(
ctx
->
GetCiphers
().
setSuites_
)
)
{
// remove RSA or DSA suites depending on cert key type
// remove RSA or DSA suites depending on cert key type
ProtocolVersion
pv
=
secure_
.
get_connection
().
version_
;
ProtocolVersion
pv
=
secure_
.
get_connection
().
version_
;
...
...
mysql-test/r/ssl_cipher.result
0 → 100644
View file @
b879731f
#
# BUG#11760210 - SSL_CIPHER_LIST NOT SET OR RETURNED FOR "SHOW STATUS LIKE 'SSL_CIPHER_LIST'"
#
SHOW STATUS LIKE 'Ssl_cipher';
Variable_name Value
Ssl_cipher AES128-SHA
SHOW STATUS LIKE 'Ssl_cipher_list';
Variable_name Value
Ssl_cipher_list AES128-SHA
mysql-test/t/ssl_cipher-master.opt
0 → 100644
View file @
b879731f
--ssl-cipher=AES128-SHA
mysql-test/t/ssl_cipher.test
0 → 100644
View file @
b879731f
# Turn on ssl between the client and server
# and run a number of tests
--
echo
#
--
echo
# BUG#11760210 - SSL_CIPHER_LIST NOT SET OR RETURNED FOR "SHOW STATUS LIKE 'SSL_CIPHER_LIST'"
--
echo
#
--
source
include
/
have_ssl
.
inc
# Save the initial number of concurrent sessions
--
source
include
/
count_sessions
.
inc
connect
(
ssl_con
,
localhost
,
root
,,,,,
SSL
);
# Check Cipher Name and Cipher List
SHOW
STATUS
LIKE
'Ssl_cipher'
;
SHOW
STATUS
LIKE
'Ssl_cipher_list'
;
connection
default
;
disconnect
ssl_con
;
# Wait till all disconnects are completed
--
source
include
/
wait_until_count_sessions
.
inc
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