| 109 | } |
| 110 | |
| 111 | std::vector<std::string> FileSystemKeyMaterialStore::GetKeyIDSet() { |
| 112 | if (key_material_map_.empty()) { |
| 113 | LoadKeyMaterialMap(); |
| 114 | } |
| 115 | std::vector<std::string> keys; |
| 116 | keys.reserve(key_material_map_.size()); |
| 117 | |
| 118 | for (const auto& kv : key_material_map_) { |
| 119 | keys.push_back(kv.first); |
| 120 | } |
| 121 | return keys; |
| 122 | } |
| 123 | |
| 124 | void FileSystemKeyMaterialStore::MoveMaterialTo( |
| 125 | std::shared_ptr<FileKeyMaterialStore> target_key_store) { |
no test coverage detected