Source code for autobahn.wamp.gen.wamp.proto.AuthCryptosignRequest

# automatically generated by the FlatBuffers compiler, do not modify

# namespace: proto

import flatbuffers
from flatbuffers.compat import import_numpy
np = import_numpy()

[docs]class AuthCryptosignRequest(object): __slots__ = ['_tab']
[docs] @classmethod def GetRootAs(cls, buf, offset=0): n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset) x = AuthCryptosignRequest() x.Init(buf, n + offset) return x
[docs] @classmethod def GetRootAsAuthCryptosignRequest(cls, buf, offset=0): """This method is deprecated. Please switch to GetRootAs.""" return cls.GetRootAs(buf, offset)
# AuthCryptosignRequest
[docs] def Init(self, buf, pos): self._tab = flatbuffers.table.Table(buf, pos)
# AuthCryptosignRequest
[docs] def Pubkey(self): o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4)) if o != 0: return self._tab.String(o + self._tab.Pos) return None
# AuthCryptosignRequest
[docs] def ChannelBinding(self): o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6)) if o != 0: return self._tab.Get(flatbuffers.number_types.Uint8Flags, o + self._tab.Pos) return 0
[docs]def AuthCryptosignRequestStart(builder): builder.StartObject(2)
[docs]def Start(builder): return AuthCryptosignRequestStart(builder)
[docs]def AuthCryptosignRequestAddPubkey(builder, pubkey): builder.PrependUOffsetTRelativeSlot(0, flatbuffers.number_types.UOffsetTFlags.py_type(pubkey), 0)
[docs]def AddPubkey(builder, pubkey): return AuthCryptosignRequestAddPubkey(builder, pubkey)
[docs]def AuthCryptosignRequestAddChannelBinding(builder, channelBinding): builder.PrependUint8Slot(1, channelBinding, 0)
[docs]def AddChannelBinding(builder, channelBinding): return AuthCryptosignRequestAddChannelBinding(builder, channelBinding)
[docs]def AuthCryptosignRequestEnd(builder): return builder.EndObject()
[docs]def End(builder): return AuthCryptosignRequestEnd(builder)