Skip to content
Snippets Groups Projects
Commit 6fe36613 authored by Jan Včelák's avatar Jan Včelák :rocket:
Browse files

[dnssec] sign tests: fix sample DSA signature

One octet 'T' field was missing.
parent de9267e0
Branches
Tags
1 merge request!332libdnssec
......@@ -24,7 +24,8 @@ static const dnssec_binary_t signed_rsa = { .size = 64, .data = (uint8_t []) {
0xc0, 0x03, 0x5a, 0xab,
}};
static const dnssec_binary_t signed_dsa = { .size = 40, .data = (uint8_t []) {
static const dnssec_binary_t signed_dsa = { .size = 41, .data = (uint8_t []) {
0x03,
0x8c, 0xd9, 0x4b, 0xcc, 0xdb, 0xf4, 0x3f, 0x91, 0x0e, 0x7e,
0x76, 0x1d, 0x87, 0xda, 0x48, 0xdd, 0x65, 0x7a, 0x57, 0x25,
0x97, 0x0a, 0x13, 0xa5, 0x4a, 0xb3, 0xff, 0x62, 0xfd, 0x2c,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment