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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
fd39fc2d
Commit
fd39fc2d
authored
Jul 29, 2010
by
Davi Arnaut
Browse files
Options
Browse Files
Download
Plain Diff
Merge of mysql-5.1-bugteam into mysql-trunk-merge.
parents
6bd182e9
f6748155
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
148 additions
and
221 deletions
+148
-221
extra/yassl/taocrypt/src/coding.cpp
extra/yassl/taocrypt/src/coding.cpp
+1
-1
mysql-test/std_data/server8k-cert.pem
mysql-test/std_data/server8k-cert.pem
+49
-123
mysql-test/std_data/server8k-key.pem
mysql-test/std_data/server8k-key.pem
+97
-97
mysql-test/t/ssl_8k_key-master.opt
mysql-test/t/ssl_8k_key-master.opt
+1
-0
No files found.
extra/yassl/taocrypt/src/coding.cpp
View file @
fd39fc2d
...
@@ -185,7 +185,7 @@ void Base64Decoder::Decode()
...
@@ -185,7 +185,7 @@ void Base64Decoder::Decode()
{
{
word32
bytes
=
coded_
.
size
();
word32
bytes
=
coded_
.
size
();
word32
plainSz
=
bytes
-
((
bytes
+
(
pemLineSz
-
1
))
/
pemLineSz
);
word32
plainSz
=
bytes
-
((
bytes
+
(
pemLineSz
-
1
))
/
pemLineSz
);
plainSz
=
(
plainSz
*
3
+
3
)
/
4
;
plainSz
=
(
(
plainSz
*
3
)
/
4
)
+
3
;
decoded_
.
New
(
plainSz
);
decoded_
.
New
(
plainSz
);
word32
i
=
0
;
word32
i
=
0
;
...
...
mysql-test/std_data/server8k-cert.pem
View file @
fd39fc2d
This diff is collapsed.
Click to expand it.
mysql-test/std_data/server8k-key.pem
View file @
fd39fc2d
This diff is collapsed.
Click to expand it.
mysql-test/t/ssl_8k_key-master.opt
0 → 100644
View file @
fd39fc2d
--loose-ssl-key=$MYSQL_TEST_DIR/std_data/server8k-key.pem --loose-ssl-cert=$MYSQL_TEST_DIR/std_data/server8k-cert.pem
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