File: key.c

package info (click to toggle)
s390-tools 2.40.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,288 kB
  • sloc: ansic: 187,079; sh: 12,157; cpp: 5,049; makefile: 2,812; perl: 2,541; asm: 1,097; python: 697; xml: 29
file content (1439 lines) | stat: -rw-r--r-- 45,202 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
/*
 * libkmipclient - KMIP client library
 *
 * Copyright IBM Corp. 2021
 *
 * s390-tools is free software; you can redistribute it and/or modify
 * it under the terms of the MIT license. See LICENSE for details.
 */

#define _XOPEN_SOURCE
#define _DEFAULT_SOURCE

#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>

#include "kmip.h"
#include "names.h"

/**
 * Constructs a Key Block node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Block                               Structure     v1.0
 *     Key Format Type             Yes       Enumeration   v1.0
 *     Key Compression Type        No        Enumeration   v1.0
 *     Key Value                   Yes       various       v1.0
 *     Cryptographic Algorithm     Yes       Enumeration   v1.0
 *     Cryptographic Length        Yes       Integer       v1.0
 *     Key Wrapping Data           No        Structure     v1.0
 *
 * @param format_type       the key format type
 * @param format_type       the key compression type (if 0 it is ignored)
 * @param key_value         the key value node
 * @param algorithm         the key algorithm (if 0 it is ignored)
 * @param length            the cryptographic length (if <= 0 it is ignored)
 * @param wrappig_data      the key wrapping data (can be NULL)
 *
 * @returns the allocated node, or NULL in case of an error.
 * The reference counts of the nodes specified as parameters which are added to
 * the newly allocated node are increased. The caller must free its reference
 * via kmip_node_free() if no longer needed.
 */
struct kmip_node *kmip_new_key_block(enum kmip_key_format_type format_type,
				     enum kmip_key_compression_type compr_type,
				     struct kmip_node *key_value,
				     enum kmip_crypto_algo algorithm,
				     int32_t length,
				     struct kmip_node *wrappig_data)
{
	struct kmip_node *ret = NULL, *fmt, *cmp = NULL, *algo = NULL;
	struct kmip_node *len = NULL;

	if (format_type == 0 || key_value == NULL)
		return NULL;

	fmt = kmip_node_new_enumeration(KMIP_TAG_KEY_FORMAT_TYPE, NULL,
					format_type);
	if (fmt == NULL)
		goto out;

	if (compr_type != 0) {
		cmp = kmip_node_new_enumeration(KMIP_TAG_KEY_COMPRESSION_TYPE,
						NULL, compr_type);
		if (cmp == NULL)
			goto out;
	}

	if (algorithm != 0) {
		algo = kmip_node_new_enumeration(
					KMIP_TAG_CRYPTOGRAPHIC_ALGORITHM,
					NULL, algorithm);
		if (algo == NULL)
			goto out;
	}

	if (length > 0) {
		len = kmip_node_new_integer(KMIP_TAG_CRYPTOGRAPHIC_LENGTH, NULL,
					    length);
		if (len == NULL)
			goto out;
	}

	ret = kmip_node_new_structure_va(KMIP_TAG_KEY_BLOCK, NULL, 6, fmt, cmp,
					 key_value, algo, len, wrappig_data);

out:
	kmip_node_free(fmt);
	kmip_node_free(cmp);
	kmip_node_free(algo);
	kmip_node_free(len);

	return ret;
}

/**
 * Gets information from a Key Block node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Block                               Structure     v1.0
 *     Key Format Type             Yes       Enumeration   v1.0
 *     Key Compression Type        No        Enumeration   v1.0
 *     Key Value                   Yes       various       v1.0
 *     Cryptographic Algorithm     Yes       Enumeration   v1.0
 *     Cryptographic Length        Yes       Integer       v1.0
 *     Key Wrapping Data           No        Structure     v1.0
 *
 * @param node              the KMIP node
 * @param format_type       On return: the key format type
 * @param format_type       On return: the key compression type (0 if not avail,
 *                          can be NULL)
 * @param key_value         On return: the key value node (can be NULL)
 * @param algorithm         On return: the key algorithm (0 if not avail, can
 *                          be NULL)
 * @param length            On return: the cryptographic length (0 if not avail,
 *                          can be NULL)
 * @param wrappig_data      On return: the key wrapping data (can be NULL)
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_key_block(const struct kmip_node *node,
		       enum kmip_key_format_type *format_type,
		       enum kmip_key_compression_type *compr_type,
		       struct kmip_node **key_value,
		       enum kmip_crypto_algo *algorithm,
		       int32_t *length,
		       struct kmip_node **wrappig_data)
{
	struct kmip_node *n;

	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_KEY_BLOCK)
		return -EBADMSG;

	if (format_type != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
						KMIP_TAG_KEY_FORMAT_TYPE, 0);
		if (n == NULL)
			return -EBADMSG;
		*format_type = kmip_node_get_enumeration(n);
		kmip_node_free(n);
	}

	if (compr_type != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_KEY_COMPRESSION_TYPE, 0);
		if (n != NULL)
			*compr_type = kmip_node_get_enumeration(n);
		else
			*compr_type = 0;
		kmip_node_free(n);
	}

	if (algorithm != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_CRYPTOGRAPHIC_ALGORITHM, 0);
		if (n != NULL)
			*algorithm = kmip_node_get_enumeration(n);
		else
			*algorithm = 0;
		kmip_node_free(n);
	}

	if (length != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_CRYPTOGRAPHIC_LENGTH, 0);
		if (n != NULL)
			*length = kmip_node_get_integer(n);
		else
			*length = -1;
		kmip_node_free(n);
	}

	if (key_value != NULL) {
		*key_value = kmip_node_get_structure_element_by_tag(node,
							KMIP_TAG_KEY_VALUE, 0);
		if (*key_value == NULL)
			return -EBADMSG;
	}

	if (wrappig_data != NULL)
		*wrappig_data = kmip_node_get_structure_element_by_tag(node,
						KMIP_TAG_KEY_WRAPPING_DATA, 0);

	return 0;
}

/**
 * Constructs a Key Value node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Value                               Structure     v1.0
 *     Key Material                Yes       various       v1.0
 *     Attribute                   No        Structure     v1.x only
 *     ... may be repeated
 *     Attributes                  No        Structure     v2.x only
 *
 * @param version           the protocol version. If null, the current default
 *                          protocol version is used.
 * @param key_material      the key material node
 * @param attrs_count       the number of attributes following (can be 0)
 * @param v2_attrs          the array of attributes (as KMIP v2.x attribute)
 *
 * @returns the allocated node, or NULL in case of an error.
 * The reference counts of the nodes specified as parameters which are added to
 * the newly allocated node are increased. The caller must free its reference
 * via kmip_node_free() if no longer needed.
 */
struct kmip_node *kmip_new_key_value(const struct kmip_version *version,
				     struct kmip_node *key_material,
				     unsigned int attrs_count,
				     struct kmip_node **v2_attrs)
{
	struct kmip_node *ret = NULL, *v2_attr, *v1_attr, *attrs = NULL;
	unsigned int i;
	int rc;

	if (key_material == NULL)
		return NULL;
	if (attrs_count > 0 && v2_attrs == NULL)
		return NULL;

	if (version == NULL)
		version = kmip_get_default_protocol_version();

	if (version->major == 1) {
		/* KMIP v1.x */
		ret = kmip_node_new_structure_va(KMIP_TAG_KEY_VALUE, NULL, 1,
						 key_material);
		if (ret == NULL)
			return NULL;

		for (i = 0; i < attrs_count; i++) {
			v2_attr = v2_attrs[i];
			if (v2_attr == NULL)
				continue;

			rc = kmip_v1_attr_from_v2_attr(v2_attr, &v1_attr);
			if (rc != 0)
				goto error;

			rc = kmip_node_add_structure_element(ret, v1_attr);
			kmip_node_free(v1_attr);
			if (rc != 0)
				goto error;
		}
	} else {
		/* KMIP >= v2.0 */
		if (attrs_count > 0) {
			attrs = kmip_new_attributes(version,
						    KMIP_TAG_ATTRIBUTES,
						    attrs_count, v2_attrs);
			if (attrs == NULL)
				return NULL;
		}

		ret = kmip_node_new_structure_va(KMIP_TAG_KEY_VALUE, NULL, 2,
						 key_material, attrs);
		kmip_node_free(attrs);
	}

	return ret;

error:
	kmip_node_free(ret);
	return NULL;
}

/**
 * Constructs a Key Value node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Value                               Structure     v1.0
 *     Key Material                Yes       various       v1.0
 *     Attribute                   No        Structure     v1.x only
 *     ... may be repeated
 *     Attributes                  No        Structure     v2.x only
 *
 * @param version           the protocol version. If null, the current default
 *                          protocol version is used.
 * @param key_material      the key material node
 * @param attrs_count       the number of attributes following (can be 0)
 * @param <attributes>      the attributes (as KMIP v2.x attribute)
 *
 * @returns the allocated node, or NULL in case of an error.
 * The reference counts of the nodes specified as parameters which are added to
 * the newly allocated node are increased. The caller must free its reference
 * via kmip_node_free() if no longer needed.
 */
struct kmip_node *kmip_new_key_value_va(const struct kmip_version *version,
					struct kmip_node *key_material,
					unsigned int attrs_count, ...)
{
	struct kmip_node *ret, **attrs = NULL;
	unsigned int i, k;
	va_list ap;

	if (attrs_count > 0) {
		attrs = calloc(attrs_count, sizeof(struct kmip_node *));
		if (attrs == NULL)
			return NULL;
	}

	va_start(ap, attrs_count);
	for (i = 0, k = 0; i < attrs_count; i++) {
		attrs[k] = va_arg(ap, struct kmip_node *);
		if (attrs[k] != NULL)
			k++;
	}
	va_end(ap);

	ret = kmip_new_key_value(version, key_material, k, attrs);
	if (attrs != NULL)
		free(attrs);

	return ret;
}

/**
 *Gets information from a Key Value node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Value (wrapped key value)           Byte String   v1.0
 *   Key Value (plaintext key value)         Structure     v1.0
 *     Key Material                Yes       various       v1.0
 *     Attribute                   No        Structure     v1.x only
 *     ... may be repeated
 *     Attributes                  No        Structure     v2.x only
 *
 * @param node              the KMIP node
 * @param key_material      On return: the key material node (can be NULL)
 * @param num_attrs         On return: the number of attributes (can be NULL).
 * @param index             the index of the attribute to get
 * @param v2_attr           On return: the attribute (as v2.x attribute) at the
 *                          specified index. Function returns -ENOENT if no
 *                          attribute is available at the index.
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_key_value(const struct kmip_node *node,
		       struct kmip_node **key_material,
		       unsigned int *num_attrs, unsigned int index,
		       struct kmip_node **v2_attr)
{
	struct kmip_node *attr;
	int rc;

	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_KEY_VALUE)
		return -EBADMSG;

	if (key_material != NULL) {
		switch (kmip_node_get_type(node)) {
		case KMIP_TYPE_BYTE_STRING:
			/* Wrapped key value */
			*key_material = (struct kmip_node *)node;
			kmip_node_upref(*key_material);
			break;

		case KMIP_TYPE_STRUCTURE:
			/* plaintext key value */
			*key_material =
				kmip_node_get_structure_element_by_index(node,
									 0);
			if (*key_material == NULL)
				return -EBADMSG;

			switch (kmip_node_get_type(*key_material)) {
			case KMIP_TYPE_BYTE_STRING:
				/* Raw, Opaque, PKCS1, PKCS8, ECPrivateKey */
				break;
			case KMIP_TYPE_STRUCTURE:
				/* Transparent key formats */
				switch (kmip_node_get_tag(*key_material)) {
				/* Transparent key formats: TAG_KEY_MATERIAL */
				case KMIP_TAG_KEY_MATERIAL:
					break;
				default:
					rc = -EBADMSG;
					goto error;
				}
				break;
			default:
				rc = -EBADMSG;
				goto error;
			}
			break;

		default:
			return -EBADMSG;
		}
	}

	if (v2_attr == NULL || kmip_node_get_type(node) != KMIP_TYPE_STRUCTURE)
		return 0;

	attr = kmip_node_get_structure_element_by_index(node, 1);
	if (attr == NULL) {
		rc = -ENOENT;
		goto error;
	}

	if (kmip_node_get_tag(attr) == KMIP_TAG_ATTRIBUTES) {
		/* Its already a KMIP v2.x attributes structure */
		rc = kmip_get_attributes(attr, num_attrs, index, v2_attr);
		kmip_node_free(attr);
		if (rc != 0)
			goto error;
		return 0;
	}

	/* Must be a KMIP v1.x attribute then */
	kmip_node_free(attr);

	if (num_attrs != NULL)
		*num_attrs = kmip_node_get_structure_element_count(node) - 1;

	if (v2_attr == NULL)
		return 0;

	attr = kmip_node_get_structure_element_by_index(node, index + 1);
	if (attr == NULL) {
		rc = -ENOENT;
		goto error;
	}

	rc = kmip_v2_attr_from_v1_attr(attr, v2_attr);
	kmip_node_free(attr);
	if (rc != 0)
		goto error;

	return 0;

error:
	if (key_material != NULL) {
		kmip_node_free(*key_material);
		*key_material = NULL;
	}

	return rc;
}

/**
 * Constructs a Key Wrapping Data node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Wrapping Data                       Structure     v1.0
 *     Wrapping Method             Yes       Enumeration   v1.0
 *     Encryption Key Information  No        Structure     v1.0
 *     MAC/Signature Key Info.     No        Structure     v1.0
 *     MAC/Signature               No        Byte String   v1.0
 *     IV/Counter/Nonce            No        Byte String   v1.0
 *     Encoding Option             No        Enumeration   v1.2
 *
 * @param version           the protocol version. If null, the current default
 *                          protocol version is used.
 * @param wrap_method       the key wrapping method
 * @param encr_key_info     the encryption key info node (can be NULL)
 * @param mac_sign_key_info the MAC/Sign key info node (can be NULL)
 * @param mac_signature     MAC/signature (can be NULL)
 * @param mac_signature_len the length of the MAC/Signature
 * @param iv_counter_nonce  IV/Counter/Nonce (can be NULL)
 * @param iv_counter_nonce_len the length of theIV/Counter/Nonce
 * @param encoding          the encoding option (can be 0, defaults to TTLV)
 *
 * @returns the allocated node, or NULL in case of an error.
 * The reference counts of the nodes specified as parameters which are added to
 * the newly allocated node are increased. The caller must free its reference
 * via kmip_node_free() if no longer needed.
 */
struct kmip_node *kmip_new_key_wrapping_data(
					const struct kmip_version *version,
					enum kmip_wrapping_method wrap_method,
					struct kmip_node *encr_key_info,
					struct kmip_node *mac_sign_key_info,
					const unsigned char *mac_signature,
					uint32_t mac_signature_len,
					const unsigned char *iv_counter_nonce,
					uint32_t iv_counter_nonce_len,
					enum kmip_encoding_option encoding)
{
	struct kmip_node *ret = NULL, *wmeth, *mac = NULL, *iv = NULL;
	struct kmip_node *enc = NULL;

	if (wrap_method == 0)
		return NULL;

	if (version == NULL)
		version = kmip_get_default_protocol_version();

	wmeth = kmip_node_new_enumeration(KMIP_TAG_WRAPPING_METHOD, NULL,
					  wrap_method);
	if (wmeth == NULL)
		goto out;

	if (mac_signature != NULL && mac_signature_len > 0) {
		mac = kmip_node_new_byte_string(KMIP_TAG_MAC_SIGNATURE,
						NULL, mac_signature,
						mac_signature_len);
		if (mac == NULL)
			goto out;
	}

	if (iv_counter_nonce != NULL && iv_counter_nonce_len > 0) {
		iv = kmip_node_new_byte_string(KMIP_TAG_IV_COUNTER_NONCE,
					       NULL, iv_counter_nonce,
					       iv_counter_nonce_len);
		if (iv == NULL)
			goto out;
	}

	if (encoding != 0 && (version->major > 1 ||
			      (version->major == 1 && version->minor > 1))) {
		enc = kmip_node_new_enumeration(KMIP_TAG_ENCODING_OPTION, NULL,
						encoding);
		if (enc == NULL)
			goto out;
	}

	ret = kmip_node_new_structure_va(KMIP_TAG_KEY_WRAPPING_DATA, NULL, 6,
					 wmeth, encr_key_info,
					 mac_sign_key_info, mac, iv, enc);

out:
	kmip_node_free(wmeth);
	kmip_node_free(mac);
	kmip_node_free(iv);
	kmip_node_free(enc);

	return ret;
}

/**
 *Gets information from a Key Wrapping Data node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Wrapping Data                       Structure     v1.0
 *     Wrapping Method             Yes       Enumeration   v1.0
 *     Encryption Key Information  No        Structure     v1.0
 *     MAC/Signature Key Info.     No        Structure     v1.0
 *     MAC/Signature               No        Byte String   v1.0
 *     IV/Counter/Nonce            No        Byte String   v1.0
 *     Encoding Option             No        Enumeration   v1.2
 *
 * @param node              the KMIP node
 * @param wrap_method       On return: the key wrapping method (can be NULL)
 * @param encr_key_info     On return: the encryption key info node
 *                          (can be NULL)
 * @param mac_sign_key_info On return: the MAC/Sign key info node (can be NULL)
 * @param mac_signature     On return: MAC/signature (can be NULL)
 * @param mac_signature_len On return: the length of the MAC/Signature
 *                          (can be NULL)
 * @param iv_counter_nonce  On return: IV/Counter/Nonce (can be NULL)
 * @param iv_counter_nonce_len On return: the length of theIV/Counter/Nonce
 *                          (can be NULL)
 * @param encoding          On return: the encoding option (can be NULL)
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_key_wrapping_data(const struct kmip_node *node,
			       enum kmip_wrapping_method *wrap_method,
			       struct kmip_node **encr_key_info,
			       struct kmip_node **mac_sign_key_info,
			       const unsigned char **mac_signature,
			       uint32_t *mac_signature_len,
			       const unsigned char **iv_counter_nonce,
			       uint32_t *iv_counter_nonce_len,
			       enum kmip_encoding_option *encoding)
{
	struct kmip_node *n;

	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_KEY_WRAPPING_DATA)
		return -EBADMSG;

	if (wrap_method != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
						KMIP_TAG_WRAPPING_METHOD, 0);
		if (n == NULL)
			return -EBADMSG;
		*wrap_method = kmip_node_get_enumeration(n);
		kmip_node_free(n);
	}

	if (mac_signature != NULL && mac_signature_len != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_MAC_SIGNATURE, 0);
		if (n != NULL) {
			*mac_signature = kmip_node_get_byte_string(n,
							mac_signature_len);
		} else {
			*mac_signature = NULL;
			*mac_signature_len = 0;
		}
		kmip_node_free(n);
	}

	if (iv_counter_nonce != NULL && iv_counter_nonce_len != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_IV_COUNTER_NONCE, 0);
		if (n != NULL) {
			*iv_counter_nonce = kmip_node_get_byte_string(n,
							iv_counter_nonce_len);
		} else {
			*iv_counter_nonce = NULL;
			*iv_counter_nonce_len = 0;
		}
		kmip_node_free(n);
	}

	if (encoding != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
						KMIP_TAG_ENCODING_OPTION, 0);

		*encoding = (n != NULL ? kmip_node_get_enumeration(n) : 0);
		kmip_node_free(n);
	}

	if (encr_key_info != NULL)
		*encr_key_info = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_ENCRYPTION_KEY_INFORMATION, 0);

	if (mac_sign_key_info != NULL)
		*mac_sign_key_info =
			kmip_node_get_structure_element_by_tag(node,
				KMIP_TAG_MAC_SIGNATURE_KEY_INFORMATION, 0);

	return 0;
}

/**
 * Constructs a Key Wrapping Specification node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Wrapping Specification              Structure     v1.0
 *     Wrapping Method             Yes       Enumeration   v1.0
 *     Encryption Key Information  No        Structure     v1.0
 *     MAC/Signature Key Info.     No        Structure     v1.0
 *     Attribute Name              No        Text String   v1.0
 *     ... may be repeated
 *     Encoding Option             No        Enumeration   v1.2
 *
 * @param version           the protocol version. If null, the current default
 *                          protocol version is used.
 * @param wrap_method       the key wrapping method
 * @param encr_key_info     the encryption key info node (can be NULL)
 * @param mac_sign_key_info the MAC/Sign key info node (can be NULL)
 * @param encoding          the encoding option (can be 0, defaults to TTLV)
 * @param attr_name_count   the number of attribute names following
 * @param attr_names        the array of attributes names (as const char *)
 *
 * @returns the allocated node, or NULL in case of an error.
 * The reference counts of the nodes specified as parameters which are added to
 * the newly allocated node are increased. The caller must free its reference
 * via kmip_node_free() if no longer needed.
 */
struct kmip_node *kmip_new_key_wrapping_specification(
					const struct kmip_version *version,
					enum kmip_wrapping_method wrap_method,
					struct kmip_node *encr_key_info,
					struct kmip_node *mac_sign_key_info,
					enum kmip_encoding_option encoding,
					unsigned int attr_name_count,
					const char **attr_names)
{
	struct kmip_node *ret = NULL, *wmeth, *enc = NULL, *name;
	unsigned int i;
	int rc;

	if (wrap_method == 0)
		return NULL;

	if (version == NULL)
		version = kmip_get_default_protocol_version();

	wmeth = kmip_node_new_enumeration(KMIP_TAG_WRAPPING_METHOD, NULL,
					  wrap_method);
	if (wmeth == NULL)
		goto out;

	ret = kmip_node_new_structure_va(KMIP_TAG_KEY_WRAPPING_SPECIFICATION,
					 NULL, 3, wmeth, encr_key_info,
					 mac_sign_key_info);


	for (i = 0; i < attr_name_count; i++) {
		if (attr_names[i] == NULL)
			continue;

		name = kmip_node_new_text_string(KMIP_TAG_ATTRIBUTE_NAME, NULL,
						 attr_names[i]);
		if (name == NULL)
			goto error;

		rc = kmip_node_add_structure_element(ret, name);
		kmip_node_free(name);
		if (rc != 0)
			goto error;
	}

	if (encoding != 0 && (version->major > 1 ||
			      (version->major == 1 && version->minor > 1))) {
		enc = kmip_node_new_enumeration(KMIP_TAG_ENCODING_OPTION, NULL,
						encoding);
		if (enc == NULL)
			goto error;

		rc = kmip_node_add_structure_element(ret, enc);
		if (rc != 0)
			goto error;
	}
	goto out;

error:
	kmip_node_free(ret);
	ret = NULL;

out:
	kmip_node_free(wmeth);
	kmip_node_free(enc);

	return ret;
}

/**
 * Constructs a Key Wrapping Specification node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Wrapping Specification              Structure     v1.0
 *     Wrapping Method             Yes       Enumeration   v1.0
 *     Encryption Key Information  No        Structure     v1.0
 *     MAC/Signature Key Info.     No        Structure     v1.0
 *     Attribute Name              No        Text String   v1.0
 *     ... may be repeated
 *     Encoding Option             No        Enumeration   v1.2
 *
 * @param version           the protocol version. If null, the current default
 *                          protocol version is used.
 * @param wrap_method       the key wrapping method
 * @param encr_key_info     the encryption key info node (can be NULL)
 * @param mac_sign_key_info the MAC/Sign key info node (can be NULL)
 * @param encoding          the encoding option (can be 0, defaults to TTLV)
 * @param attr_name_count   the number of atribute names following
 * @param <attr names>      the attributes names (as const char *)
 *
 * @returns the allocated node, or NULL in case of an error.
 * The reference counts of the nodes specified as parameters which are added to
 * the newly allocated node are increased. The caller must free its reference
 * via kmip_node_free() if no longer needed.
 */
struct kmip_node *kmip_new_key_wrapping_specification_va(
					const struct kmip_version *version,
					enum kmip_wrapping_method wrap_method,
					struct kmip_node *encr_key_info,
					struct kmip_node *mac_sign_key_info,
					enum kmip_encoding_option encoding,
					unsigned int attr_name_count, ...)
{
	const char **names = NULL;
	struct kmip_node *ret;
	unsigned int i;
	va_list ap;

	if (attr_name_count > 0) {
		names = calloc(attr_name_count, sizeof(const char *));
		if (names == NULL)
			return NULL;
	}

	va_start(ap, attr_name_count);
	for (i = 0; i < attr_name_count; i++)
		names[i] = va_arg(ap, const char *);
	va_end(ap);

	ret = kmip_new_key_wrapping_specification(version, wrap_method,
						  encr_key_info,
						  mac_sign_key_info, encoding,
						  attr_name_count, names);
	if (names != NULL)
		free(names);

	return ret;
}


/**
 *Gets information from a Key Wrapping Specification node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Wrapping Specification              Structure     v1.0
 *     Wrapping Method             Yes       Enumeration   v1.0
 *     Encryption Key Information  No        Structure     v1.0
 *     MAC/Signature Key Info.     No        Structure     v1.0
 *     Attribute Name              No        Text String   v1.0
 *     ... may be repeated
 *     Encoding Option             No        Enumeration   v1.2

 *
 * @param node              the KMIP node
 * @param wrap_method       On return: the key wrapping method (can be NULL)
 * @param encr_key_info     On return: the encryption key info node
 *                          (can be NULL)
 * @param mac_sign_key_info On return: the MAC/Sign key info node (can be NULL)
 * @param encoding          On return: the encoding option (can be NULL)
 * @param num_attr_names    On return: the number of attributes (can be NULL).
 * @param attr_name_index   The index of the attribute name to return
 * @param attr_name         On return: the attribute name at the specified index
 *                          (can be NULL). Function returns -ENOENT if no name
 *                          is available at the index.
 *
 * @returns 0 on success, or a negative errno in case of an error.
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_key_wrapping_specification(const struct kmip_node *node,
			       enum kmip_wrapping_method *wrap_method,
			       struct kmip_node **encr_key_info,
			       struct kmip_node **mac_sign_key_info,
			       enum kmip_encoding_option *encoding,
			       unsigned int *num_attr_names,
			       unsigned int attr_name_index,
			       const char **attr_name)
{
	struct kmip_node *n;

	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_KEY_WRAPPING_SPECIFICATION)
		return -EBADMSG;

	if (wrap_method != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
						KMIP_TAG_WRAPPING_METHOD, 0);
		if (n == NULL)
			return -EBADMSG;
		*wrap_method = kmip_node_get_enumeration(n);
		kmip_node_free(n);
	}

	if (encoding != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
						KMIP_TAG_ENCODING_OPTION, 0);
		*encoding = (n != NULL ? kmip_node_get_enumeration(n) : 0);
		kmip_node_free(n);
	}

	if (num_attr_names != NULL)
		*num_attr_names = kmip_node_get_structure_element_by_tag_count(
						node, KMIP_TAG_ATTRIBUTE_NAME);

	if (attr_name != NULL) {
		n = kmip_node_get_structure_element_by_tag(node,
				KMIP_TAG_ATTRIBUTE_NAME, attr_name_index);
		if (n == NULL)
			return -ENOENT;
		*attr_name = kmip_node_get_text_string(n);
		kmip_node_free(n);
	}

	if (encr_key_info != NULL)
		*encr_key_info = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_ENCRYPTION_KEY_INFORMATION, 0);

	if (mac_sign_key_info != NULL)
		*mac_sign_key_info =
			kmip_node_get_structure_element_by_tag(node,
				KMIP_TAG_MAC_SIGNATURE_KEY_INFORMATION, 0);

	return 0;
}


/**
 * Constructs a Encryption Key Information or MAC/Signature Key Information
 * node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Information                         Structure     v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *     Cryptographic Parameters    No        Structure     v1.0
 *
 * @param mac_sign          if true a MAC/Signature Key Information node is
 *                          created, otherwise a Encryption Key Information
 *                          node.
 * @param unique_id         the unique ID node
 * @param crypto_params     the cryptographic parameters node (can be NULL)
 *
 * @returns the allocated node, or NULL in case of an error.
 * The reference counts of the nodes specified as parameters which are added to
 * the newly allocated node are increased. The caller must free its reference
 * via kmip_node_free() if no longer needed.
 */
struct kmip_node *kmip_new_key_info(bool mac_sign, struct kmip_node *unique_id,
				    struct kmip_node *crypto_params)
{
	enum kmip_tag tag;

	if (unique_id == NULL)
		return NULL;

	tag = (mac_sign ? KMIP_TAG_MAC_SIGNATURE_KEY_INFORMATION :
					KMIP_TAG_ENCRYPTION_KEY_INFORMATION);
	return kmip_node_new_structure_va(tag, NULL, 2, unique_id,
					  crypto_params);
}

/**
 * Gets the information from an Encryption Key Information or MAC/Signature Key
 * Information node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Information                         Structure     v1.0
 *     Unique Identifier           Yes       Text String   v1.0
 *                                           Enumeration   v2.0
 *                                           Integer       v2.0
 *     Cryptographic Parameters    No        Structure     v1.0
 *
 * @param node              the KMIP node
 * @param unique_id         On return: the unique ID node (can be NULL)
 * @param crypto_params     On return: the cryptographic parameters node (can
 *                          be NULL)
 *
 * @returns 0 on success, or a negative errno in case of an error
 * The reference count of the returned nodes is increased. The caller must
 * free the node via kmip_node_free() when no longer needed.
 */
int kmip_get_key_info(const struct kmip_node *node,
		      struct kmip_node **unique_id,
		      struct kmip_node **crypto_params)
{
	if (node == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_ENCRYPTION_KEY_INFORMATION &&
	    kmip_node_get_tag(node) != KMIP_TAG_MAC_SIGNATURE_KEY_INFORMATION)
		return -EBADMSG;

	if (unique_id != NULL) {
		*unique_id = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_UNIQUE_IDENTIFIER, 0);
		if (*unique_id == NULL)
			return -EBADMSG;
	}

	if (crypto_params != NULL)
		*crypto_params = kmip_node_get_structure_element_by_tag(node,
					KMIP_TAG_CRYPTOGRAPHIC_PARAMETERS, 0);

	return 0;
}

/**
 * Constructs a Transparent Symmetric Key node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Material                            Structure     v1.0
 *     Key                         Yes       Byte String   v1.0
 *
 * @param key               the key
 * @param key_length        the key length
 *
 * @returns the allocated node, or NULL in case of an error.
 */
struct kmip_node *kmip_new_transparent_symmetric_key(const unsigned char *key,
						     uint32_t key_length)
{
	struct kmip_node *k, *ret;

	if (key == NULL || key_length == 0)
		return NULL;

	k = kmip_node_new_byte_string(KMIP_TAG_KEY, NULL, key, key_length);
	if (k == NULL)
		return NULL;

	ret = kmip_node_new_structure_va(KMIP_TAG_KEY_MATERIAL, NULL, 1, k);
	kmip_node_free(k);

	return ret;
}

/**
 * Gets the information from a Transparent Symmetric Key node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Material                            Structure     v1.0
 *     Key                         Yes       Byte String   v1.0
 *
 * @param node              the KMIP node
 * @param key               On return: the key
 * @param key_length        On return: the key length
 *
 * @returns 0 on success, or a negative errno in case of an error
 */
int kmip_get_transparent_symmetric_key(const struct kmip_node *node,
				       const unsigned char **key,
				       uint32_t *key_length)
{
	struct kmip_node *k;

	if (node == NULL || key == NULL || key_length == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_KEY_MATERIAL)
		return -EBADMSG;

	k = kmip_node_get_structure_element_by_tag(node, KMIP_TAG_KEY, 0);
	if (k == NULL)
		return -EBADMSG;

	*key = kmip_node_get_byte_string(k, key_length);
	kmip_node_free(k);

	return 0;
}

/**
 * Constructs a Transparent RSA Public Key node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Material                            Structure     v1.0
 *     Modulus                     Yes       Big Integer   v1.0
 *     Public Exponent             Yes       Big Integer   v1.0
 *
 * @param modulus           the modulus as OpenSSL BIGNUM
 * @param pub_ext           the public exponent as OpenSSL BIGNUM
 *
 * @returns the allocated node, or NULL in case of an error.
 */
struct kmip_node *kmip_new_transparent_rsa_public_key(const BIGNUM *modulus,
						      const BIGNUM *pub_exp)
{
	struct kmip_node *mod, *exp, *ret = NULL;

	if (modulus == NULL || pub_exp == NULL)
		return NULL;

	mod = kmip_node_new_bigint(KMIP_TAG_MODULUS, NULL, modulus);
	exp = kmip_node_new_bigint(KMIP_TAG_PUBLIC_EXPONENT, NULL, pub_exp);
	if (mod == NULL || exp == NULL)
		goto out;

	ret = kmip_node_new_structure_va(KMIP_TAG_KEY_MATERIAL, NULL, 2, mod,
					 exp);

out:
	kmip_node_free(mod);
	kmip_node_free(exp);

	return ret;
}

/**
 * Gets the information from a Transparent RSA Public Key node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Material                            Structure     v1.0
 *     Modulus                     Yes       Big Integer   v1.0
 *     Public Exponent             Yes       Big Integer   v1.0
 *
 * @param node              the KMIP node
 * @param modulus           On return: the modulus as OpenSSL BIGNUM
 * @param pub_ext           On return: the public exponent as OpenSSL BIGNUM
 *
 * @returns 0 on success, or a negative errno in case of an error
 */
int kmip_get_transparent_rsa_public_key(const struct kmip_node *node,
					const BIGNUM **modulus,
					const BIGNUM **pub_exp)
{
	struct kmip_node *n;

	if (node == NULL || modulus == NULL || pub_exp == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_KEY_MATERIAL)
		return -EBADMSG;

	n = kmip_node_get_structure_element_by_tag(node, KMIP_TAG_MODULUS, 0);
	if (n == NULL)
		return -EBADMSG;
	*modulus = kmip_node_get_bigint(n);
	kmip_node_free(n);

	n = kmip_node_get_structure_element_by_tag(node,
						   KMIP_TAG_PUBLIC_EXPONENT, 0);
	if (n == NULL)
		return -EBADMSG;
	*pub_exp = kmip_node_get_bigint(n);
	kmip_node_free(n);

	return 0;
}

/**
 * Constructs a PKCS#1 Public Key node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Material                            Byte String   v1.0
 *
 * @param pub_key           the public key as OpenSSL PKEY
 *
 * @returns the allocated node, or NULL in case of an error.
 */
struct kmip_node *kmip_new_pkcs1_public_key(EVP_PKEY *pub_key)
{
	struct kmip_node *ret = NULL;
	unsigned char *buf = NULL;
	int len;

	if (pub_key == NULL)
		return NULL;

	len = i2d_PublicKey(pub_key, &buf);
	if (len <= 0)
		return NULL;

	ret = kmip_node_new_byte_string(KMIP_TAG_KEY_MATERIAL, NULL, buf, len);

	OPENSSL_free(buf);
	return ret;
}

/**
 * Gets the information from a PKCS#1 Public Key node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Material                            Byte String   v1.0
 *
 * @param node              the KMIP node
 * @param algo              the algorithm of the key
 * @param pub_key           On return: the public key as OpenSSL PKEY. Must be
 *                          freed by the caller using EVP_PKEY_free() when no
 *                          longer needed.
 *
 * @returns 0 on success, or a negative errno in case of an error
 */
int kmip_get_pkcs1_public_key(const struct kmip_node *node,
			      enum kmip_crypto_algo algo,
			      EVP_PKEY **pub_key)
{
	const unsigned char *buf;
	uint32_t len = 0;
	int type;

	if (node == NULL || pub_key == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_KEY_MATERIAL)
		return -EBADMSG;

	buf = kmip_node_get_byte_string(node, &len);
	if (buf == NULL || len == 0)
		return -EBADMSG;

	switch (algo) {
	case KMIP_CRYPTO_ALGO_RSA:
		type = EVP_PKEY_RSA;
		break;
	case KMIP_CRYPTO_ALGO_DSA:
		type = EVP_PKEY_DSA;
		break;
	case KMIP_CRYPTO_ALGO_ECDSA:
		type = EVP_PKEY_EC;
		break;
	default:
		return -EINVAL;
	}

	*pub_key = d2i_PublicKey(type, NULL, &buf, len);
	if (*pub_key == NULL)
		return -EIO;

	return 0;
}

/**
 * Constructs a PKCS#8 Public Key node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Material                            Byte String   v1.0
 *
 * @param pub_key           the public key as OpenSSL PKEY
 *
 * @returns the allocated node, or NULL in case of an error.
 */
struct kmip_node *kmip_new_pkcs8_public_key(EVP_PKEY *pub_key)
{
	struct kmip_node *ret = NULL;
	unsigned char *buf = NULL;
	int len;

	if (pub_key == NULL)
		return NULL;

	len = i2d_PUBKEY(pub_key, &buf);
	if (len <= 0)
		return NULL;

	ret = kmip_node_new_byte_string(KMIP_TAG_KEY_MATERIAL, NULL, buf, len);

	OPENSSL_free(buf);
	return ret;
}

/**
 * Gets the information from a PKCS#8 Public Key node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Material                            Byte String   v1.0
 *
 * @param node              the KMIP node
 * @param pub_key           On return: the public key as OpenSSL PKEY. Must be
 *                          freed by the caller using EVP_PKEY_free() when no
 *                          longer needed.
 *
 * @returns 0 on success, or a negative errno in case of an error
 */
int kmip_get_pkcs8_public_key(const struct kmip_node *node,
			      EVP_PKEY **pub_key)
{
	const unsigned char *buf;
	uint32_t len = 0;

	if (node == NULL || pub_key == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_KEY_MATERIAL)
		return -EBADMSG;

	buf = kmip_node_get_byte_string(node, &len);
	if (buf == NULL || len == 0)
		return -EBADMSG;

	*pub_key = d2i_PUBKEY(NULL, &buf, len);
	if (*pub_key == NULL)
		return -EIO;

	return 0;
}

/**
 * Constructs a Raw Key node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Material                            Byte String   v1.0
 *
 * @param key               the raw key
 * @param key_len           the length of the key
 *
 * @returns the allocated node, or NULL in case of an error.
 */
struct kmip_node *kmip_new_raw_key(const unsigned char *key, uint32_t key_len)
{

	if (key == NULL)
		return NULL;

	return kmip_node_new_byte_string(KMIP_TAG_KEY_MATERIAL, NULL, key,
					 key_len);
}

/**
 * Gets the information from a Raw Key node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Key Material                            Byte String   v1.0
 *
 * @param node              the KMIP node
 * @param key               On return: the raw key
 * @param key_len           On return: the length of the key
 *
 * @returns 0 on success, or a negative errno in case of an error
 */
int kmip_get_raw_key(const struct kmip_node *node, const unsigned char **key,
		     uint32_t *key_len)
{
	if (node == NULL || key == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_KEY_MATERIAL)
		return -EBADMSG;

	*key = kmip_node_get_byte_string(node, key_len);
	if (*key == NULL)
		return -EBADMSG;

	return 0;
}


/**
 * Constructs a Symmetric Key node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Symmetric Key                           Structure     v1.0
 *     Key Block                   Yes       Structure     v1.0
 *
 * @param keyblock          the key block node
 *
 * @returns the allocated node, or NULL in case of an error.
 * The reference counts of the nodes specified as parameters which are added to
 * the newly allocated node are increased. The caller must free its reference
 * via kmip_node_free() if no longer needed.
 */
struct kmip_node *kmip_new_symmetric_key(struct kmip_node *keyblock)
{
	if (keyblock == NULL)
		return NULL;

	return kmip_node_new_structure_va(KMIP_TAG_SYMMETRIC_KEY, NULL, 1,
					  keyblock);
}

/**
 * Gets the information from a Symmetric Key node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Symmetric Key                           Structure     v1.0
 *     Key Block                   Yes       Structure     v1.0
 *
 * @param node              the KMIP node
 * @param keyblock          On return: the key block node
 *
 * @returns 0 on success, or a negative errno in case of an error
 */
int kmip_get_symmetric_key(const struct kmip_node *node,
			   struct kmip_node **keyblock)
{
	if (node == NULL || keyblock == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_SYMMETRIC_KEY)
		return -EBADMSG;

	*keyblock = kmip_node_get_structure_element_by_tag(node,
							   KMIP_TAG_KEY_BLOCK,
							   0);
	if (*keyblock == NULL)
		return -EBADMSG;

	return 0;
}

/**
 * Constructs a Public Key node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Public Key                              Structure     v1.0
 *     Key Block                   Yes       Structure     v1.0
 *
 * @param keyblock          the key block node
 *
 * @returns the allocated node, or NULL in case of an error.
 * The reference counts of the nodes specified as parameters which are added to
 * the newly allocated node are increased. The caller must free its reference
 * via kmip_node_free() if no longer needed.
 */
struct kmip_node *kmip_new_public_key(struct kmip_node *keyblock)
{
	if (keyblock == NULL)
		return NULL;

	return kmip_node_new_structure_va(KMIP_TAG_PUBLIC_KEY, NULL, 1,
					  keyblock);
}

/**
 * Gets the information from a Public Key node:
 *
 * Object                          Required  Encoding      KMIP version
 * ---------------------------------------------------------------------
 *   Public Key                              Structure     v1.0
 *     Key Block                   Yes       Structure     v1.0
 *
 * @param node              the KMIP node
 * @param keyblock          On return: the key block node
 *
 * @returns 0 on success, or a negative errno in case of an error
 */
int kmip_get_public_key(const struct kmip_node *node,
			struct kmip_node **keyblock)
{
	if (node == NULL || keyblock == NULL)
		return -EINVAL;

	if (kmip_node_get_tag(node) != KMIP_TAG_PUBLIC_KEY)
		return -EBADMSG;

	*keyblock = kmip_node_get_structure_element_by_tag(node,
							   KMIP_TAG_KEY_BLOCK,
							   0);
	if (*keyblock == NULL)
		return -EBADMSG;

	return 0;
}