hmac: Make unit test const-correct

https://bugzilla.gnome.org/show_bug.cgi?id=724741
This commit is contained in:
Philip Withnall 2014-02-19 18:03:37 +00:00
parent 393503ba5b
commit fdf14e9e6c

View File

@ -156,11 +156,11 @@ guint8 result_sha1_test7[] = {
typedef struct {
GChecksumType digest_type;
gpointer key;
gconstpointer key;
gsize key_len;
gpointer data;
gconstpointer data;
gsize data_len;
gpointer result;
gconstpointer result;
} HmacCase;
HmacCase hmac_md5_tests[] = {