Julian Hall | c1cf912 | 2021-06-21 13:44:33 +0100 | [diff] [blame^] | 1 | '------------------------------------------------------------------------------- |
| 2 | ' Copyright (c) 2021, Arm Limited and Contributors. All rights reserved. |
| 3 | ' |
| 4 | ' SPDX-License-Identifier: BSD-3-Clause |
| 5 | ' |
| 6 | '------------------------------------------------------------------------------- |
| 7 | |
| 8 | @startuml |
| 9 | participant "factory app" |
| 10 | participant "attestation service" |
| 11 | participant "keystore" |
| 12 | |
| 13 | hnote over "keystore": empty |
| 14 | "factory app" -> "attestation service" : export_iak_public_key |
| 15 | "attestation service" -> "keystore" : check_exists |
| 16 | "attestation service" <-- "keystore" : false |
| 17 | "attestation service" -> "attestation service" : generate_key |
| 18 | "attestation service" -> "keystore" : store_key |
| 19 | hnote over "keystore": provisioned |
| 20 | "factory app" <-- "attestation service" : public_key |
| 21 | |
| 22 | @enduml |