Lines Matching defs:out
31 const unsigned char *in, unsigned char *out,
82 unsigned char *out, size_t len)
85 if (!CRYPTO_ocb128_encrypt(&ctx->ocb, in, out, len))
88 if (!CRYPTO_ocb128_decrypt(&ctx->ocb, in, out, len))
161 unsigned char *out, size_t *outl,
178 if (!ciph(ctx, buf, out, AES_BLOCK_SIZE)) {
184 if (out != NULL)
185 out += AES_BLOCK_SIZE;
193 if (!ciph(ctx, in, out, nextblocks)) {
212 unsigned char *out, size_t len)
231 static int aes_ocb_block_update(void *vctx, unsigned char *out, size_t *outl,
249 if (out == NULL) {
258 return aes_ocb_block_update_internal(ctx, buf, buflen, out, outl, outsize,
262 static int aes_ocb_block_final(void *vctx, unsigned char *out, size_t *outl,
280 if (!aes_generic_ocb_cipher(ctx, ctx->data_buf, out, ctx->data_buf_len))
497 static int aes_ocb_cipher(void *vctx, unsigned char *out, size_t *outl,
510 if (!aes_generic_ocb_cipher(ctx, in, out, inl)) {