blob: 7fdae1b9a30fc4096649332063f083952bcca3ae [file] [log] [blame]
Julian Hallc1cf9122021-06-21 13:44:33 +01001'-------------------------------------------------------------------------------
2' Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
3'
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