blob: d35e8a63f2a3b570fb162997da505f6252c116ce [file] [log] [blame]
Julian Hallc1cf9122021-06-21 13:44:33 +01001'-------------------------------------------------------------------------------
Julian Hall7b594622022-04-08 14:04:15 +01002' Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved.
Julian Hallc1cf9122021-06-21 13:44:33 +01003'
4' SPDX-License-Identifier: BSD-3-Clause
5'
6'-------------------------------------------------------------------------------
7
8@startuml
9participant "factory app"
10participant "attestation service"
11participant "keystore"
12
13hnote 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
19hnote over "keystore": provisioned
20"factory app" <-- "attestation service" : public_key
21
22@enduml