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
6f7c0ce9
Commit
6f7c0ce9
authored
Jan 22, 2024
by
Josh Ji
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
db schema
parent
4b26aeb7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
68 additions
and
0 deletions
+68
-0
Dump20231106.sql
Dump20231106.sql
+68
-0
No files found.
Dump20231106.sql
0 → 100644
View file @
6f7c0ce9
CREATE
DATABASE
IF
NOT
EXISTS
`idp`
/*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */
/*!80016 DEFAULT ENCRYPTION='N' */
;
USE
`idp`
;
-- MySQL dump 10.13 Distrib 8.0.32, for Win64 (x86_64)
--
-- Host: localhost Database: idp
-- ------------------------------------------------------
-- Server version 8.0.32
/*!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
)
CHARACTER
SET
utf8mb3
COLLATE
utf8mb3_bin
NOT
NULL
,
`HMAC`
varbinary
(
64
)
NOT
NULL
,
`HMACbase64`
varchar
(
100
)
CHARACTER
SET
utf8mb3
COLLATE
utf8mb3_general_ci
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
=
45
DEFAULT
CHARSET
=
utf8mb3
COLLATE
=
utf8mb3_bin
;
/*!40101 SET character_set_client = @saved_cs_client */
;
--
-- Table structure for table `pivinfo`
--
DROP
TABLE
IF
EXISTS
`pivinfo`
;
/*!40101 SET @saved_cs_client = @@character_set_client */
;
/*!50503 SET character_set_client = utf8mb4 */
;
CREATE
TABLE
`pivinfo`
(
`serialNumber`
int
NOT
NULL
AUTO_INCREMENT
,
`id`
varchar
(
64
)
DEFAULT
NULL
,
`hkdf_chain_iv`
varbinary
(
32
)
DEFAULT
NULL
,
`sharedSecret`
varbinary
(
32
)
DEFAULT
NULL
,
`counter`
int
DEFAULT
'0'
,
PRIMARY
KEY
(
`serialNumber`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
30
DEFAULT
CHARSET
=
utf8mb4
COLLATE
=
utf8mb4_0900_ai_ci
;
/*!40101 SET character_set_client = @saved_cs_client */
;
/*!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 2023-11-06 2:38:08
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