• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /xnu-2422.115.4/EXTERNAL_HEADERS/corecrypto/

Lines Matching defs:out

40 	unsigned long in_len, const void *in, void *out)
43 mode->ecb(ctx, numBlocks, in, out);
48 const void *in, void *out)
53 mode->ecb(ctx, numBlocks, in, out);
108 unsigned long nblocks, const void *in, void *out)
110 mode->cbc(ctx, iv, nblocks, in, out);
115 const void *in, void *out)
124 mode->cbc(ctx, iv_ctx, nblocks, in, out);
152 unsigned long in_len, const void *in, void *out)
154 mode->cfb(ctx, in_len, in, out);
159 unsigned long in_len, const void *in, void *out)
163 mode->cfb(ctx, in_len, in, out);
191 unsigned long in_len, const void *in, void *out)
193 mode->cfb8(ctx, in_len, in, out);
198 unsigned long in_len, const void *in, void *out)
202 mode->cfb8(ctx, in_len, in, out);
234 unsigned long in_len, const void *in, void *out)
237 mode->ctr(ctx, numBlocks, in, out);
242 unsigned long in_len, const void *in, void *out)
247 mode->ctr(ctx, numBlocks, in, out);
276 unsigned long in_len, const void *in, void *out)
278 mode->ofb(ctx, in_len, in, out);
283 unsigned long in_len, const void *in, void *out)
287 mode->ofb(ctx, in_len, in, out);
340 ccxts_tweak *tweak, unsigned long in_len, const void *in, void *out)
342 return mode->xts(ctx, tweak, in_len, in, out);
348 unsigned long in_len, const void *in, void *out)
354 mode->xts(ctx, tweak, in_len, in, out);
394 unsigned long nbytes, const void *in, void *out)
396 mode->gcm(ctx, nbytes, in, out);
414 unsigned long nbytes, const void *in, void *out,
422 mode->gcm(ctx, nbytes, in, out);
452 unsigned long in_len, const void *tweak, const void *in, void *out)
454 return mode->omac(ctx, in_len, tweak, in, out);
459 const void *tweak, unsigned long in_len, const void *in, void *out)
463 int result = mode->omac(ctx, in_len, tweak, in, out);