Set the list of key shares to send. @type shares: list of tuples @param shares: a list of tuples where the first element is a NamedGroup ID while the second element in a tuple is an opaque bytearray encoding of the key share.
(self, shares)
| 117 | self.client_shares = None |
| 118 | |
| 119 | def create(self, shares): |
| 120 | """ |
| 121 | Set the list of key shares to send. |
| 122 | |
| 123 | @type shares: list of tuples |
| 124 | @param shares: a list of tuples where the first element is a NamedGroup |
| 125 | ID while the second element in a tuple is an opaque bytearray encoding |
| 126 | of the key share. |
| 127 | """ |
| 128 | self.client_shares = shares |
| 129 | return self |
| 130 | |
| 131 | @property |
| 132 | def extData(self): |
no outgoing calls