transferKeys property

Map<String, Map<String, String>> transferKeys
getter/setter pair

Data owner private keys encrypted with its other public keys. This mechanism will help the data owner to re-encrypt all information with its new key, if he found back the lost one. The structure is { publicKey1: { publicKey2: privateKey2_encrypted_with_publicKey1, publicKey3: privateKey3_encrypted_with_publicKey1 } }

Implementation

Map<String, Map<String, String>> transferKeys;