MCPcopy Create free account
hub / github.com/ActiveState/code / decode

Method decode

recipes/Python/572159_SPICE/recipe-572159.py:280–283  ·  view source on GitHub ↗

Return a decrypted string.

(self, string)

Source from the content-addressed store, hash-verified

278 return _encode(string, self.__em1, self.__em2)
279
280 def decode(self, string):
281 'Return a decrypted string.'
282 assert isinstance(string, str) and len(string) % 4 == 0
283 return _decode(string, self.__dm1, self.__dm2)
284
285################################################################################
286

Callers 1

readFileFunction · 0.45

Calls 1

_decodeFunction · 0.70

Tested by

no test coverage detected