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
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
use {ErrorCode, IndyHandle};

use std::ffi::CString;
use std::ptr::null;
use std::time::Duration;

use utils::callbacks::ClosureHandler;
use utils::results::ResultHandler;

use ffi::{wallet, non_secrets};
use ffi::{ResponseEmptyCB,
          ResponseStringCB,
          ResponseI32CB};

pub struct Wallet {}

impl Wallet {
    /// Registers custom wallet implementation.
    ///
    /// It allows library user to provide custom wallet implementation.
    ///
    /// # Arguments
    /// * `command_handle` - Command handle to map callback to caller context.
    /// * `xtype` - Wallet type name.
    /// * `create` - WalletType create operation handler
    /// * `open` - WalletType open operation handler
    /// * `set` - Wallet set operation handler
    /// * `get` - Wallet get operation handler
    /// * `get_not_expired` - Wallet get_not_expired operation handler
    /// * `list` - Wallet list operation handler(must to return data in the following format: {"values":[{"key":"", "value":""}, {"key":"", "value":""}]}
    /// * `close` - Wallet close operation handler
    /// * `delete` - WalletType delete operation handler
    /// * `free` - Handler that allows to de-allocate strings allocated in caller code
    pub fn register_storage(xtype: &str,
                            create: Option<wallet::WalletCreate>,
                            open: Option<wallet::WalletOpen>,
                            close: Option<wallet::WalletClose>,
                            delete: Option<wallet::WalletDelete>,
                            add_record: Option<wallet::WalletAddRecord>,
                            update_record_value: Option<wallet::WalletUpdateRecordValue>,
                            update_record_tags: Option<wallet::WalletUpdateRecordTags>,
                            add_record_tags: Option<wallet::WalletAddRecordTags>,
                            delete_record_tags: Option<wallet::WalletDeleteRecordTags>,
                            delete_record: Option<wallet::WalletDeleteRecord>,
                            get_record: Option<wallet::WalletGetRecord>,
                            get_record_id: Option<wallet::WalletGetRecordId>,
                            get_record_type: Option<wallet::WalletGetRecordType>,
                            get_record_value: Option<wallet::WalletGetRecordValue>,
                            get_record_tags: Option<wallet::WalletGetRecordTags>,
                            free_record: Option<wallet::WalletFreeRecord>,
                            get_storage_metadata: Option<wallet::WalletGetStorageMetadata>,
                            set_storage_metadata: Option<wallet::WalletSetStorageMetadata>,
                            free_storage_metadata: Option<wallet::WalletFreeStorageMetadata>,
                            search_records: Option<wallet::WalletSearchRecords>,
                            search_all_records: Option<wallet::WalletSearchAllRecords>,
                            get_search_total_count: Option<wallet::WalletGetSearchTotalCount>,
                            fetch_search_next_record: Option<wallet::WalletFetchSearchNextRecord>,
                            free_search: Option<wallet::WalletFreeSearch>) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_register_storage(command_handle,
                                            xtype,
                                            create,
                                            open,
                                            close,
                                            delete,
                                            add_record,
                                            update_record_value,
                                            update_record_tags,
                                            add_record_tags,
                                            delete_record_tags,
                                            delete_record,
                                            get_record,
                                            get_record_id,
                                            get_record_type,
                                            get_record_value,
                                            get_record_tags,
                                            free_record,
                                            get_storage_metadata,
                                            set_storage_metadata,
                                            free_storage_metadata,
                                            search_records,
                                            search_all_records,
                                            get_search_total_count,
                                            fetch_search_next_record,
                                            free_search,
                                            cb);

        ResultHandler::empty(err, receiver)
    }

    /// Registers custom wallet implementation.
    ///
    /// It allows library user to provide custom wallet implementation.
    ///
    /// # Arguments
    /// * `command_handle` - Command handle to map callback to caller context.
    /// * `xtype` - Wallet type name.
    /// * `create` - WalletType create operation handler
    /// * `open` - WalletType open operation handler
    /// * `set` - Wallet set operation handler
    /// * `get` - Wallet get operation handler
    /// * `get_not_expired` - Wallet get_not_expired operation handler
    /// * `list` - Wallet list operation handler(must to return data in the following format: {"values":[{"key":"", "value":""}, {"key":"", "value":""}]}
    /// * `close` - Wallet close operation handler
    /// * `delete` - WalletType delete operation handler
    /// * `free` - Handler that allows to de-allocate strings allocated in caller code
    /// * `timeout` - the maximum time this function waits for a response
    pub fn register_storage_timeout(xtype: &str,
                                    create: Option<wallet::WalletCreate>,
                                    open: Option<wallet::WalletOpen>,
                                    close: Option<wallet::WalletClose>,
                                    delete: Option<wallet::WalletDelete>,
                                    add_record: Option<wallet::WalletAddRecord>,
                                    update_record_value: Option<wallet::WalletUpdateRecordValue>,
                                    update_record_tags: Option<wallet::WalletUpdateRecordTags>,
                                    add_record_tags: Option<wallet::WalletAddRecordTags>,
                                    delete_record_tags: Option<wallet::WalletDeleteRecordTags>,
                                    delete_record: Option<wallet::WalletDeleteRecord>,
                                    get_record: Option<wallet::WalletGetRecord>,
                                    get_record_id: Option<wallet::WalletGetRecordId>,
                                    get_record_type: Option<wallet::WalletGetRecordType>,
                                    get_record_value: Option<wallet::WalletGetRecordValue>,
                                    get_record_tags: Option<wallet::WalletGetRecordTags>,
                                    free_record: Option<wallet::WalletFreeRecord>,
                                    get_storage_metadata: Option<wallet::WalletGetStorageMetadata>,
                                    set_storage_metadata: Option<wallet::WalletSetStorageMetadata>,
                                    free_storage_metadata: Option<wallet::WalletFreeStorageMetadata>,
                                    search_records: Option<wallet::WalletSearchRecords>,
                                    search_all_records: Option<wallet::WalletSearchAllRecords>,
                                    get_search_total_count: Option<wallet::WalletGetSearchTotalCount>,
                                    fetch_search_next_record: Option<wallet::WalletFetchSearchNextRecord>,
                                    free_search: Option<wallet::WalletFreeSearch>,
                                    timeout: Duration) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_register_storage(command_handle,
                                            xtype,
                                            create,
                                            open,
                                            close,
                                            delete,
                                            add_record,
                                            update_record_value,
                                            update_record_tags,
                                            add_record_tags,
                                            delete_record_tags,
                                            delete_record,
                                            get_record,
                                            get_record_id,
                                            get_record_type,
                                            get_record_value,
                                            get_record_tags,
                                            free_record,
                                            get_storage_metadata,
                                            set_storage_metadata,
                                            free_storage_metadata,
                                            search_records,
                                            search_all_records,
                                            get_search_total_count,
                                            fetch_search_next_record,
                                            free_search,
                                            cb);

        ResultHandler::empty_timeout(err, receiver, timeout)
    }

    /// Registers custom wallet implementation.
    ///
    /// It allows library user to provide custom wallet implementation.
    ///
    /// # Arguments
    /// * `command_handle` - Command handle to map callback to caller context.
    /// * `xtype` - Wallet type name.
    /// * `create` - WalletType create operation handler
    /// * `open` - WalletType open operation handler
    /// * `set` - Wallet set operation handler
    /// * `get` - Wallet get operation handler
    /// * `get_not_expired` - Wallet get_not_expired operation handler
    /// * `list` - Wallet list operation handler(must to return data in the following format: {"values":[{"key":"", "value":""}, {"key":"", "value":""}]}
    /// * `close` - Wallet close operation handler
    /// * `delete` - WalletType delete operation handler
    /// * `free` - Handler that allows to de-allocate strings allocated in caller code
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn register_storage_async<F: 'static>(xtype: &str,
                                              create: Option<wallet::WalletCreate>,
                                              open: Option<wallet::WalletOpen>,
                                              close: Option<wallet::WalletClose>,
                                              delete: Option<wallet::WalletDelete>,
                                              add_record: Option<wallet::WalletAddRecord>,
                                              update_record_value: Option<wallet::WalletUpdateRecordValue>,
                                              update_record_tags: Option<wallet::WalletUpdateRecordTags>,
                                              add_record_tags: Option<wallet::WalletAddRecordTags>,
                                              delete_record_tags: Option<wallet::WalletDeleteRecordTags>,
                                              delete_record: Option<wallet::WalletDeleteRecord>,
                                              get_record: Option<wallet::WalletGetRecord>,
                                              get_record_id: Option<wallet::WalletGetRecordId>,
                                              get_record_type: Option<wallet::WalletGetRecordType>,
                                              get_record_value: Option<wallet::WalletGetRecordValue>,
                                              get_record_tags: Option<wallet::WalletGetRecordTags>,
                                              free_record: Option<wallet::WalletFreeRecord>,
                                              get_storage_metadata: Option<wallet::WalletGetStorageMetadata>,
                                              set_storage_metadata: Option<wallet::WalletSetStorageMetadata>,
                                              free_storage_metadata: Option<wallet::WalletFreeStorageMetadata>,
                                              search_records: Option<wallet::WalletSearchRecords>,
                                              search_all_records: Option<wallet::WalletSearchAllRecords>,
                                              get_search_total_count: Option<wallet::WalletGetSearchTotalCount>,
                                              fetch_search_next_record: Option<wallet::WalletFetchSearchNextRecord>,
                                              free_search: Option<wallet::WalletFreeSearch>,
                                              closure: F) -> ErrorCode where F: FnMut(ErrorCode) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec(Box::new(closure));

        Wallet::_register_storage(command_handle,
                                  xtype,
                                  create,
                                  open,
                                  close,
                                  delete,
                                  add_record,
                                  update_record_value,
                                  update_record_tags,
                                  add_record_tags,
                                  delete_record_tags,
                                  delete_record,
                                  get_record,
                                  get_record_id,
                                  get_record_type,
                                  get_record_value,
                                  get_record_tags,
                                  free_record,
                                  get_storage_metadata,
                                  set_storage_metadata,
                                  free_storage_metadata,
                                  search_records,
                                  search_all_records,
                                  get_search_total_count,
                                  fetch_search_next_record,
                                  free_search,
                                  cb)
    }

    fn _register_storage(command_handle: IndyHandle,
                         xtype: &str,
                         create: Option<wallet::WalletCreate>,
                         open: Option<wallet::WalletOpen>,
                         close: Option<wallet::WalletClose>,
                         delete: Option<wallet::WalletDelete>,
                         add_record: Option<wallet::WalletAddRecord>,
                         update_record_value: Option<wallet::WalletUpdateRecordValue>,
                         update_record_tags: Option<wallet::WalletUpdateRecordTags>,
                         add_record_tags: Option<wallet::WalletAddRecordTags>,
                         delete_record_tags: Option<wallet::WalletDeleteRecordTags>,
                         delete_record: Option<wallet::WalletDeleteRecord>,
                         get_record: Option<wallet::WalletGetRecord>,
                         get_record_id: Option<wallet::WalletGetRecordId>,
                         get_record_type: Option<wallet::WalletGetRecordType>,
                         get_record_value: Option<wallet::WalletGetRecordValue>,
                         get_record_tags: Option<wallet::WalletGetRecordTags>,
                         free_record: Option<wallet::WalletFreeRecord>,
                         get_storage_metadata: Option<wallet::WalletGetStorageMetadata>,
                         set_storage_metadata: Option<wallet::WalletSetStorageMetadata>,
                         free_storage_metadata: Option<wallet::WalletFreeStorageMetadata>,
                         search_records: Option<wallet::WalletSearchRecords>,
                         search_all_records: Option<wallet::WalletSearchAllRecords>,
                         get_search_total_count: Option<wallet::WalletGetSearchTotalCount>,
                         fetch_search_next_record: Option<wallet::WalletFetchSearchNextRecord>,
                         free_search: Option<wallet::WalletFreeSearch>,
                         cb: Option<ResponseEmptyCB>) -> ErrorCode {
        let xtype = c_str!(xtype);

        ErrorCode::from(unsafe {
          wallet::indy_register_wallet_storage(command_handle,
                                               xtype.as_ptr(),
                                               create,
                                               open,
                                               close,
                                               delete,
                                               add_record,
                                               update_record_value,
                                               update_record_tags,
                                               add_record_tags,
                                               delete_record_tags,
                                               delete_record,
                                               get_record,
                                               get_record_id,
                                               get_record_type,
                                               get_record_value,
                                               get_record_tags,
                                               free_record,
                                               get_storage_metadata,
                                               set_storage_metadata,
                                               free_storage_metadata,
                                               search_records,
                                               search_all_records,
                                               get_search_total_count,
                                               fetch_search_next_record,
                                               free_search,
                                               cb)
        })
    }

    /// Creates a new secure wallet with the given unique name.
    ///
    /// # Arguments
    /// * `config` - Wallet configuration json. List of supported keys are defined by wallet type.
    ///                    if NULL, then default config will be used.
    /// * `credentials` - Wallet credentials json. List of supported keys are defined by wallet type.
    ///                    if NULL, then default config will be used.
    pub fn create(config: &str, credentials: &str) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_create(command_handle, config, credentials, cb);

        ResultHandler::empty(err, receiver)
    }

    /// Creates a new secure wallet with the given unique name.
    ///
    /// # Arguments
    /// * `config` - Wallet configuration json. List of supported keys are defined by wallet type.
    ///                    if NULL, then default config will be used.
    /// * `credentials` - Wallet credentials json. List of supported keys are defined by wallet type.
    ///                    if NULL, then default config will be used.
    /// * `timeout` - the maximum time this function waits for a response
    pub fn create_timeout(config: &str, credentials: &str, timeout: Duration) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_create(command_handle, config, credentials, cb);

        ResultHandler::empty_timeout(err, receiver, timeout)
    }

    /// Creates a new secure wallet with the given unique name.
    ///
    /// # Arguments
    /// * `config` - Wallet configuration json. List of supported keys are defined by wallet type.
    ///                    if NULL, then default config will be used.
    /// * `credentials` - Wallet credentials json. List of supported keys are defined by wallet type.
    ///                    if NULL, then default config will be used.
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn create_async<F: 'static>(config: &str, credentials: &str, closure: F) -> ErrorCode where F: FnMut(ErrorCode) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec(Box::new(closure));

        Wallet::_create(command_handle, config, credentials, cb)
    }

    fn _create(command_handle: IndyHandle, config: &str, credentials: &str, cb: Option<ResponseEmptyCB>) -> ErrorCode {
        let config = c_str!(config);
        let credentials = c_str!(credentials);

        ErrorCode::from(unsafe {
          wallet::indy_create_wallet(command_handle, config.as_ptr(), credentials.as_ptr(), cb)
        })
    }

    /// Opens the wallet with specific name.
    ///
    /// Wallet with corresponded name must be previously created with indy_create_wallet method.
    /// It is impossible to open wallet with the same name more than once.
    ///
    /// # Arguments
    /// * `runtime_config`  (optional)- Runtime wallet configuration json. if NULL, then default runtime_config will be used. Example:
    /// {
    ///     "freshness_time": string (optional), Amount of minutes to consider wallet value as fresh. Defaults to 24*60.
    ///     ... List of additional supported keys are defined by wallet type.
    /// }
    /// * `credentials` (optional) - Wallet credentials json. List of supported keys are defined by wallet type.
    ///                    if NULL, then default credentials will be used.
    ///
    /// # Returns
    /// Handle to opened wallet to use in methods that require wallet access.
    pub fn open(config: &str, credentials: &str) -> Result<i32, ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec_i32();

        let err = Wallet::_open(command_handle, config, credentials, cb);

        ResultHandler::one(err, receiver)
    }

    /// Opens the wallet with specific name.
    ///
    /// Wallet with corresponded name must be previously created with indy_create_wallet method.
    /// It is impossible to open wallet with the same name more than once.
    ///
    /// # Arguments
    /// * `runtime_config`  (optional)- Runtime wallet configuration json. if NULL, then default runtime_config will be used. Example:
    /// {
    ///     "freshness_time": string (optional), Amount of minutes to consider wallet value as fresh. Defaults to 24*60.
    ///     ... List of additional supported keys are defined by wallet type.
    /// }
    /// * `credentials` (optional) - Wallet credentials json. List of supported keys are defined by wallet type.
    ///                    if NULL, then default credentials will be used.
    /// * `timeout` - the maximum time this function waits for a response
    ///
    /// # Returns
    /// Handle to opened wallet to use in methods that require wallet access.
    pub fn open_timeout(config: &str, credentials: &str, timeout: Duration) -> Result<i32, ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec_i32();

        let err = Wallet::_open(command_handle, config, credentials, cb);

        ResultHandler::one_timeout(err, receiver, timeout)
    }

    /// Opens the wallet with specific name.
    ///
    /// Wallet with corresponded name must be previously created with indy_create_wallet method.
    /// It is impossible to open wallet with the same name more than once.
    ///
    /// # Arguments
    /// * `runtime_config`  (optional)- Runtime wallet configuration json. if NULL, then default runtime_config will be used. Example:
    /// {
    ///     "freshness_time": string (optional), Amount of minutes to consider wallet value as fresh. Defaults to 24*60.
    ///     ... List of additional supported keys are defined by wallet type.
    /// }
    /// * `credentials` (optional) - Wallet credentials json. List of supported keys are defined by wallet type.
    ///                    if NULL, then default credentials will be used.
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn open_async<F: 'static>(config: &str, credentials: &str, closure: F) -> ErrorCode where F: FnMut(ErrorCode, i32) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec_i32(Box::new(closure));

        Wallet::_open(command_handle, config, credentials, cb)
    }

    fn _open(command_handle: IndyHandle, config: &str, credentials: &str, cb: Option<ResponseI32CB>) -> ErrorCode {
        let config = c_str!(config);
        let credentials = c_str!(credentials);

        ErrorCode::from(unsafe {
          wallet::indy_open_wallet(command_handle, config.as_ptr(), credentials.as_ptr(), cb)
        })
    }

    /// Exports opened wallet
    ///
    /// Note this endpoint is EXPERIMENTAL. Function signature and behaviour may change
    /// in the future releases.
    ///
    /// # Arguments:
    /// * `wallet_handle` - wallet handle returned by indy_open_wallet
    /// * `export_config` - JSON containing settings for input operation.
    ///   {
    ///     "path": path of the file that contains exported wallet content
    ///     "key": passphrase used to derive export key
    ///   }
    pub fn export(wallet_handle: IndyHandle, export_config: &str) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_export(command_handle, wallet_handle, export_config, cb);

        ResultHandler::empty(err, receiver)
    }

    /// Exports opened wallet
    ///
    /// Note this endpoint is EXPERIMENTAL. Function signature and behaviour may change
    /// in the future releases.
    ///
    /// # Arguments:
    /// * `wallet_handle` - wallet handle returned by indy_open_wallet
    /// * `export_config` - JSON containing settings for input operation.
    ///   {
    ///     "path": path of the file that contains exported wallet content
    ///     "key": passphrase used to derive export key
    ///   }
    /// * `timeout` - the maximum time this function waits for a response
    pub fn export_timeout(wallet_handle: IndyHandle, export_config: &str, timeout: Duration) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_export(command_handle, wallet_handle, export_config, cb);

        ResultHandler::empty_timeout(err, receiver, timeout)
    }

    /// Exports opened wallet
    ///
    /// Note this endpoint is EXPERIMENTAL. Function signature and behaviour may change
    /// in the future releases.
    ///
    /// # Arguments:
    /// * `wallet_handle` - wallet handle returned by indy_open_wallet
    /// * `export_config` - JSON containing settings for input operation.
    ///   {
    ///     "path": path of the file that contains exported wallet content
    ///     "key": passphrase used to derive export key
    ///   }
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn export_async<F: 'static>(wallet_handle: IndyHandle, export_config: &str, closure: F) -> ErrorCode where F: FnMut(ErrorCode) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec(Box::new(closure));

        Wallet::_export(command_handle, wallet_handle, export_config, cb)
    }

    fn _export(command_handle: IndyHandle, wallet_handle: IndyHandle, export_config: &str, cb: Option<ResponseEmptyCB>) -> ErrorCode {
        let export_config = c_str!(export_config);

        ErrorCode::from(unsafe {
          wallet::indy_export_wallet(command_handle, wallet_handle, export_config.as_ptr(), cb)
        })
    }

    /// Creates a new secure wallet with the given unique name and then imports its content
    /// according to fields provided in import_config
    /// This can be seen as an Wallet::create call with additional content import
    ///
    /// Note this endpoint is EXPERIMENTAL. Function signature and behaviour may change
    /// in the future releases.
    ///
    /// # Arguments
    /// * `config` - Wallet configuration json.
    ///   {
    ///       "storage": <object>  List of supported keys are defined by wallet type.
    ///   }
    /// * `credentials` - Wallet credentials json (if NULL, then default config will be used).
    ///   {
    ///       "key": string,
    ///       "storage": Optional<object>  List of supported keys are defined by wallet type.
    ///
    ///   }
    /// * `import_config` - JSON containing settings for input operation.
    ///   {
    ///     "path": path of the file that contains exported wallet content
    ///     "key": passphrase used to derive export key
    ///   }
    pub fn import(config: &str, credentials: &str, import_config: &str) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_import(command_handle, config, credentials, import_config, cb);

        ResultHandler::empty(err, receiver)
    }

    /// Creates a new secure wallet with the given unique name and then imports its content
    /// according to fields provided in import_config
    /// This can be seen as an Wallet::create call with additional content import
    ///
    /// Note this endpoint is EXPERIMENTAL. Function signature and behaviour may change
    /// in the future releases.
    ///
    /// # Arguments
    /// * `config` - Wallet configuration json.
    ///   {
    ///       "storage": <object>  List of supported keys are defined by wallet type.
    ///   }
    /// * `credentials` - Wallet credentials json (if NULL, then default config will be used).
    ///   {
    ///       "key": string,
    ///       "storage": Optional<object>  List of supported keys are defined by wallet type.
    ///
    ///   }
    /// * `import_config` - JSON containing settings for input operation.
    ///   {
    ///     "path": path of the file that contains exported wallet content
    ///     "key": passphrase used to derive export key
    ///   }
    /// * `timeout` - the maximum time this function waits for a response
    pub fn import_timeout(config: &str, credentials: &str, import_config: &str, timeout: Duration) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_import(command_handle, config, credentials, import_config, cb);

        ResultHandler::empty_timeout(err, receiver, timeout)
    }

    /// Creates a new secure wallet with the given unique name and then imports its content
    /// according to fields provided in import_config
    /// This can be seen as an Wallet::create call with additional content import
    ///
    /// Note this endpoint is EXPERIMENTAL. Function signature and behaviour may change
    /// in the future releases.
    ///
    /// # Arguments
    /// * `config` - Wallet configuration json.
    ///   {
    ///       "storage": <object>  List of supported keys are defined by wallet type.
    ///   }
    /// * `credentials` - Wallet credentials json (if NULL, then default config will be used).
    ///   {
    ///       "key": string,
    ///       "storage": Optional<object>  List of supported keys are defined by wallet type.
    ///
    ///   }
    /// * `import_config_json` - JSON containing settings for input operation.
    ///   {
    ///     "path": path of the file that contains exported wallet content
    ///     "key": passphrase used to derive export key
    ///   }
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn import_async<F: 'static>(config: &str, credentials: &str, import_config: &str, closure: F) -> ErrorCode where F: FnMut(ErrorCode) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec(Box::new(closure));

        Wallet::_import(command_handle, config, credentials, import_config, cb)
    }

    fn _import(command_handle: IndyHandle, config: &str, credentials: &str, import_config: &str, cb: Option<ResponseEmptyCB>) -> ErrorCode {
        let config = c_str!(config);
        let credentials = c_str!(credentials);
        let import_config = c_str!(import_config);

        ErrorCode::from(unsafe {
          wallet::indy_import_wallet(command_handle, config.as_ptr(), credentials.as_ptr(), import_config.as_ptr(), cb)
        })
    }

    /// Deletes created wallet.
    pub fn delete(config: &str, credentials: &str) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_delete(command_handle, config, credentials, cb);

        ResultHandler::empty(err, receiver)
    }

    /// Deletes created wallet.
    ///
    /// # Arguments
    /// * `timeout` - the maximum time this function waits for a response
    pub fn delete_timeout(config: &str, credentials: &str, timeout: Duration) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_delete(command_handle, config, credentials, cb);

        ResultHandler::empty_timeout(err, receiver, timeout)
    }

    /// Deletes created wallet.
    ///
    /// # Arguments
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn delete_async<F: 'static>(config: &str, credentials: &str, closure: F) -> ErrorCode where F: FnMut(ErrorCode) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec(Box::new(closure));

        Wallet::_delete(command_handle, config, credentials, cb)
    }

    fn _delete(command_handle: IndyHandle, config: &str, credentials: &str, cb: Option<ResponseEmptyCB>) -> ErrorCode {
        let config = c_str!(config);
        let credentials = c_str!(credentials);

        ErrorCode::from(unsafe {
          wallet::indy_delete_wallet(command_handle, config.as_ptr(), credentials.as_ptr(), cb)
        })
    }

    /// Closes opened wallet and frees allocated resources.
    ///
    /// # Arguments
    /// * `handle` - wallet handle returned by Wallet::open.
    pub fn close(wallet_handle: IndyHandle) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_close(command_handle, wallet_handle, cb);

        ResultHandler::empty(err, receiver)
    }

    /// Closes opened wallet and frees allocated resources.
    ///
    /// # Arguments
    /// * `handle` - wallet handle returned by Wallet::open.
    /// * `timeout` - the maximum time this function waits for a response
    pub fn close_timeout(wallet_handle: IndyHandle, timeout: Duration) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_close(command_handle, wallet_handle, cb);

        ResultHandler::empty_timeout(err, receiver, timeout)
    }

    /// Closes opened wallet and frees allocated resources.
    ///
    /// # Arguments
    /// * `handle` - wallet handle returned by Wallet::open.
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn close_async<F: 'static>(wallet_handle: IndyHandle, closure: F) -> ErrorCode where F: FnMut(ErrorCode) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec(Box::new(closure));

        Wallet::_close(command_handle, wallet_handle, cb)
    }

    fn _close(command_handle: IndyHandle, wallet_handle: IndyHandle, cb: Option<ResponseEmptyCB>) -> ErrorCode {
        ErrorCode::from(unsafe { wallet::indy_close_wallet(command_handle, wallet_handle, cb) })
    }

    /// Create a new non-secret record in the wallet
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `value` - the value of record
    /// * `tags_json` -  the record tags used for search and storing meta information as json:
    ///   {
    ///     "tagName1": <str>, // string tag (will be stored encrypted)
    ///     "tagName2": <str>, // string tag (will be stored encrypted)
    ///     "~tagName3": <str>, // string tag (will be stored un-encrypted)
    ///     "~tagName4": <str>, // string tag (will be stored un-encrypted)
    ///   }
    ///   Note that null means no tags
    ///   If tag name starts with "~" the tag will be stored un-encrypted that will allow
    ///   usage of this tag in complex search queries (comparison, predicates)
    ///   Encrypted tags can be searched only for exact matching
    pub fn add_record(wallet_handle: IndyHandle, xtype: &str, id: &str, value: &str, tags_json: Option<&str>) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_add_record(command_handle, wallet_handle, xtype, id, value, tags_json, cb);

        ResultHandler::empty(err, receiver)
    }

    /// Create a new non-secret record in the wallet
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `value` - the value of record
    /// * `tags_json` -  the record tags used for search and storing meta information as json:
    ///   {
    ///     "tagName1": <str>, // string tag (will be stored encrypted)
    ///     "tagName2": <str>, // string tag (will be stored encrypted)
    ///     "~tagName3": <str>, // string tag (will be stored un-encrypted)
    ///     "~tagName4": <str>, // string tag (will be stored un-encrypted)
    ///   }
    ///   Note that null means no tags
    ///   If tag name starts with "~" the tag will be stored un-encrypted that will allow
    ///   usage of this tag in complex search queries (comparison, predicates)
    ///   Encrypted tags can be searched only for exact matching
    /// * `timeout` - the maximum time this function waits for a response
    pub fn add_record_timeout(wallet_handle: IndyHandle, xtype: &str, id: &str, value: &str, tags_json: Option<&str>, timeout: Duration) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_add_record(command_handle, wallet_handle, xtype, id, value, tags_json, cb);

        ResultHandler::empty_timeout(err, receiver, timeout)
    }

    /// Create a new non-secret record in the wallet
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `value` - the value of record
    /// * `tags_json` -  the record tags used for search and storing meta information as json:
    ///   {
    ///     "tagName1": <str>, // string tag (will be stored encrypted)
    ///     "tagName2": <str>, // string tag (will be stored encrypted)
    ///     "~tagName3": <str>, // string tag (will be stored un-encrypted)
    ///     "~tagName4": <str>, // string tag (will be stored un-encrypted)
    ///   }
    ///   Note that null means no tags
    ///   If tag name starts with "~" the tag will be stored un-encrypted that will allow
    ///   usage of this tag in complex search queries (comparison, predicates)
    ///   Encrypted tags can be searched only for exact matching
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn add_record_async<F: 'static>(wallet_handle: IndyHandle, xtype: &str, id: &str, value: &str, tags_json: Option<&str>, closure: F) -> ErrorCode where F: FnMut(ErrorCode) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec(Box::new(closure));

        Wallet::_add_record(command_handle, wallet_handle, xtype, id, value, tags_json, cb)
    }

    fn _add_record(command_handle: IndyHandle, wallet_handle: IndyHandle, xtype: &str, id: &str, value: &str, tags_json: Option<&str>, cb: Option<ResponseEmptyCB>) -> ErrorCode {
        let xtype = c_str!(xtype);
        let id = c_str!(id);
        let value = c_str!(value);
        let tags_json_str = opt_c_str!(tags_json);
        ErrorCode::from(unsafe {
            non_secrets::indy_add_wallet_record(command_handle,
                                                wallet_handle,
                                                xtype.as_ptr(),
                                                id.as_ptr(),
                                                value.as_ptr(),
                                                opt_c_ptr!(tags_json, tags_json_str),
                                                 cb)
        })
    }

    /// Update a non-secret wallet record value
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `value` - the new value of record
    pub fn update_record_value(wallet_handle: IndyHandle, xtype: &str, id: &str, value: &str) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_update_record_value(command_handle, wallet_handle, xtype, id, value, cb);

        ResultHandler::empty(err, receiver)
    }

    /// Update a non-secret wallet record value
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `value` - the new value of record
    /// * `timeout` - the maximum time this function waits for a response
    pub fn update_record_value_timeout(wallet_handle: IndyHandle, xtype: &str, id: &str, value: &str, timeout: Duration) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_update_record_value(command_handle, wallet_handle, xtype, id, value, cb);

        ResultHandler::empty_timeout(err, receiver, timeout)
    }

    /// Update a non-secret wallet record value
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `value` - the new value of record
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn update_record_value_async<F: 'static>(wallet_handle: IndyHandle, xtype: &str, id: &str, value: &str, closure: F) -> ErrorCode where F: FnMut(ErrorCode) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec(Box::new(closure));

        Wallet::_update_record_value(command_handle, wallet_handle, xtype, id, value, cb)
    }

    fn _update_record_value(command_handle: IndyHandle, wallet_handle: IndyHandle, xtype: &str, id: &str, value: &str, cb: Option<ResponseEmptyCB>) -> ErrorCode {
        let xtype = c_str!(xtype);
        let id = c_str!(id);
        let value = c_str!(value);

        ErrorCode::from(unsafe{
            non_secrets::indy_update_wallet_record_value(command_handle,
                                                         wallet_handle,
                                                         xtype.as_ptr(),
                                                         id.as_ptr(),
                                                         value.as_ptr(),
                                                         cb)
        })
    }

    /// Update a non-secret wallet record tags
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `tags_json` - the record tags used for search and storing meta information as json:
    ///   {
    ///     "tagName1": <str>, // string tag (will be stored encrypted)
    ///     "tagName2": <str>, // string tag (will be stored encrypted)
    ///     "~tagName3": <str>, // string tag (will be stored un-encrypted)
    ///     "~tagName4": <str>, // string tag (will be stored un-encrypted)
    ///   }
    ///   If tag name starts with "~" the tag will be stored un-encrypted that will allow
    ///   usage of this tag in complex search queries (comparison, predicates)
    ///   Encrypted tags can be searched only for exact matching
    pub fn update_record_tags(wallet_handle: IndyHandle, xtype: &str, id: &str, tags_json: &str) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_update_record_tags(command_handle, wallet_handle, xtype, id, tags_json, cb);

        ResultHandler::empty(err, receiver)
    }

    /// Update a non-secret wallet record tags
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `tags_json` - the record tags used for search and storing meta information as json:
    ///   {
    ///     "tagName1": <str>, // string tag (will be stored encrypted)
    ///     "tagName2": <str>, // string tag (will be stored encrypted)
    ///     "~tagName3": <str>, // string tag (will be stored un-encrypted)
    ///     "~tagName4": <str>, // string tag (will be stored un-encrypted)
    ///   }
    ///   If tag name starts with "~" the tag will be stored un-encrypted that will allow
    ///   usage of this tag in complex search queries (comparison, predicates)
    ///   Encrypted tags can be searched only for exact matching
    /// * `timeout` - the maximum time this function waits for a response
    pub fn update_record_tags_timeout(wallet_handle: IndyHandle, xtype: &str, id: &str, tags_json: &str, timeout: Duration) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_update_record_tags(command_handle, wallet_handle, xtype, id, tags_json, cb);

        ResultHandler::empty_timeout(err, receiver, timeout)
    }

    /// Update a non-secret wallet record tags
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `tags_json` - the record tags used for search and storing meta information as json:
    ///   {
    ///     "tagName1": <str>, // string tag (will be stored encrypted)
    ///     "tagName2": <str>, // string tag (will be stored encrypted)
    ///     "~tagName3": <str>, // string tag (will be stored un-encrypted)
    ///     "~tagName4": <str>, // string tag (will be stored un-encrypted)
    ///   }
    ///   If tag name starts with "~" the tag will be stored un-encrypted that will allow
    ///   usage of this tag in complex search queries (comparison, predicates)
    ///   Encrypted tags can be searched only for exact matching
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn update_record_tags_async<F: 'static>(wallet_handle: IndyHandle, xtype: &str, id: &str, tags_json: &str, closure: F) -> ErrorCode where F: FnMut(ErrorCode) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec(Box::new(closure));

        Wallet::_update_record_tags(command_handle, wallet_handle, xtype, id, tags_json, cb)
    }

    fn _update_record_tags(command_handle: IndyHandle, wallet_handle: IndyHandle, xtype: &str, id: &str, tags_json: &str, cb: Option<ResponseEmptyCB>) -> ErrorCode {
        let xtype = c_str!(xtype);
        let id = c_str!(id);
        let tags_json = c_str!(tags_json);

        ErrorCode::from(unsafe {
          non_secrets::indy_update_wallet_record_tags(command_handle, wallet_handle, xtype.as_ptr(), id.as_ptr(), tags_json.as_ptr(), cb)
        })
    }

    /// Add new tags to the wallet record
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `tags_json` - the record tags used for search and storing meta information as json:
    ///   {
    ///     "tagName1": <str>, // string tag (will be stored encrypted)
    ///     "tagName2": <str>, // string tag (will be stored encrypted)
    ///     "~tagName3": <str>, // string tag (will be stored un-encrypted)
    ///     "~tagName4": <str>, // string tag (will be stored un-encrypted)
    ///   }
    ///   If tag name starts with "~" the tag will be stored un-encrypted that will allow
    ///   usage of this tag in complex search queries (comparison, predicates)
    ///   Encrypted tags can be searched only for exact matching
    ///   Note if some from provided tags already assigned to the record than
    ///     corresponding tags values will be replaced
    pub fn add_record_tags(wallet_handle: IndyHandle, xtype: &str, id: &str, tags_json: &str) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_add_record_tags(command_handle, wallet_handle, xtype, id, tags_json, cb);

        ResultHandler::empty(err, receiver)
    }

    /// Add new tags to the wallet record
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `tags_json` - the record tags used for search and storing meta information as json:
    ///   {
    ///     "tagName1": <str>, // string tag (will be stored encrypted)
    ///     "tagName2": <str>, // string tag (will be stored encrypted)
    ///     "~tagName3": <str>, // string tag (will be stored un-encrypted)
    ///     "~tagName4": <str>, // string tag (will be stored un-encrypted)
    ///   }
    ///   If tag name starts with "~" the tag will be stored un-encrypted that will allow
    ///   usage of this tag in complex search queries (comparison, predicates)
    ///   Encrypted tags can be searched only for exact matching
    ///   Note if some from provided tags already assigned to the record than
    ///     corresponding tags values will be replaced
    /// * `timeout` - the maximum time this function waits for a response
    pub fn add_record_tags_timeout(wallet_handle: IndyHandle, xtype: &str, id: &str, tags_json: &str, timeout: Duration) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_add_record_tags(command_handle, wallet_handle, xtype, id, tags_json, cb);

        ResultHandler::empty_timeout(err, receiver, timeout)
    }

    /// Add new tags to the wallet record
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `tags_json` - the record tags used for search and storing meta information as json:
    ///   {
    ///     "tagName1": <str>, // string tag (will be stored encrypted)
    ///     "tagName2": <str>, // string tag (will be stored encrypted)
    ///     "~tagName3": <str>, // string tag (will be stored un-encrypted)
    ///     "~tagName4": <str>, // string tag (will be stored un-encrypted)
    ///   }
    ///   If tag name starts with "~" the tag will be stored un-encrypted that will allow
    ///   usage of this tag in complex search queries (comparison, predicates)
    ///   Encrypted tags can be searched only for exact matching
    ///   Note if some from provided tags already assigned to the record than
    ///     corresponding tags values will be replaced
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn add_record_tags_async<F: 'static>(wallet_handle: IndyHandle, xtype: &str, id: &str, tags_json: &str, closure: F) -> ErrorCode where F: FnMut(ErrorCode) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec(Box::new(closure));

        Wallet::_add_record_tags(command_handle, wallet_handle, xtype, id, tags_json, cb)
    }

    fn _add_record_tags(command_handle: IndyHandle, wallet_handle: IndyHandle, xtype: &str, id: &str, tags_json: &str, cb: Option<ResponseEmptyCB>) -> ErrorCode {
        let xtype = c_str!(xtype);
        let id = c_str!(id);
        let tags_json = c_str!(tags_json);

        ErrorCode::from(unsafe {
          non_secrets::indy_add_wallet_record_tags(command_handle, wallet_handle, xtype.as_ptr(), id.as_ptr(), tags_json.as_ptr(), cb)
        })
    }

    /// Delete tags from the wallet record
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `tag_names_json` - the list of tag names to remove from the record as json array:
    ///   ["tagName1", "tagName2", ...]
    pub fn delete_record_tags(wallet_handle: IndyHandle, xtype: &str, id: &str, tag_names_json: &str) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_delete_record_tags(command_handle, wallet_handle, xtype, id, tag_names_json, cb);

        ResultHandler::empty(err, receiver)
    }

    /// Delete tags from the wallet record
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `tag_names_json` - the list of tag names to remove from the record as json array:
    ///   ["tagName1", "tagName2", ...]
    /// * `timeout` - the maximum time this function waits for a response
    pub fn delete_record_tags_timeout(wallet_handle: IndyHandle, xtype: &str, id: &str, tag_names_json: &str, timeout: Duration) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_delete_record_tags(command_handle, wallet_handle, xtype, id, tag_names_json, cb);

        ResultHandler::empty_timeout(err, receiver, timeout)
    }

    /// Delete tags from the wallet record
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `tag_names_json` - the list of tag names to remove from the record as json array:
    ///   ["tagName1", "tagName2", ...]
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn delete_record_tags_async<F: 'static>(wallet_handle: IndyHandle, xtype: &str, id: &str, tag_names_json: &str, closure: F) -> ErrorCode where F: FnMut(ErrorCode) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec(Box::new(closure));

        Wallet::_delete_record_tags(command_handle, wallet_handle, xtype, id, tag_names_json, cb)
    }

    fn _delete_record_tags(command_handle: IndyHandle, wallet_handle: IndyHandle, xtype: &str, id: &str, tag_names_json: &str, cb: Option<ResponseEmptyCB>) -> ErrorCode {
        let xtype = c_str!(xtype);
        let id = c_str!(id);
        let tag_names_json = c_str!(tag_names_json);

        ErrorCode::from(unsafe {
          non_secrets::indy_delete_wallet_record_tags(command_handle, wallet_handle, xtype.as_ptr(), id.as_ptr(), tag_names_json.as_ptr(), cb)
        })
    }

    /// Delete an existing wallet record in the wallet
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - record type
    /// * `id` - the id of record
    pub fn delete_record(wallet_handle: IndyHandle, xtype: &str, id: &str) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_delete_record(command_handle, wallet_handle, xtype, id, cb);

        ResultHandler::empty(err, receiver)
    }

    /// Delete an existing wallet record in the wallet
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - record type
    /// * `id` - the id of record
    /// * `timeout` - the maximum time this function waits for a response
    pub fn delete_record_timeout(wallet_handle: IndyHandle, xtype: &str, id: &str, timeout: Duration) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_delete_record(command_handle, wallet_handle, xtype, id, cb);

        ResultHandler::empty_timeout(err, receiver, timeout)
    }

    /// Delete an existing wallet record in the wallet
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - record type
    /// * `id` - the id of record
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn delete_record_async<F: 'static>(wallet_handle: IndyHandle, xtype: &str, id: &str, closure: F) -> ErrorCode where F: FnMut(ErrorCode) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec(Box::new(closure));

        Wallet::_delete_record(command_handle, wallet_handle, xtype, id, cb)
    }

    fn _delete_record(command_handle: IndyHandle, wallet_handle: IndyHandle, xtype: &str, id: &str, cb: Option<ResponseEmptyCB>) -> ErrorCode {
        let xtype = c_str!(xtype);
        let id = c_str!(id);

        ErrorCode::from(unsafe {
          non_secrets::indy_delete_wallet_record(command_handle, wallet_handle, xtype.as_ptr(), id.as_ptr(), cb)
        })
    }

    /// Get an wallet record by id
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `options_json` - //TODO: FIXME: Think about replacing by bitmaks
    ///  {
    ///    retrieveType: (optional, false by default) Retrieve record type,
    ///    retrieveValue: (optional, true by default) Retrieve record value,
    ///    retrieveTags: (optional, false by default) Retrieve record tags
    ///  }
    /// # Returns
    /// * `wallet record json` -
    /// {
    ///   id: "Some id",
    ///   type: "Some type", // present only if retrieveType set to true
    ///   value: "Some value", // present only if retrieveValue set to true
    ///   tags: <tags json>, // present only if retrieveTags set to true
    /// }
    pub fn get_record(wallet_handle: IndyHandle, xtype: &str, id: &str, options_json: &str) -> Result<String, ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec_string();

        let err = Wallet::_get_record(command_handle, wallet_handle, xtype, id, options_json, cb);

        ResultHandler::one(err, receiver)
    }

    /// Get an wallet record by id
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `options_json` - //TODO: FIXME: Think about replacing by bitmaks
    ///  {
    ///    retrieveType: (optional, false by default) Retrieve record type,
    ///    retrieveValue: (optional, true by default) Retrieve record value,
    ///    retrieveTags: (optional, false by default) Retrieve record tags
    ///  }
    /// * `timeout` - the maximum time this function waits for a response
    /// # Returns
    /// * `wallet record json` -
    /// {
    ///   id: "Some id",
    ///   type: "Some type", // present only if retrieveType set to true
    ///   value: "Some value", // present only if retrieveValue set to true
    ///   tags: <tags json>, // present only if retrieveTags set to true
    /// }
    pub fn get_record_timeout(wallet_handle: IndyHandle, xtype: &str, id: &str, options_json: &str, timeout: Duration) -> Result<String, ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec_string();

        let err = Wallet::_get_record(command_handle, wallet_handle, xtype, id, options_json, cb);

        ResultHandler::one_timeout(err, receiver, timeout)
    }

    /// Get an wallet record by id
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `id` - the id of record
    /// * `options_json` - //TODO: FIXME: Think about replacing by bitmaks
    ///  {
    ///    retrieveType: (optional, false by default) Retrieve record type,
    ///    retrieveValue: (optional, true by default) Retrieve record value,
    ///    retrieveTags: (optional, false by default) Retrieve record tags
    ///  }
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn get_record_async<F: 'static>(wallet_handle: IndyHandle, xtype: &str, id: &str, options_json: &str, closure: F) -> ErrorCode where F: FnMut(ErrorCode, String) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec_string(Box::new(closure));

        Wallet::_get_record(command_handle, wallet_handle, xtype, id, options_json, cb)
    }

    fn _get_record(command_handle: IndyHandle, wallet_handle: IndyHandle, xtype: &str, id: &str, options_json: &str, cb: Option<ResponseStringCB>) -> ErrorCode {
        let xtype = c_str!(xtype);
        let id = c_str!(id);
        let options_json = c_str!(options_json);

        ErrorCode::from(unsafe {
          non_secrets::indy_get_wallet_record(command_handle, wallet_handle, xtype.as_ptr(), id.as_ptr(), options_json.as_ptr(), cb)
        })
    }

    /// Search for wallet records.
    ///
    /// Note instead of immediately returning of fetched records
    /// this call returns wallet_search_handle that can be used later
    /// to fetch records by small batches (with indy_fetch_wallet_search_next_records).
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `query_json` - MongoDB style query to wallet record tags:
    ///  {
    ///    "tagName": "tagValue",
    ///    $or: {
    ///      "tagName2": { $regex: 'pattern' },
    ///      "tagName3": { $gte: '123' },
    ///    },
    ///  }
    /// * `options_json` - //TODO: FIXME: Think about replacing by bitmaks
    ///  {
    ///    retrieveRecords: (optional, true by default) If false only "counts" will be calculated,
    ///    retrieveTotalCount: (optional, false by default) Calculate total count,
    ///    retrieveType: (optional, false by default) Retrieve record type,
    ///    retrieveValue: (optional, true by default) Retrieve record value,
    ///    retrieveTags: (optional, false by default) Retrieve record tags,
    ///  }
    /// # Returns
    /// * `search_handle` - Wallet search handle that can be used later
    ///   to fetch records by small batches (with indy_fetch_wallet_search_next_records)
    pub fn open_search(wallet_handle: IndyHandle, xtype: &str, query_json: &str, options_json: &str) -> Result<IndyHandle, ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec_i32();

        let err = Wallet::_open_search(command_handle, wallet_handle, xtype, query_json, options_json, cb);

        ResultHandler::one(err, receiver)
    }

    /// Search for wallet records.
    ///
    /// Note instead of immediately returning of fetched records
    /// this call returns wallet_search_handle that can be used later
    /// to fetch records by small batches (with indy_fetch_wallet_search_next_records).
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `query_json` - MongoDB style query to wallet record tags:
    ///  {
    ///    "tagName": "tagValue",
    ///    $or: {
    ///      "tagName2": { $regex: 'pattern' },
    ///      "tagName3": { $gte: '123' },
    ///    },
    ///  }
    /// * `options_json` - //TODO: FIXME: Think about replacing by bitmaks
    ///  {
    ///    retrieveRecords: (optional, true by default) If false only "counts" will be calculated,
    ///    retrieveTotalCount: (optional, false by default) Calculate total count,
    ///    retrieveType: (optional, false by default) Retrieve record type,
    ///    retrieveValue: (optional, true by default) Retrieve record value,
    ///    retrieveTags: (optional, false by default) Retrieve record tags,
    ///  }
    /// * `timeout` - the maximum time this function waits for a response
    /// # Returns
    /// * `search_handle` - Wallet search handle that can be used later
    ///   to fetch records by small batches (with indy_fetch_wallet_search_next_records)
    pub fn open_search_timeout(wallet_handle: IndyHandle, xtype: &str, query_json: &str, options_json: &str, timeout: Duration) -> Result<IndyHandle, ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec_i32();

        let err = Wallet::_open_search(command_handle, wallet_handle, xtype, query_json, options_json, cb);

        ResultHandler::one_timeout(err, receiver, timeout)
    }

    /// Search for wallet records.
    ///
    /// Note instead of immediately returning of fetched records
    /// this call returns wallet_search_handle that can be used later
    /// to fetch records by small batches (with indy_fetch_wallet_search_next_records).
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `xtype` - allows to separate different record types collections
    /// * `query_json` - MongoDB style query to wallet record tags:
    ///  {
    ///    "tagName": "tagValue",
    ///    $or: {
    ///      "tagName2": { $regex: 'pattern' },
    ///      "tagName3": { $gte: '123' },
    ///    },
    ///  }
    /// * `options_json` - //TODO: FIXME: Think about replacing by bitmaks
    ///  {
    ///    retrieveRecords: (optional, true by default) If false only "counts" will be calculated,
    ///    retrieveTotalCount: (optional, false by default) Calculate total count,
    ///    retrieveType: (optional, false by default) Retrieve record type,
    ///    retrieveValue: (optional, true by default) Retrieve record value,
    ///    retrieveTags: (optional, false by default) Retrieve record tags,
    ///  }
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn open_search_async<F: 'static>(wallet_handle: IndyHandle, xtype: &str, query_json: &str, options_json: &str, closure: F) -> ErrorCode where F: FnMut(ErrorCode, IndyHandle) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec_i32(Box::new(closure));

        Wallet::_open_search(command_handle, wallet_handle, xtype, query_json, options_json, cb)
    }

    fn _open_search(command_handle: IndyHandle, wallet_handle: IndyHandle, xtype: &str, query_json: &str, options_json: &str, cb: Option<ResponseI32CB>) -> ErrorCode {
        let xtype = c_str!(xtype);
        let query_json = c_str!(query_json);
        let options_json = c_str!(options_json);

        ErrorCode::from(unsafe {
          non_secrets::indy_open_wallet_search(command_handle, wallet_handle, xtype.as_ptr(), query_json.as_ptr(), options_json.as_ptr(), cb)
        })
    }

    /// Fetch next records for wallet search.
    ///
    /// Not if there are no records this call returns WalletNoRecords error.
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `wallet_search_handle` - wallet search handle (created by indy_open_wallet_search)
    /// * `count` - Count of records to fetch
    ///
    /// # Returns
    /// * `wallet records json` -
    /// {
    ///   totalCount: <str>, // present only if retrieveTotalCount set to true
    ///   records: [{ // present only if retrieveRecords set to true
    ///       id: "Some id",
    ///       type: "Some type", // present only if retrieveType set to true
    ///       value: "Some value", // present only if retrieveValue set to true
    ///       tags: <tags json>, // present only if retrieveTags set to true
    ///   }],
    /// }
    pub fn fetch_search_next_records(wallet_handle: IndyHandle, wallet_search_handle: IndyHandle, count: usize) -> Result<String, ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec_string();

        let err = Wallet::_fetch_search_next_records(command_handle, wallet_handle, wallet_search_handle, count, cb);

        ResultHandler::one(err, receiver)
    }

    /// Fetch next records for wallet search.
    ///
    /// Not if there are no records this call returns WalletNoRecords error.
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `wallet_search_handle` - wallet search handle (created by indy_open_wallet_search)
    /// * `count` - Count of records to fetch
    /// * `timeout` - the maximum time this function waits for a response
    ///
    /// # Returns
    /// * `wallet records json` -
    /// {
    ///   totalCount: <str>, // present only if retrieveTotalCount set to true
    ///   records: [{ // present only if retrieveRecords set to true
    ///       id: "Some id",
    ///       type: "Some type", // present only if retrieveType set to true
    ///       value: "Some value", // present only if retrieveValue set to true
    ///       tags: <tags json>, // present only if retrieveTags set to true
    ///   }],
    /// }
    pub fn fetch_search_next_records_timeout(wallet_handle: IndyHandle, wallet_search_handle: IndyHandle, count: usize, timeout: Duration) -> Result<String, ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec_string();

        let err = Wallet::_fetch_search_next_records(command_handle, wallet_handle, wallet_search_handle, count, cb);

        ResultHandler::one_timeout(err, receiver, timeout)
    }

    /// Fetch next records for wallet search.
    ///
    /// Not if there are no records this call returns WalletNoRecords error.
    ///
    /// # Arguments
    /// * `wallet_handle` - wallet handle (created by open_wallet)
    /// * `wallet_search_handle` - wallet search handle (created by indy_open_wallet_search)
    /// * `count` - Count of records to fetch
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn fetch_search_next_records_async<F: 'static>(wallet_handle: IndyHandle, wallet_search_handle: IndyHandle, count: usize, closure: F) -> ErrorCode where F: FnMut(ErrorCode, String) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec_string(Box::new(closure));

        Wallet::_fetch_search_next_records(command_handle, wallet_handle, wallet_search_handle, count, cb)
    }

    fn _fetch_search_next_records(command_handle: IndyHandle, wallet_handle: IndyHandle, wallet_search_handle: IndyHandle, count: usize, cb: Option<ResponseStringCB>) -> ErrorCode {
        ErrorCode::from(unsafe {
          non_secrets::indy_fetch_wallet_search_next_records(command_handle, wallet_handle, wallet_search_handle, count, cb)
        })
    }

    /// Close wallet search (make search handle invalid)
    ///
    /// # Arguments
    /// * `wallet_search_handle` - wallet search handle
    pub fn close_search(wallet_search_handle: IndyHandle) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_close_search(command_handle, wallet_search_handle, cb);

        ResultHandler::empty(err, receiver)
    }

    /// Close wallet search (make search handle invalid)
    ///
    /// # Arguments
    /// * `wallet_search_handle` - wallet search handle
    /// * `timeout` - the maximum time this function waits for a response
    pub fn close_search_timeout(wallet_search_handle: IndyHandle, timeout: Duration) -> Result<(), ErrorCode> {
        let (receiver, command_handle, cb) = ClosureHandler::cb_ec();

        let err = Wallet::_close_search(command_handle, wallet_search_handle, cb);

        ResultHandler::empty_timeout(err, receiver, timeout)
    }

    /// Close wallet search (make search handle invalid)
    ///
    /// # Arguments
    /// * `wallet_search_handle` - wallet search handle
    /// * `closure` - the closure that is called when finished
    ///
    /// # Returns
    /// * `errorcode` - errorcode from calling ffi function. The closure receives the return result
    pub fn close_search_async<F: 'static>(wallet_search_handle: IndyHandle, closure: F) -> ErrorCode where F: FnMut(ErrorCode) + Send {
        let (command_handle, cb) = ClosureHandler::convert_cb_ec(Box::new(closure));

        Wallet::_close_search(command_handle, wallet_search_handle, cb)
    }

    fn _close_search(command_handle: IndyHandle, wallet_search_handle: IndyHandle, cb: Option<ResponseEmptyCB>) -> ErrorCode {
        ErrorCode::from(unsafe {
          non_secrets::indy_close_wallet_search(command_handle, wallet_search_handle, cb)
        })
    }

    fn _default_credentials(credentials: Option<&str>) -> CString {
        match credentials {
            Some(s) => c_str!(s),
            None => c_str!(r#"{"key":""}"#)
        }
    }
}