Lines Matching full:blocksize
69 size_t blocksize;
96 if (len % ctx->blocksize) {
98 len, ctx->blocksize);
112 g_autofree unsigned char *iv = g_new0(unsigned char, ctx->blocksize);
123 gnutls_cipher_set_iv(handle, iv, ctx->blocksize);
126 in, ctx->blocksize,
127 out, ctx->blocksize);
136 len -= ctx->blocksize;
137 in += ctx->blocksize;
138 out += ctx->blocksize;
156 if (len % ctx->blocksize) {
158 len, ctx->blocksize);
173 g_autofree unsigned char *iv = g_new0(unsigned char, ctx->blocksize);
184 gnutls_cipher_set_iv(handle, iv, ctx->blocksize);
187 in, ctx->blocksize,
188 out, ctx->blocksize);
197 len -= ctx->blocksize;
198 in += ctx->blocksize;
199 out += ctx->blocksize;
213 if (niv != ctx->blocksize) {
215 ctx->blocksize, niv);
315 ctx->blocksize = 8;
317 ctx->blocksize = 16;
326 g_autofree unsigned char *iv = g_new0(unsigned char, ctx->blocksize);
327 gnutls_cipher_set_iv(ctx->handle, iv, ctx->blocksize);