Lines Matching refs:outbuff
139 unsigned char outbuff[KW_SEMIBLOCK_LENGTH * 2]; in mbedtls_nist_kw_wrap() local
223 inbuff, 16, outbuff, &olen); in mbedtls_nist_kw_wrap()
228 memcpy(A, outbuff, KW_SEMIBLOCK_LENGTH); in mbedtls_nist_kw_wrap()
231 memcpy(R2, outbuff + KW_SEMIBLOCK_LENGTH, KW_SEMIBLOCK_LENGTH); in mbedtls_nist_kw_wrap()
247 mbedtls_platform_zeroize(outbuff, KW_SEMIBLOCK_LENGTH * 2); in mbedtls_nist_kw_wrap()
269 unsigned char outbuff[KW_SEMIBLOCK_LENGTH * 2]; in unwrap() local
290 inbuff, 16, outbuff, &olen); in unwrap()
295 memcpy(A, outbuff, KW_SEMIBLOCK_LENGTH); in unwrap()
298 memcpy(R, outbuff + KW_SEMIBLOCK_LENGTH, KW_SEMIBLOCK_LENGTH); in unwrap()
314 mbedtls_platform_zeroize(outbuff, sizeof(outbuff)); in unwrap()
381 unsigned char outbuff[KW_SEMIBLOCK_LENGTH * 2]; in mbedtls_nist_kw_unwrap() local
383 input, 16, outbuff, &olen); in mbedtls_nist_kw_unwrap()
388 memcpy(A, outbuff, KW_SEMIBLOCK_LENGTH); in mbedtls_nist_kw_unwrap()
389 memcpy(output, outbuff + KW_SEMIBLOCK_LENGTH, KW_SEMIBLOCK_LENGTH); in mbedtls_nist_kw_unwrap()
390 mbedtls_platform_zeroize(outbuff, sizeof(outbuff)); in mbedtls_nist_kw_unwrap()