Lines Matching refs:templates
66 OSSL_RECORD_TEMPLATE *templates, in tls_write_records_multiblock_int() argument
86 if (templates[i - 1].type != templates[i].type in tls_write_records_multiblock_int()
87 || templates[i - 1].buflen != templates[i].buflen in tls_write_records_multiblock_int()
88 || templates[i - 1].buf + templates[i - 1].buflen in tls_write_records_multiblock_int()
89 != templates[i].buf) in tls_write_records_multiblock_int()
93 totlen = templates[0].buflen * numtempl; in tls_write_records_multiblock_int()
94 if (!tls_is_multiblock_capable(rl, templates[0].type, totlen, in tls_write_records_multiblock_int()
95 templates[0].buflen)) in tls_write_records_multiblock_int()
113 (int)templates[0].buflen, NULL); in tls_write_records_multiblock_int()
123 aad[8] = templates[0].type; in tls_write_records_multiblock_int()
124 aad[9] = (unsigned char)(templates[0].version >> 8); in tls_write_records_multiblock_int()
125 aad[10] = (unsigned char)(templates[0].version); in tls_write_records_multiblock_int()
142 mb_param.inp = templates[0].buf; in tls_write_records_multiblock_int()
168 OSSL_RECORD_TEMPLATE *templates, in tls_write_records_multiblock() argument
173 ret = tls_write_records_multiblock_int(rl, templates, numtempl); in tls_write_records_multiblock()
180 if (!tls_write_records_default(rl, templates, numtempl)) { in tls_write_records_multiblock()