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
//! Handle-based FFI API for cryptographic operations.
//!
//! This module provides C-compatible FFI functions for elliptic curve cryptography (ECC).
//! Large integers are passed as strings (decimal).
use c_char;
use FromStr;
use BigInt;
use cratec_str_to_str;
use crateto_c_string;
use crateCurvePoint;
use crateEcdhKeyPair;
use crateEcdsaSignature;
use crateEllipticCurve;
use crateecdsa_sign;
use crateecdsa_verify;
use crategenerate_keypair;
use crategenerate_shared_secret;
use cratepoint_compress;
use cratepoint_decompress;
use cratePrimeField;
use cratePrimeFieldElement;
/// Use standard decimal string parsing for `BigInts`.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
unsafe
/// Helper to convert `BigInt` to C string (decimal).
pub
// --- EllipticCurve ---
/// Creates a new elliptic curve from decimal strings.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Frees an elliptic curve handle.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
// --- CurvePoint ---
/// Creates an affine curve point from decimal strings.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Creates the point at infinity.
pub extern "C"
/// Checks if a point is the point at infinity.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub const unsafe extern "C"
/// Gets the x-coordinate of an affine point as a string. Returns NULL if infinity.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Gets the y-coordinate of an affine point as a string. Returns NULL if infinity.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Frees a curve point handle.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
// --- Curve Operations ---
/// Checks if a point lies on the given elliptic curve.
///
/// # Arguments
/// * `curve` - Handle to the elliptic curve.
/// * `point` - Handle to the curve point to check.
///
/// # Returns
/// `true` if the point is on the curve, `false` otherwise.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Negates a point on the elliptic curve (P -> -P).
///
/// # Arguments
/// * `curve` - Handle to the elliptic curve.
/// * `point` - Handle to the point to negate.
///
/// # Returns
/// A handle to the negated point, or NULL on error.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Doubles a point on the elliptic curve (P -> 2P).
///
/// # Arguments
/// * `curve` - Handle to the elliptic curve.
/// * `point` - Handle to the point to double.
///
/// # Returns
/// A handle to the doubled point, or NULL on error.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Adds two points on the elliptic curve (P1 + P2).
///
/// # Arguments
/// * `curve` - Handle to the elliptic curve.
/// * `p1` - Handle to the first point.
/// * `p2` - Handle to the second point.
///
/// # Returns
/// A handle to the resulting point, or NULL on error.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Scalar multiplication. k is a string.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
// --- Key Management ---
/// Generates an ECDH key pair for the given curve and generator.
///
/// # Arguments
/// * `curve` - Handle to the elliptic curve.
/// * `generator` - Handle to the curve's base point (generator).
///
/// # Returns
/// A handle to the generated key pair, or NULL on error.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Gets the private key from an ECDH key pair as a decimal string.
///
/// # Arguments
/// * `kp` - Handle to the key pair.
///
/// # Returns
/// A decimal string representing the private key, or NULL on error.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Returns a NEW handle to the public key point (must be freed).
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Frees an ECDH key pair handle.
///
/// # Arguments
/// * `keypair` - Handle to the key pair to free.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Generates a shared secret point using elliptic curve Diffie-Hellman (ECDH).
///
/// # Arguments
/// * `curve` - Handle to the elliptic curve.
/// * `private_key_str` - The private key as a decimal string.
/// * `other_public_key` - Handle to the other party's public key point.
///
/// # Returns
/// A handle to the shared secret point, or NULL on error.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
// --- ECDSA ---
/// Signs a message hash using the Elliptic Curve Digital Signature Algorithm (ECDSA).
///
/// # Arguments
/// * `message_hash_str` - The message hash as a decimal string.
/// * `private_key_str` - The private key as a decimal string.
/// * `curve` - Handle to the elliptic curve.
/// * `generator` - Handle to the base point.
/// * `order_str` - The order of the generator as a decimal string.
///
/// # Returns
/// A handle to the ECDSA signature, or NULL on error.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Verifies an ECDSA signature.
///
/// # Arguments
/// * `message_hash_str` - The message hash as a decimal string.
/// * `signature` - Handle to the ECDSA signature.
/// * `public_key` - Handle to the signer's public key point.
/// * `curve` - Handle to the elliptic curve.
/// * `generator` - Handle to the base point.
/// * `order_str` - The order of the generator as a decimal string.
///
/// # Returns
/// `true` if the signature is valid, `false` otherwise.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Gets the 'r' component of an ECDSA signature as a decimal string.
///
/// # Arguments
/// * `sig` - Handle to the ECDSA signature.
///
/// # Returns
/// A decimal string representing 'r', or NULL on error.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Gets the 's' component of an ECDSA signature as a decimal string.
///
/// # Arguments
/// * `sig` - Handle to the ECDSA signature.
///
/// # Returns
/// A decimal string representing 's', or NULL on error.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Frees an ECDSA signature handle.
///
/// # Arguments
/// * `sig` - Handle to the signature to free.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
// --- Compression ---
/// Compresses a point. Returns the x-coordinate string. sets *`is_odd` to the parity.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
/// Decompresses a point.
///
/// # Safety
///
/// This function is unsafe because it dereferences raw pointers as part of the FFI boundary.
/// The caller must ensure:
/// 1. All pointer arguments are valid and point to initialized memory.
/// 2. The memory layout of passed structures matches the expected C-ABI layout.
/// 3. Any pointers returned by this function are managed according to the API's ownership rules.
pub unsafe extern "C"
///// Frees an elliptic curve handle.
// #[no_mangle]
// pub unsafe extern "C" fn rssn_elliptic_curve_free(curve: *mut EllipticCurve) {
// if !curve.is_null() {
// drop(Box::from_raw(curve));
// }
// }
// /// Creates an affine curve point.
// #[no_mangle]
// pub extern "C" fn rssn_curve_point_affine(x: i64, y: i64, modulus: i64) -> *mut CurvePoint {
// let field = PrimeField::new(BigInt::from(modulus));
// let point = CurvePoint::Affine {
// x: PrimeFieldElement::new(BigInt::from(x), field.clone()),
// y: PrimeFieldElement::new(BigInt::from(y), field),
// };
// Box::into_raw(Box::new(point))
// }
// /// Creates the point at infinity.
// #[no_mangle]
// pub extern "C" fn rssn_curve_point_infinity() -> *mut CurvePoint {
// Box::into_raw(Box::new(CurvePoint::Infinity))
// }
// /// Checks if a point is the point at infinity.
// #[no_mangle]
// pub unsafe extern "C" fn rssn_curve_point_is_infinity(point: *const CurvePoint) -> bool {
// if point.is_null() { return false; }
// (*point).is_infinity()
// }
// /// Frees a curve point handle.
// #[no_mangle]
// pub unsafe extern "C" fn rssn_curve_point_free(point: *mut CurvePoint) {
// if !point.is_null() {
// drop(Box::from_raw(point));
// }
// }
// /// Checks if a point is on the curve.
// #[no_mangle]
// pub unsafe extern "C" fn rssn_curve_is_on_curve(
// curve: *const EllipticCurve,
// point: *const CurvePoint
// ) -> bool {
// if curve.is_null() || point.is_null() { return false; }
// (*curve).is_on_curve(&*point)
// }
// /// Negates a point on the curve (P -> -P).
// #[no_mangle]
// pub unsafe extern "C" fn rssn_curve_negate(
// curve: *const EllipticCurve,
// point: *const CurvePoint
// ) -> *mut CurvePoint {
// if curve.is_null() || point.is_null() { return std::ptr::null_mut(); }
// let result = (*curve).negate(&*point);
// Box::into_raw(Box::new(result))
// }
// /// Doubles a point on the curve (2P).
// #[no_mangle]
// pub unsafe extern "C" fn rssn_curve_double(
// curve: *const EllipticCurve,
// point: *const CurvePoint
// ) -> *mut CurvePoint {
// if curve.is_null() || point.is_null() { return std::ptr::null_mut(); }
// let result = (*curve).double(&*point);
// Box::into_raw(Box::new(result))
// }
// /// Adds two curve points.
// #[no_mangle]
// pub unsafe extern "C" fn rssn_curve_add(
// curve: *const EllipticCurve,
// p1: *const CurvePoint,
// p2: *const CurvePoint
// ) -> *mut CurvePoint {
// if curve.is_null() || p1.is_null() || p2.is_null() {
// return std::ptr::null_mut();
// }
// let result = (*curve).add(&*p1, &*p2);
// Box::into_raw(Box::new(result))
// }
// /// Performs scalar multiplication k * P on elliptic curve.
// #[no_mangle]
// pub unsafe extern "C" fn rssn_curve_scalar_mult(
// curve: *const EllipticCurve,
// k: i64,
// p: *const CurvePoint
// ) -> *mut CurvePoint {
// if curve.is_null() || p.is_null() {
// return std::ptr::null_mut();
// }
// let result = (*curve).scalar_mult(&BigInt::from(k), &*p);
// Box::into_raw(Box::new(result))
// }
// /// Generates an ECDH key pair.
// #[no_mangle]
// pub unsafe extern "C" fn rssn_generate_keypair(
// curve: *const EllipticCurve,
// generator: *const CurvePoint
// ) -> *mut EcdhKeyPair {
// if curve.is_null() || generator.is_null() {
// return std::ptr::null_mut();
// }
// let keypair = generate_keypair(&*curve, &*generator);
// Box::into_raw(Box::new(keypair))
// }
// /// Frees an ECDH key pair.
// #[no_mangle]
// pub unsafe extern "C" fn rssn_keypair_free(keypair: *mut EcdhKeyPair) {
// if !keypair.is_null() {
// drop(Box::from_raw(keypair));
// }
// }
// /// Generates a shared secret using ECDH.
// #[no_mangle]
// pub unsafe extern "C" fn rssn_generate_shared_secret(
// curve: *const EllipticCurve,
// private_key: i64,
// other_public_key: *const CurvePoint
// ) -> *mut CurvePoint {
// if curve.is_null() || other_public_key.is_null() {
// return std::ptr::null_mut();
// }
// let result = generate_shared_secret(&*curve, &BigInt::from(private_key), &*other_public_key);
// Box::into_raw(Box::new(result))
// }
//// Signs a message using ECDSA.
// #[no_mangle]
// pub unsafe extern "C" fn rssn_ecdsa_sign(
// message_hash: i64,
// private_key: i64,
// curve: *const EllipticCurve,
// generator: *const CurvePoint,
// order: i64
// ) -> *mut EcdsaSignature {
// if curve.is_null() || generator.is_null() {
// return std::ptr::null_mut();
// }
// match ecdsa_sign(
// &BigInt::from(message_hash),
// &BigInt::from(private_key),
// &*curve,
// &*generator,
// &BigInt::from(order)
// ) {
// Some(sig) => Box::into_raw(Box::new(sig)),
// None => std::ptr::null_mut(),
// }
// }
// Verifies an ECDSA signature.
// #[no_mangle]
// pub unsafe extern "C" fn rssn_ecdsa_verify(
// message_hash: i64,
// signature: *const EcdsaSignature,
// public_key: *const CurvePoint,
// curve: *const EllipticCurve,
// generator: *const CurvePoint,
// order: i64
// ) -> bool {
// if signature.is_null() || public_key.is_null() || curve.is_null() || generator.is_null() {
// return false;
// }
// ecdsa_verify(
// &BigInt::from(message_hash),
// &*signature,
// &*public_key,
// &*curve,
// &*generator,
// &BigInt::from(order)
// )
// }
// /// Frees an ECDSA signature.
// #[no_mangle]
// pub unsafe extern "C" fn rssn_ecdsa_signature_free(sig: *mut EcdsaSignature) {
// if !sig.is_null() {
// drop(Box::from_raw(sig));
// }
// }