Cloud Keys 2020 Python Edition

Questions / Feedback?

encode_data Property

Whether to automatically base64-encode and -decode secret data.

Syntax

def get_encode_data() -> bool: ...
def set_encode_data(value: bool) -> None: ...

encode_data = property(get_encode_data, set_encode_data)

Default Value

FALSE

Remarks

This property specifies whether the class should automatically base64-encode secret data when it is uploaded by create_secret, and base64-decode it when it is downloaded with get_secret.

Secrets are stored on the server as strings, and are transported via a JSON string property, so binary values must be encoded in some way; this property is provided as a convenience.

Copyright (c) 2022 /n software inc. - All rights reserved.
Cloud Keys 2020 Python Edition - Version 20.0 [Build 8157]