-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#26 Refactor: Passport 신원 인증 및 메타 데이터 관리 기능 추가 & 메타데이터 로직 개선 & Wallet…
… 인증서별 관리 기능 및 Attribute 수정 [박한솔]
- Loading branch information
Showing
17 changed files
with
434 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,17 @@ INSERT INTO users (email, password) | |
VALUES | ||
('[email protected]', '$2a$10$ENYqGvZ3p6LvtsBnRWINSOJHKlMt1Ykgb3.jCnoKkrhMihviXhkDu'), | ||
('[email protected]', '$2a$10$EXAMPLEHASHFORUSERPASSWORD'), | ||
('3751271433', '$2a$10$skVt4kLn.95UGnrasmxQku5AGhhg6fESNtg/Ndw3iBQin.SqHrIdK'); | ||
('3751271433', '$2a$10$ENYqGvZ3p6LvtsBnRWINSOJHKlMt1Ykgb3.jCnoKkrhMihviXhkDu'); | ||
|
||
INSERT INTO wallets (user_id, private_key, public_key) | ||
VALUES | ||
(1, 'privateKeyForUser1', 'publicKeyForUser1'), | ||
(2, 'privateKeyForUser2', 'publicKeyForUser2'), | ||
(3, 'privateKeyForUser3', 'publicKeyForUser3'); | ||
|
||
INSERT INTO wallets (user_id, pdfUrl,privateKey, publicKey) | ||
INSERT INTO wallet_pdf_urls (wallet_id, certificate_type, pdf_url) | ||
VALUES | ||
(1,'https://basilium-product-bucket.s3.ap-northeast-2.amazonaws.com/1_certifications.pdf','privateKeyForUser1', 'publicKeyForUser1'), | ||
(2,null,'privateKeyForUser2', 'publicKeyForUser2'), | ||
(3,null,'privateKeyForUser2', 'publicKeyForUser2'); | ||
(1, '재학증_1', 'https://basilium-product-bucket.s3.ap-northeast-2.amazonaws.com/1_student_certifications.pdf'), | ||
(1, '여권_1', 'https://s3.ap-northeast-2.amazonaws.com/basilium-product-bucket/1_passport_certification.pdf'), | ||
(2, '재학증_2', null); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-186 Bytes
(100%)
web3-credential-server/build/tmp/compileJava/previous-compilation-data.bin
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.