-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed storage to SQLite and introduces the browse stored CRL view
- Loading branch information
Showing
36 changed files
with
1,401 additions
and
138 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
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
@startuml | ||
|
||
!theme plain | ||
top to bottom direction | ||
skinparam linetype ortho | ||
|
||
class certificate_revocation_list { | ||
name: text | ||
signature: blob | ||
this_update: date | ||
next_update: date | ||
url: text | ||
raw: blob | ||
id: integer | ||
} | ||
class gorp_migrations { | ||
applied_at: datetime | ||
id: varchar(255) | ||
} | ||
class revoked_certificate { | ||
serialnumber: text | ||
revocation_date: date | ||
reason: text | ||
revocation_list: integer | ||
id: integer | ||
} | ||
class sqlite_master { | ||
type: text | ||
name: text | ||
tbl_name: text | ||
rootpage: int | ||
sql: text | ||
} | ||
|
||
revoked_certificate -[#595959,plain]-^ certificate_revocation_list : "revocation_list:id" | ||
@enduml |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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.