|
NAMEOpenXPKI::Server::API2::Plugin::Secret::get_secrets COMMANDSget_secretsReturn a HashRef with type and name of all secret groups in the current realm. Example: {
'default' => {
'label' => 'Default secret group of this realm',
'type' => 'literal'
'complete' => 1,
'required_parts' => 3,
'inserted_parts' => 3,
},
'mykey' => {
'label' => 'Main password',
'type' => 'plain'
'complete' => 0,
'required_parts' => 1,
'inserted_parts' => 0,
},
}
Changes compared to API v1: The returned HashRef now contains lowercase keys.
|