Lines Matching refs:outbuff
146 unsigned char outbuff[KW_SEMIBLOCK_LENGTH * 2]; in mbedtls_nist_kw_wrap() local
230 inbuff, 16, outbuff, &olen); in mbedtls_nist_kw_wrap()
235 memcpy(A, outbuff, KW_SEMIBLOCK_LENGTH); in mbedtls_nist_kw_wrap()
238 memcpy(R2, outbuff + KW_SEMIBLOCK_LENGTH, KW_SEMIBLOCK_LENGTH); in mbedtls_nist_kw_wrap()
254 mbedtls_platform_zeroize(outbuff, KW_SEMIBLOCK_LENGTH * 2); in mbedtls_nist_kw_wrap()
276 unsigned char outbuff[KW_SEMIBLOCK_LENGTH * 2]; in unwrap() local
297 inbuff, 16, outbuff, &olen); in unwrap()
302 memcpy(A, outbuff, KW_SEMIBLOCK_LENGTH); in unwrap()
305 memcpy(R, outbuff + KW_SEMIBLOCK_LENGTH, KW_SEMIBLOCK_LENGTH); in unwrap()
321 mbedtls_platform_zeroize(outbuff, sizeof(outbuff)); in unwrap()
388 unsigned char outbuff[KW_SEMIBLOCK_LENGTH * 2]; in mbedtls_nist_kw_unwrap() local
390 input, 16, outbuff, &olen); in mbedtls_nist_kw_unwrap()
395 memcpy(A, outbuff, KW_SEMIBLOCK_LENGTH); in mbedtls_nist_kw_unwrap()
396 memcpy(output, outbuff + KW_SEMIBLOCK_LENGTH, KW_SEMIBLOCK_LENGTH); in mbedtls_nist_kw_unwrap()
397 mbedtls_platform_zeroize(outbuff, sizeof(outbuff)); in mbedtls_nist_kw_unwrap()