secretsprovider module

binaryninja.secretsprovider.SecretsProvider([...])

class SecretsProvider(handle=None)[source]

Bases: object

delete_data(key: str) bool[source]
Parameters:

key (str) –

Return type:

bool

get_data(key: str) str[source]
Parameters:

key (str) –

Return type:

str

has_data(key: str) bool[source]
Parameters:

key (str) –

Return type:

bool

perform_delete_data(key: str) bool[source]
Parameters:

key (str) –

Return type:

bool

perform_get_data(key: str) str[source]
Parameters:

key (str) –

Return type:

str

perform_has_data(key: str) bool[source]
Parameters:

key (str) –

Return type:

bool

perform_store_data(key: str, data: str) bool[source]
Parameters:
  • key (str) –

  • data (str) –

Return type:

bool

register()[source]
store_data(key: str, data: str) bool[source]
Parameters:
  • key (str) –

  • data (str) –

Return type:

bool

instance_class = None
name = None
to_bytes(field)[source]