Home | History | Annotate | Download | only in webob

Lines Matching full:bstruct

475     def loads(self, bstruct):
478 return json.loads(text_(bstruct, encoding='utf-8'))
498 def loads(self, bstruct):
500 Given a ``bstruct`` (a bytestring), verify the signature and then
506 cstruct = base64.urlsafe_b64decode(bytes_(bstruct))
576 def loads(self, bstruct):
578 Given a ``bstruct`` (a bytestring), verify the signature and then
584 b64padding = b'=' * (-len(bstruct) % 4)
585 fstruct = base64.urlsafe_b64decode(bytes_(bstruct) + b64padding)
728 bstruct = None
730 bstruct = self.serializer.dumps(value)
733 bstruct,