#include "apps.h"
#include "app_params.h"
+/* Maximum number of bytes that will be output for an octet string body */
+#define MAX_OCTET_STRING_OUTPUT_BYTES 24
+
static int describe_param_type(char *buf, size_t bufsz, const OSSL_PARAM *param)
{
const char *type_mod = "";
return 1;
}
+/* Output the body of a UTF8 string which might not be zero terminated */
+static void print_param_utf8(const char **s_ptr, size_t len)
+{
+ const char *s;
+
+ if (s_ptr == NULL) {
+ BIO_puts(bio_out, " ptr null\n");
+ return;
+ }
+ if ((s = *s_ptr) == NULL) {
+ BIO_puts(bio_out, " null\n");
+ return;
+ }
+ BIO_puts(bio_out, "'");
+ if (len > 0)
+ BIO_write(bio_out, s, len);
+ BIO_puts(bio_out, "'\n");
+}
+
+/* Output the body of an OCTET string */
+static void print_param_octet(const unsigned char **bytes_ptr, size_t len)
+{
+ size_t i;
+ const char *tail = "\n";
+ const unsigned char *bytes;
+
+ BIO_printf(bio_out, "<%zu bytes>", len);
+ if (bytes_ptr == NULL) {
+ BIO_puts(bio_out, " ptr null\n");
+ return;
+ }
+ if ((bytes = *bytes_ptr) == NULL) {
+ BIO_puts(bio_out, " null\n");
+ return;
+ }
+ if (len == 0) {
+ BIO_puts(bio_out, "\n");
+ return;
+ }
+
+ if (len > MAX_OCTET_STRING_OUTPUT_BYTES) {
+ len = MAX_OCTET_STRING_OUTPUT_BYTES;
+ tail = "...\n";
+ }
+ BIO_puts(bio_out, " ");
+ for (i = 0; i < len; i++)
+ BIO_printf(bio_out, "%02x", bytes[i]);
+ BIO_puts(bio_out, tail);
+}
+
void print_param_value(const OSSL_PARAM *p, int indent)
{
int64_t i;
BIO_printf(bio_out, "error getting value\n");
break;
case OSSL_PARAM_UTF8_PTR:
- BIO_printf(bio_out, "'%s'\n", *(char **)(p->data));
+ print_param_utf8((const char **)p->data, p->return_size);
break;
case OSSL_PARAM_UTF8_STRING:
- BIO_printf(bio_out, "'%s'\n", (char *)p->data);
+ print_param_utf8((const char **)&p->data, p->return_size);
break;
case OSSL_PARAM_OCTET_PTR:
+ print_param_octet((const unsigned char **)p->data, p->return_size);
+ break;
case OSSL_PARAM_OCTET_STRING:
- BIO_printf(bio_out, "<%zu bytes>\n", p->data_size);
+ print_param_octet((const unsigned char **)&p->data, p->return_size);
break;
default:
BIO_printf(bio_out, "unknown type (%u) of %zu bytes\n",
- p->data_type, p->data_size);
+ p->data_type, p->return_size);
break;
}
}