MCPcopy Create free account
hub / github.com/mpdavis/python-jose / wrap_key

Method wrap_key

jose/backends/base.py:54–64  ·  view source on GitHub ↗

Wrap the the plain text key data Args: key_data (bytes): Key data to wrap Returns: bytes: Wrapped key

(self, key_data)

Source from the content-addressed store, hash-verified

52 raise NotImplementedError()
53
54 def wrap_key(self, key_data):
55 """
56 Wrap the the plain text key data
57
58 Args:
59 key_data (bytes): Key data to wrap
60
61 Returns:
62 bytes: Wrapped key
63 """
64 raise NotImplementedError()
65
66 def unwrap_key(self, wrapped_key):
67 """

Calls

no outgoing calls