}int sm2_encrypt( const char *privkey_hex, const char *message, uint8_t **out_hex) { const size_t msg_len = strlen(message); printf("msg_len:%d\n",msg_len); BIGNUM *priv = NULL; EC_KEY *key = NULL; EC_POINT *pt = NULL; EC_GROUP *group = NULL;...