We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using mbedtls_pkcs12_derivation(). The testfile is as follows:
void PKCS12(){ int keySize = 95; int iterations = 3; const uint8_t password[] = {} ; const uint8_t salt[] = {0xda, 0x22, 0x10, 0x3a, 0xce, 0x14, 0xda, 0xaa, 0x38}; mbedtls_md_type_t md_type = MBEDTLS_MD_NONE; uint8_t* out = (uint8_t *)::malloc(keySize); md_type = MBEDTLS_MD_MD5; mbedtls_pkcs12_derivation( out, keySize, password, sizeof(password), salt, sizeof(salt), md_type, MBEDTLS_PKCS12_DERIVE_KEY, iterations); free(out); }
The program keeps running that cannot exit. Neither result nor error is given.
Exit with a result, or an error code if not supported.
The function does not exit.
The text was updated successfully, but these errors were encountered:
paul-elliott-arm
Successfully merging a pull request may close this issue.
Summary
I am using mbedtls_pkcs12_derivation(). The testfile is as follows:
The program keeps running that cannot exit. Neither result nor error is given.
Expected behavior
Exit with a result, or an error code if not supported.
Actual behavior
The function does not exit.
The text was updated successfully, but these errors were encountered: