Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.toolbox
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
Alain Takoudjou
slapos.toolbox
Commits
2dd3c8d9
Commit
2dd3c8d9
authored
Mar 22, 2017
by
Vincent Pelletier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
certificate_authority: Start documenting the use-cases.
parent
ea435ee7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
0 deletions
+46
-0
slapos/certificate_authority/doc/P-SLAPOS.Certificate.Authority.Plantuml.Sequence.Diagram.Signing.Request.txt
...e.Authority.Plantuml.Sequence.Diagram.Signing.Request.txt
+46
-0
No files found.
slapos/certificate_authority/doc/P-SLAPOS.Certificate.Authority.Plantuml.Sequence.Diagram.Signing.Request.txt
0 → 100644
View file @
2dd3c8d9
@startuml
title "Submitting a certificate signature request"
actor User
actor Trusted
autonumber
User -> Authority : POST /request
alt Sining request passes all checks
Authority --> User : Signing request identifier
else
Authority --> User : Error
end
Trusted -> Authority : GET /requests XXX: check plural with Romain
Authority --> Trusted : List of pending signing requests with their identifiers
Trusted -> Authority : GET /request with request identifier
Authority --> Trusted : Signing request content
alt Trusted agrees to prvoduce a signed certificate from the signing request
Trusted -> Authority : POST /sign with the signing request identifier
alt Sining request was still pending
Authority --> Trusted : Success
else
Authority --> Trusted : Not found
end
else
Trusted -> Authority : DELETE /request with the signing request identifier
Authority --> Trusted : Ok
end
loop Until certificate obtained or request rejected
User -> Authority : GET /certificate with signing request identifier
alt Signing request was signed
Authority --> User : Certificate content
else
Authority --> User : Not found
opt User wants to check request is still pending
User -> Authority : GET /request with signing request identifier
alt Sining request is still pending
Authority --> User : Signing request content
else
Authority --> User : Not found
end
end
end
end
@enduml
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