Lines Matching refs:b
115 b = bytearray(der)
117 if b[off + 1] != 0x82:
119 len_N = (b[off + 2] << 8) + b[off + 3] + 4
121 if b[off + 1] != 0x03:
123 len_E = b[off + 2] + 4
125 if b[off + 1] != 0x82:
127 len_D = (b[off + 2] << 8) + b[off + 3] + 4
129 if b[off + 1] != 0x81:
131 len_P = b[off + 2] + 3
133 if b[off + 1] != 0x81:
135 len_Q = b[off + 2] + 3
138 b[2] = (off - 4) >> 8
139 b[3] = (off - 4) & 0xff
140 return b[:off]