You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mysql-test/main/openssl_1.result
+20-52Lines changed: 20 additions & 52 deletions
Original file line number
Diff line number
Diff line change
@@ -4,73 +4,54 @@ drop table if exists t1;
4
4
create table t1(f1 int);
5
5
insert into t1 values (5);
6
6
grant select on test.* to ssl_user1@localhost require SSL;
7
-
grant select on test.* to ssl_user2@localhost require cipher "AES256-SHA";
8
-
grant select on test.* to ssl_user3@localhost require cipher "AES256-SHA" AND SUBJECT "/C=FI/ST=Helsinki/L=Helsinki/O=MariaDB/CN=client";
9
-
grant select on test.* to ssl_user4@localhost require cipher "AES256-SHA" AND SUBJECT "/C=FI/ST=Helsinki/L=Helsinki/O=MariaDB/CN=client" ISSUER "/CN=cacert/C=FI/ST=Helsinki/L=Helsinki/O=MariaDB";
10
-
grant select on test.* to ssl_user5@localhost require cipher "AES256-SHA" AND SUBJECT "xxx";
7
+
grant select on test.* to ssl_user3@localhost require SUBJECT "/C=FI/ST=Helsinki/L=Helsinki/O=MariaDB/CN=client";
8
+
grant select on test.* to ssl_user4@localhost require SUBJECT "/C=FI/ST=Helsinki/L=Helsinki/O=MariaDB/CN=client" ISSUER "/CN=cacert/C=FI/ST=Helsinki/L=Helsinki/O=MariaDB";
9
+
grant select on test.* to ssl_user5@localhost require SUBJECT "xxx";
Copy file name to clipboardExpand all lines: mysql-test/main/openssl_1.test
+14-77Lines changed: 14 additions & 77 deletions
Original file line number
Diff line number
Diff line change
@@ -19,58 +19,45 @@ create table t1(f1 int);
19
19
insert into t1 values (5);
20
20
21
21
grant select on test.* to ssl_user1@localhost require SSL;
22
-
grant select on test.* to ssl_user2@localhost require cipher "AES256-SHA";
23
-
grant select on test.* to ssl_user3@localhost require cipher "AES256-SHA" AND SUBJECT "/C=FI/ST=Helsinki/L=Helsinki/O=MariaDB/CN=client";
24
-
grant select on test.* to ssl_user4@localhost require cipher "AES256-SHA" AND SUBJECT "/C=FI/ST=Helsinki/L=Helsinki/O=MariaDB/CN=client" ISSUER "/CN=cacert/C=FI/ST=Helsinki/L=Helsinki/O=MariaDB";
25
-
grant select on test.* to ssl_user5@localhost require cipher "AES256-SHA" AND SUBJECT "xxx";
22
+
grant select on test.* to ssl_user3@localhost require SUBJECT "/C=FI/ST=Helsinki/L=Helsinki/O=MariaDB/CN=client";
23
+
grant select on test.* to ssl_user4@localhost require SUBJECT "/C=FI/ST=Helsinki/L=Helsinki/O=MariaDB/CN=client" ISSUER "/CN=cacert/C=FI/ST=Helsinki/L=Helsinki/O=MariaDB";
24
+
grant select on test.* to ssl_user5@localhost require SUBJECT "xxx";
0 commit comments