Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
IDPServer
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
Josh Ji
IDPServer
Commits
34869667
Commit
34869667
authored
Jun 22, 2022
by
Josh Ji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create testDB.sql
parent
a0d74727
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
61 additions
and
0 deletions
+61
-0
IDPServer/testDB.sql
IDPServer/testDB.sql
+61
-0
No files found.
IDPServer/testDB.sql
0 → 100644
View file @
34869667
CREATE
DATABASE
IF
NOT
EXISTS
`idp`
/*!40100 DEFAULT CHARACTER SET utf8mb3 COLLATE utf8_unicode_ci */
/*!80016 DEFAULT ENCRYPTION='N' */
;
USE
`idp`
;
-- MySQL dump 10.13 Distrib 8.0.29, for Win64 (x86_64)
--
-- Host: localhost Database: idp
-- ------------------------------------------------------
-- Server version 8.0.29
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */
;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */
;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */
;
/*!50503 SET NAMES utf8 */
;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */
;
/*!40103 SET TIME_ZONE='+00:00' */
;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */
;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */
;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */
;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */
;
--
-- Table structure for table `identities`
--
DROP
TABLE
IF
EXISTS
`identities`
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
/*!50503 SET character_set_client = utf8mb4 */
;
CREATE
TABLE
`identities`
(
`SerialNumber`
int
NOT
NULL
AUTO_INCREMENT
,
`IDx`
varchar
(
64
)
COLLATE
utf8_bin
NOT
NULL
,
`HMAC`
varbinary
(
32
)
NOT
NULL
,
`HMACbase64`
varchar
(
45
)
COLLATE
utf8_bin
DEFAULT
'None'
,
`Cx`
varbinary
(
16
)
NOT
NULL
,
`SharedSecret`
varbinary
(
32
)
NOT
NULL
,
`PuKx`
varbinary
(
128
)
NOT
NULL
,
`PuKp`
varbinary
(
128
)
NOT
NULL
,
`PrKp`
varbinary
(
128
)
NOT
NULL
,
PRIMARY
KEY
(
`SerialNumber`
),
UNIQUE
KEY
`SerialNumber_UNIQUE`
(
`SerialNumber`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
31
DEFAULT
CHARSET
=
utf8mb3
COLLATE
=
utf8_bin
;
/*!40101 SET character_set_client = @saved_cs_client */
;
--
-- Dumping data for table `identities`
--
LOCK
TABLES
`identities`
WRITE
;
/*!40000 ALTER TABLE `identities` DISABLE KEYS */
;
INSERT
INTO
`identities`
VALUES
(
29
,
'prlab'
,
_binary
'
\Y
m? Ci.XX
\4
|trؖ+
\'
,'
vbeOm85Z8W0
/
IENpDi5YWOs0sr60fKV0hHL92JYrkds
=
',_binary '
+
;
К
v
\
(
\\
',_binary '
w
\
R
m
\
FaC
\\
v
/
\\
FS
knC
',_binary '
ECK1
\
0
\
0
\
02
+/
\\\\
6
\
6
\\
LUc
~|
y
\\
A
\\
_e
\
(
D
g
\
Q
\
&
\
B5j
-
Ӭ\\\
^
B
',_binary '
ECK1
\
0
\
0
\
0
g
{\
'Ӗ
\
>z
\\8\\
AD@W
\\
t >f
\r
N^K
\?
:3;9X
\!
f'
,
_binary
'0w
\5
/}H
\\
rH_CtInr{V
\r\\
o
\n
*H
\=
DB
\0
g{
\'
Ӗ
\
>z
\\8\\
AD@W
\\
t >f
\r
N^K
\?
:3;9X
\!
f'
);
/*!40000 ALTER TABLE `identities` ENABLE KEYS */
;
UNLOCK
TABLES
;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */
;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */
;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */
;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */
;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */
;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */
;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */
;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */
;
-- Dump completed on 2022-06-22 0:55:28
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