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

# automatically generated by the FlatBuffers compiler, do not modify

# namespace: proto

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

[docs]class AuthCryptosignChallenge(object): __slots__ = ['_tab']
[docs] @classmethod def GetRootAs(cls, buf, offset=0): n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset) x = AuthCryptosignChallenge() x.Init(buf, n + offset) return x
[docs] @classmethod def GetRootAsAuthCryptosignChallenge(cls, buf, offset=0): """This method is deprecated. Please switch to GetRootAs.""" return cls.GetRootAs(buf, offset)
# AuthCryptosignChallenge
[docs] def Init(self, buf, pos): self._tab = flatbuffers.table.Table(buf, pos)
# AuthCryptosignChallenge
[docs] def ChannelBinding(self): o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4)) if o != 0: return self._tab.Get(flatbuffers.number_types.Uint8Flags, o + self._tab.Pos) return 0
[docs]def AuthCryptosignChallengeStart(builder): builder.StartObject(1)
[docs]def Start(builder): return AuthCryptosignChallengeStart(builder)
[docs]def AuthCryptosignChallengeAddChannelBinding(builder, channelBinding): builder.PrependUint8Slot(0, channelBinding, 0)
[docs]def AddChannelBinding(builder, channelBinding): return AuthCryptosignChallengeAddChannelBinding(builder, channelBinding)
[docs]def AuthCryptosignChallengeEnd(builder): return builder.EndObject()
[docs]def End(builder): return AuthCryptosignChallengeEnd(builder)