aboutsummaryrefslogtreecommitdiff
path: root/src/cz/crcs/ectester/standalone/libs/jni/mscng.c
blob: 04b0fcf237efb705db96f406faab28395aa8bf73 (plain)
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
#include "native.h"
#include <windows.h>
#include <bcrypt.h>

#include "c_utils.h"

#include <stdio.h>

static jclass provider_class;

#define NT_SUCCESS(status)          (((NTSTATUS)(status)) >= 0)
#define NT_FAILURE(status)          !NT_SUCCESS(status)

#define STATUS_SUCCESS				0x00000000
#define STATUS_INVALID_SIGNATURE	0xC000A000

typedef struct {
	ULONG                   dwVersion;              //Version of the structure
	ECC_CURVE_TYPE_ENUM     dwCurveType;            //Supported curve types.
	ECC_CURVE_ALG_ID_ENUM   dwCurveGenerationAlgId; //For X.592 verification purposes, if we include Seed we will need to include the algorithm ID.
	ULONG                   cbFieldLength;          //Byte length of the fields P, A, B, X, Y.
	ULONG                   cbSubgroupOrder;        //Byte length of the subgroup.
	ULONG                   cbCofactor;             //Byte length of cofactor of G in E.
	ULONG                   cbSeed;                 //Byte length of the seed used to generate the curve.
} BCRYPT_ECC_PARAMETER_HEADER;

JNIEXPORT jobject JNICALL Java_cz_crcs_ectester_standalone_libs_MscngLib_createProvider(JNIEnv *env, jobject self){
    jclass local_provider_class = (*env)->FindClass(env, "cz/crcs/ectester/standalone/libs/jni/NativeProvider$Mscng");
    provider_class = (*env)->NewGlobalRef(env, local_provider_class);

    jmethodID init = (*env)->GetMethodID(env, local_provider_class, "<init>", "(Ljava/lang/String;DLjava/lang/String;)V");

    jstring name =  (*env)->NewStringUTF(env, "Microsoft CNG");
    double version = 1.0;

    return (*env)->NewObject(env, provider_class, init, name, version, name);
}

JNIEXPORT void JNICALL Java_cz_crcs_ectester_standalone_libs_jni_NativeProvider_00024Mscng_setup(JNIEnv *env, jobject self) {
    INIT_PROVIDER(env, provider_class);

    ADD_KPG(env, self, "ECDH", "MscngECDH");
    ADD_KPG(env, self, "ECDSA", "MscngECDSA");

    ADD_KA(env, self, "ECDHwithSHA1KDF", "MscngECDHwithSHA1KDF");
    ADD_KA(env, self, "ECDHwithSHA256KDF", "MscngECDHwithSHA256KDF");
    ADD_KA(env, self, "ECDHwithSHA384KDF", "MscngECDHwithSHA384KDF");
    ADD_KA(env, self, "ECDHwithSHA512KDF", "MscngECDHwithSHA512KDF");

    ADD_SIG(env, self, "SHA1withECDSA", "MscngECDSAwithSHA1");
    ADD_SIG(env, self, "SHA256withECDSA", "MscngECDSAwithSHA256");
    ADD_SIG(env, self, "SHA384withECDSA", "MscngECDSAwithSHA384");
    ADD_SIG(env, self, "SHA512withECDSA", "MscngECDSAwithSHA112");

    init_classes(env, "Mscng");
}

typedef struct {
    LPCSTR name;
    ULONG bits;
} named_curve_t;

static named_curve_t named_curves[] = {
    {"curve25519", 256},
    {"brainpoolP160r1", 160},
    {"brainpoolP160t1", 160},
    {"brainpoolP192r1", 192},
    {"brainpoolP192t1", 192},
    {"brainpoolP224r1", 224},
    {"brainpoolP224t1", 224},
    {"brainpoolP256r1", 256},
    {"brainpoolP256t1", 256},
    {"brainpoolP320r1", 320},
    {"brainpoolP320t1", 320},
    {"brainpoolP384r1", 384},
    {"brainpoolP384t1", 384},
    {"brainpoolP512r1", 512},
    {"brainpoolP512t1", 512},
    {"ec192wapi", 192},
    {"nistP192", 192},
    {"nistP224", 224},
    {"nistP256", 256},
    {"nistP384", 384},
    {"nistP521", 521},
    {"numsP256t1", 256},
    {"numsP384t1", 384},
    {"numsP512t1", 512},
    {"secP160k1", 160},
    {"secP160r1", 160},
    {"secP160r2", 160},
    {"secP192k1", 192},
    {"secP192r1", 192},
    {"secP224k1", 224},
    {"secP224r1", 224},
    {"secP256k1", 256},
    {"secP256r1", 256},
    {"secP384r1", 384},
    {"secP521r1", 521},
    {"wtls12", 224},
    {"wtls7", 160},
    {"wtls9", 160},
    {"x962P192v1", 192},
    {"x962P192v2", 192},
    {"x962P192v3", 192},
    {"x962P239v1", 239},
    {"x962P239v2", 239},
    {"x962P239v3", 239},
    {"x962P256v1", 256}
};

static const named_curve_t* lookup_curve(const char *name) {
    for (size_t i = 0; i < sizeof(named_curves) / sizeof(named_curve_t); ++i) {
        if (strcmp(name, named_curves[i].name) == 0) {
            return &named_curves[i];
        }
    }
    return NULL;
}

static const named_curve_t* lookup_curve_bits(jint bitsize) {
	for (size_t i = 0; i < sizeof(named_curves) / sizeof(named_curve_t); ++i) {
		if (bitsize == named_curves[i].bits) {
			return &named_curves[i];
		}
	}
	return NULL;
}

static ULONG utf_16to8(NPSTR *out_buf, LPCWSTR in_str) {
	INT result = WideCharToMultiByte(CP_UTF8, 0, in_str, -1, NULL, 0, NULL, NULL);
	*out_buf = calloc(result, 1);
	return WideCharToMultiByte(CP_UTF8, 0, in_str, -1, *out_buf, result, NULL, NULL);
}

static ULONG utf_8to16(NWPSTR *out_buf, LPCSTR in_str) {
	INT result = MultiByteToWideChar(CP_UTF8, 0, in_str, -1, NULL, 0);
	*out_buf = calloc(result * sizeof(WCHAR), 1);
	return MultiByteToWideChar(CP_UTF8, 0, in_str, -1, *out_buf, result);
}

// Convert Java String to UTF-16 LPCWSTR null-terminated.
// Returns: Length of LPCWSTR in bytes!
static ULONG utf_strto16(NWPSTR *out_buf, JNIEnv *env, jobject str) {
	jsize len = (*env)->GetStringLength(env, str);
	*out_buf = calloc(len * sizeof(jchar) + 1, 1);
	const jchar *chars = (*env)->GetStringChars(env, str, NULL);
	memcpy(*out_buf, chars, len * sizeof(jchar));
	(*env)->ReleaseStringChars(env, str, chars);
	return len * sizeof(jchar);
}

JNIEXPORT jobject JNICALL Java_cz_crcs_ectester_standalone_libs_MscngLib_getCurves(JNIEnv *env, jobject self) {
	jclass hash_set_class = (*env)->FindClass(env, "java/util/TreeSet");

	jmethodID hash_set_ctr = (*env)->GetMethodID(env, hash_set_class, "<init>", "()V");
	jmethodID hash_set_add = (*env)->GetMethodID(env, hash_set_class, "add", "(Ljava/lang/Object;)Z");

	jobject result = (*env)->NewObject(env, hash_set_class, hash_set_ctr);

	NTSTATUS status;
	BCRYPT_ALG_HANDLE handle;

	if (NT_FAILURE(status = BCryptOpenAlgorithmProvider(&handle, BCRYPT_ECDH_ALGORITHM, MS_PRIMITIVE_PROVIDER, 0))) {
		//err
		wprintf(L"**** Error 0x%x returned by BCryptOpenAlgorithmProvider\n", status);
		return 0;
	}

	ULONG bufSize;
	if (NT_FAILURE(status = BCryptGetProperty(handle, BCRYPT_ECC_CURVE_NAME_LIST, NULL, 0, &bufSize, 0))) {
		//err
		wprintf(L"**** Error 0x%x returned by BCryptGetProperty(length only)\n", status);
		return 0;
	}

	BCRYPT_ECC_CURVE_NAMES *curves = (BCRYPT_ECC_CURVE_NAMES *)calloc(bufSize, 1);
	if (NT_FAILURE(status = BCryptGetProperty(handle, BCRYPT_ECC_CURVE_NAME_LIST, (PBYTE) curves, bufSize, &bufSize, 0))) {
		//err
		wprintf(L"**** Error 0x%x returned by BCryptGetProperty(whole)\n", status);
		return 0;
	}
	for (size_t i = 0; i < curves->dwEccCurveNames; ++i) {
		NPSTR curve_name;
		ULONG len = utf_16to8(&curve_name, curves->pEccCurveNames[i]);
		jstring c_name = (*env)->NewStringUTF(env, curve_name);
		(*env)->CallBooleanMethod(env, result, hash_set_add, c_name);
		free(curve_name);
	}

	free(curves);

	BCryptCloseAlgorithmProvider(handle, 0);
    return result;
}

JNIEXPORT jboolean JNICALL Java_cz_crcs_ectester_standalone_libs_jni_NativeKeyPairGeneratorSpi_00024Mscng_keysizeSupported(JNIEnv *env, jobject self, jint keysize) {
	switch (keysize) {
		case 256:
		case 384:
		case 521:
			return JNI_TRUE;
		default:
			return JNI_FALSE;
	}
}

JNIEXPORT jboolean JNICALL Java_cz_crcs_ectester_standalone_libs_jni_NativeKeyPairGeneratorSpi_00024Mscng_paramsSupported(JNIEnv *env, jobject self, jobject params) {
	if (params == NULL) {
        return JNI_FALSE;
    }

    if ((*env)->IsInstanceOf(env, params, ecgen_parameter_spec_class)) {
        jmethodID get_name = (*env)->GetMethodID(env, ecgen_parameter_spec_class, "getName", "()Ljava/lang/String;");
        jstring name = (*env)->CallObjectMethod(env, params, get_name);
        const char *utf_name = (*env)->GetStringUTFChars(env, name, NULL);
        const named_curve_t *curve = lookup_curve(utf_name);
        (*env)->ReleaseStringUTFChars(env, name, utf_name);
        return curve == NULL ? JNI_FALSE : JNI_TRUE;
    } else if ((*env)->IsInstanceOf(env, params, ec_parameter_spec_class)) {
        jmethodID get_curve = (*env)->GetMethodID(env, ec_parameter_spec_class, "getCurve", "()Ljava/security/spec/EllipticCurve;");
        jobject curve = (*env)->CallObjectMethod(env, params, get_curve);

        jmethodID get_field = (*env)->GetMethodID(env, elliptic_curve_class, "getField", "()Ljava/security/spec/ECField;");
        jobject field = (*env)->CallObjectMethod(env, curve, get_field);

        if ((*env)->IsInstanceOf(env, field, fp_field_class)) {
            return JNI_TRUE;
        } else {
            return JNI_FALSE;
        }
    } else {
        return JNI_FALSE;
    }
}

static jobject bytes_to_biginteger(JNIEnv *env, PBYTE bytes, int len) {
    jmethodID biginteger_init = (*env)->GetMethodID(env, biginteger_class, "<init>", "(I[B)V");
    jbyteArray byte_array = (*env)->NewByteArray(env, len);
    jbyte *data = (*env)->GetByteArrayElements(env, byte_array, NULL);
    memcpy(data, bytes, len);
    (*env)->ReleaseByteArrayElements(env, byte_array, data, 0);
    jobject result = (*env)->NewObject(env, biginteger_class, biginteger_init, 1, byte_array);
    return result;
}

static void biginteger_to_bytes(JNIEnv *env, jobject bigint, PBYTE bytes, ULONG len) {
    jmethodID to_byte_array = (*env)->GetMethodID(env, biginteger_class, "toByteArray", "()[B");

    jbyteArray byte_array = (jbyteArray) (*env)->CallObjectMethod(env, bigint, to_byte_array);
    jsize byte_length = (*env)->GetArrayLength(env, byte_array);
    jbyte *byte_data = (*env)->GetByteArrayElements(env, byte_array, NULL);
    memcpy(bytes, &byte_data[byte_length - len], len);
    (*env)->ReleaseByteArrayElements(env, byte_array, byte_data, JNI_ABORT);
}

static jobject create_ec_param_spec(JNIEnv *env, PBYTE eccParams, PULONG paramLength) {
    //
	//     BCRYPT_ECCFULLKEY_BLOB   header
	//     P[cbFieldLength]              Prime specifying the base field.
	//     A[cbFieldLength]              Coefficient A of the equation y^2 = x^3 + A*x + B mod p
	//     B[cbFieldLength]              Coefficient B of the equation y^2 = x^3 + A*x + B mod p
	//     Gx[cbFieldLength]             X-coordinate of the base point.
	//     Gy[cbFieldLength]             Y-coordinate of the base point.
	//     n[cbSubgroupOrder]            Order of the group generated by G = (x,y)
	//     h[cbCofactor]                 Cofactor of G in E.
	//     S[cbSeed]                     Seed of the curve.

	BCRYPT_ECCFULLKEY_BLOB *header = (BCRYPT_ECCFULLKEY_BLOB*)eccParams;
    PBYTE paramsStart = &eccParams[sizeof(BCRYPT_ECCFULLKEY_BLOB)];

    //cbFieldLength
    PBYTE P = paramsStart;
    PBYTE A = P + header->cbFieldLength;
    PBYTE B = A + header->cbFieldLength;
    PBYTE GX = B + header->cbFieldLength;
    PBYTE GY = GX + header->cbFieldLength;

    //cbSubgroupOrder
    PBYTE N = GY + header->cbFieldLength;

    //cbCofactor
    PBYTE H = N + header->cbSubgroupOrder;

    //cbSeed
    PBYTE S = H + header->cbCofactor;

	*paramLength = sizeof(BCRYPT_ECCFULLKEY_BLOB) + 5 * header->cbFieldLength + header->cbSubgroupOrder + header->cbCofactor + header->cbSeed;

    jobject p_int = bytes_to_biginteger(env, P, header->cbFieldLength);

    jmethodID fp_field_init = (*env)->GetMethodID(env, fp_field_class, "<init>", "(Ljava/math/BigInteger;)V");
    jobject field = (*env)->NewObject(env, fp_field_class, fp_field_init, p_int);

    jobject a_int = bytes_to_biginteger(env, A, header->cbFieldLength);
    jobject b_int = bytes_to_biginteger(env, B, header->cbFieldLength);

    jmethodID elliptic_curve_init = (*env)->GetMethodID(env, elliptic_curve_class, "<init>", "(Ljava/security/spec/ECField;Ljava/math/BigInteger;Ljava/math/BigInteger;)V");
    jobject elliptic_curve = (*env)->NewObject(env, elliptic_curve_class, elliptic_curve_init, field, a_int, b_int);

    jobject gx_int = bytes_to_biginteger(env, GX, header->cbFieldLength);
    jobject gy_int = bytes_to_biginteger(env, GY, header->cbFieldLength);

    jmethodID point_init = (*env)->GetMethodID(env, point_class, "<init>", "(Ljava/math/BigInteger;Ljava/math/BigInteger;)V");
    jobject g = (*env)->NewObject(env, point_class, point_init, gx_int, gy_int);

    jobject n_int = bytes_to_biginteger(env, N, header->cbSubgroupOrder);

    jobject h_int = bytes_to_biginteger(env, H, header->cbCofactor);
    jmethodID bigint_to_int = (*env)->GetMethodID(env, biginteger_class, "intValue", "()I");
    jint cof = (*env)->CallIntMethod(env, h_int, bigint_to_int);

    jmethodID ec_parameter_spec_init = (*env)->GetMethodID(env, ec_parameter_spec_class, "<init>", "(Ljava/security/spec/EllipticCurve;Ljava/security/spec/ECPoint;Ljava/math/BigInteger;I)V");
    return (*env)->NewObject(env, ec_parameter_spec_class, ec_parameter_spec_init, elliptic_curve, g, n_int, cof);
}

static ULONG create_curve(JNIEnv *env, jobject params, PBYTE *curve) {
    jmethodID get_curve = (*env)->GetMethodID(env, ec_parameter_spec_class, "getCurve", "()Ljava/security/spec/EllipticCurve;");
    jobject elliptic_curve = (*env)->CallObjectMethod(env, params, get_curve);

    jmethodID get_field = (*env)->GetMethodID(env, elliptic_curve_class, "getField", "()Ljava/security/spec/ECField;");
    jobject field = (*env)->CallObjectMethod(env, elliptic_curve, get_field);

    jmethodID get_bits = (*env)->GetMethodID(env, fp_field_class, "getFieldSize", "()I");
    jint bits = (*env)->CallIntMethod(env, field, get_bits);
    jint bytes = (bits + 7) / 8;

    jmethodID get_a = (*env)->GetMethodID(env, elliptic_curve_class, "getB", "()Ljava/math/BigInteger;");
    jobject a = (*env)->CallObjectMethod(env, elliptic_curve, get_a);

    jmethodID get_b = (*env)->GetMethodID(env, elliptic_curve_class, "getB", "()Ljava/math/BigInteger;");
    jobject b = (*env)->CallObjectMethod(env, elliptic_curve, get_b);

    jmethodID get_p = (*env)->GetMethodID(env, fp_field_class, "getP", "()Ljava/math/BigInteger;");
    jobject p = (*env)->CallObjectMethod(env, field, get_p);

    jmethodID get_g = (*env)->GetMethodID(env, ec_parameter_spec_class, "getGenerator", "()Ljava/security/spec/ECPoint;");
    jobject g = (*env)->CallObjectMethod(env, params, get_g);

    jmethodID get_x = (*env)->GetMethodID(env, point_class, "getAffineX", "()Ljava/math/BigInteger;");
    jobject gx = (*env)->CallObjectMethod(env, g, get_x);

    jmethodID get_y = (*env)->GetMethodID(env, point_class, "getAffineY", "()Ljava/math/BigInteger;");
    jobject gy = (*env)->CallObjectMethod(env, g, get_y);

    jmethodID get_n = (*env)->GetMethodID(env, ec_parameter_spec_class, "getOrder", "()Ljava/math/BigInteger;");
    jobject n = (*env)->CallObjectMethod(env, params, get_n);

    jmethodID get_h = (*env)->GetMethodID(env, ec_parameter_spec_class, "getCofactor", "()I");
    jint h = (*env)->CallIntMethod(env, params, get_h);

    jmethodID get_bitlength = (*env)->GetMethodID(env, biginteger_class, "bitLength", "()I");
    jint order_bits = (*env)->CallIntMethod(env, n, get_bitlength);
    jint order_bytes = (order_bits + 7) / 8;

    // header_size + 5*bytes + order_bytes + cof_size + 0
    ULONG bufSize = sizeof(BCRYPT_ECC_PARAMETER_HEADER) + 5*bytes + order_bytes + 1 + 0;
    *curve = calloc(bufSize, 1);
    BCRYPT_ECC_PARAMETER_HEADER *header = (BCRYPT_ECC_PARAMETER_HEADER*)*curve;
    header->dwVersion = 1;
    header->dwCurveType = 1; //1 -> Prime short Weierstrass, 2 -> Prime Twisted Edwards, 3 -> Montgomery
    header->dwCurveGenerationAlgId = 0;
    header->cbFieldLength = bytes;
    header->cbSubgroupOrder = order_bytes;
	header->cbCofactor = 1;
    header->cbSeed = 0;

    PBYTE paramsStart = &(*curve)[sizeof(BCRYPT_ECC_PARAMETER_HEADER)];

    biginteger_to_bytes(env, p, paramsStart, bytes);
    biginteger_to_bytes(env, a, paramsStart + bytes, bytes);
    biginteger_to_bytes(env, b, paramsStart + 2*bytes, bytes);
    biginteger_to_bytes(env, gx, paramsStart + 3*bytes, bytes);
    biginteger_to_bytes(env, gy, paramsStart + 4*bytes, bytes);
    biginteger_to_bytes(env, n, paramsStart + 5*bytes, order_bytes);
	PBYTE cof_ptr = (PBYTE) (paramsStart + 5*bytes + order_bytes);
	*cof_ptr = (BYTE)h;
    return bufSize;
}

static ULONG init_algo(JNIEnv *env, BCRYPT_ALG_HANDLE *handle, LPCWSTR algo, jobject params) {
	NTSTATUS status;
    if (NT_FAILURE(status = BCryptOpenAlgorithmProvider(handle, algo, MS_PRIMITIVE_PROVIDER, 0))) {
        //err
		wprintf(L"**** Error 0x%x returned by BCryptOpenAlgorithmProvider\n", status);
        return 0;
    }
	ULONG result = 0;
    if ((*env)->IsInstanceOf(env, params, ecgen_parameter_spec_class)) {
        jmethodID get_name = (*env)->GetMethodID(env, ecgen_parameter_spec_class, "getName", "()Ljava/lang/String;");
        jstring name = (*env)->CallObjectMethod(env, params, get_name);
		jint utf_length = (*env)->GetStringUTFLength(env, name);
		PUCHAR chars = calloc(utf_length + 1, 1);
		(*env)->GetStringUTFRegion(env, name, 0, utf_length, chars);
        const named_curve_t *curve = lookup_curve(chars);
		NWPSTR curve_utf16;
		ULONG ret = utf_8to16(&curve_utf16, chars);
        if (NT_FAILURE(status = BCryptSetProperty(*handle, BCRYPT_ECC_CURVE_NAME, (PUCHAR) curve_utf16, ret * sizeof(WCHAR), 0))) {
            //err
			wprintf(L"**** Error 0x%x returned by BCryptSetProperty\n", status);
            return 0;
        }
		free(chars);
		free(curve_utf16);
		result = curve->bits;
    } else if ((*env)->IsInstanceOf(env, params, ec_parameter_spec_class)) {
        PBYTE curve;
        ULONG curveLen = create_curve(env, params, &curve);
        if (NT_FAILURE(status = BCryptSetProperty(*handle, BCRYPT_ECC_PARAMETERS, curve, curveLen, 0))) {
            //err
			wprintf(L"**** Error 0x%x returned by BCryptSetProperty\n", status);
            return 0;
        }
        free(curve);

		jmethodID get_curve = (*env)->GetMethodID(env, ec_parameter_spec_class, "getCurve", "()Ljava/security/spec/EllipticCurve;");
		jobject elliptic_curve = (*env)->CallObjectMethod(env, params, get_curve);

		jmethodID get_field = (*env)->GetMethodID(env, elliptic_curve_class, "getField", "()Ljava/security/spec/ECField;");
		jobject field = (*env)->CallObjectMethod(env, elliptic_curve, get_field);

		jmethodID get_bits = (*env)->GetMethodID(env, fp_field_class, "getFieldSize", "()I");
		jint bits = (*env)->CallIntMethod(env, field, get_bits);
		result = bits;
    }
    return result;
}

static jobject key_to_privkey(JNIEnv *env, BCRYPT_KEY_HANDLE key) {
	NTSTATUS status;
    ULONG bufSize = 0;
    if (NT_FAILURE(status = BCryptExportKey(key, NULL, BCRYPT_ECCFULLPRIVATE_BLOB, NULL, 0, &bufSize, 0))) {
        //err
		wprintf(L"**** Error 0x%x returned by BCryptExportKey(full, length only)\n", status);
		return NULL;
    }
    if (bufSize == 0) {
        //err
		printf("err0\n");
		return NULL;
    }

	PBYTE fullBuf = calloc(bufSize, 1);
    if (NT_FAILURE(status = BCryptExportKey(key, NULL, BCRYPT_ECCFULLPRIVATE_BLOB, fullBuf, bufSize, &bufSize, 0))) {
        //err
		wprintf(L"**** Error 0x%x returned by BCryptExportKey(full, whole)\n", status);
		return NULL;
	}

	ULONG paramLength;
	jobject ec_priv_param_spec = create_ec_param_spec(env, fullBuf, &paramLength);

    // fullBuf looks like:
	//     BCRYPT_ECCFULLKEY_BLOB   header
	//     P[cbFieldLength]              Prime specifying the base field.
	//     A[cbFieldLength]              Coefficient A of the equation y^2 = x^3 + A*x + B mod p
	//     B[cbFieldLength]              Coefficient B of the equation y^2 = x^3 + A*x + B mod p
	//     Gx[cbFieldLength]             X-coordinate of the base point.
	//     Gy[cbFieldLength]             Y-coordinate of the base point.
	//     n[cbSubgroupOrder]            Order of the group generated by G = (x,y)
	//     h[cbCofactor]                 Cofactor of G in E.
	//     S[cbSeed]                     Seed of the curve.
	//     Qx[cbFieldLength]             X-coordinate of the public point.
	//     Qy[cbFieldLength]             Y-coordinate of the public point.
	//     d[cbSubgroupOrder]            Private key.
	BCRYPT_ECCFULLKEY_BLOB *privHeader = (BCRYPT_ECCFULLKEY_BLOB*)fullBuf;
    PBYTE priv_x = &fullBuf[paramLength];
    PBYTE priv_y = priv_x + privHeader->cbFieldLength;
    PBYTE priv = priv_y + privHeader->cbFieldLength;

    jbyteArray header_bytes = (*env)->NewByteArray(env, paramLength);
    jbyte *header_data = (*env)->GetByteArrayElements(env, header_bytes, NULL);
    memcpy(header_data, privHeader, paramLength);
    (*env)->ReleaseByteArrayElements(env, header_bytes, header_data, 0);
    
    jbyteArray x_bytes = (*env)->NewByteArray(env, privHeader->cbFieldLength);
    jbyte *x_data = (*env)->GetByteArrayElements(env, x_bytes, NULL);
    memcpy(x_data, priv_x, privHeader->cbFieldLength);
    (*env)->ReleaseByteArrayElements(env, x_bytes, x_data, 0);

    jbyteArray y_bytes = (*env)->NewByteArray(env, privHeader->cbFieldLength);
    jbyte *y_data = (*env)->GetByteArrayElements(env, y_bytes, NULL);
    memcpy(y_data, priv_y, privHeader->cbFieldLength);
    (*env)->ReleaseByteArrayElements(env, y_bytes, y_data, 0);

    jbyteArray priv_bytes = (*env)->NewByteArray(env, privHeader->cbSubgroupOrder);
    jbyte *key_priv = (*env)->GetByteArrayElements(env, priv_bytes, NULL);
    memcpy(key_priv, priv, privHeader->cbSubgroupOrder);
    (*env)->ReleaseByteArrayElements(env, priv_bytes, key_priv, 0);

	free(fullBuf);
    
    jmethodID ec_priv_init = (*env)->GetMethodID(env, privkey_class, "<init>", "([B[B[B[BLjava/security/spec/ECParameterSpec;)V");
    return (*env)->NewObject(env, privkey_class, ec_priv_init, header_bytes, x_bytes, y_bytes, priv_bytes, ec_priv_param_spec);
}

static jobject key_to_pubkey(JNIEnv *env, BCRYPT_KEY_HANDLE key) {
	NTSTATUS status;
    ULONG bufSize = 0;
    if (NT_FAILURE(status = BCryptExportKey(key, NULL, BCRYPT_ECCFULLPUBLIC_BLOB, NULL, 0, &bufSize, 0))) {
        //err
		wprintf(L"**** Error 0x%x returned by BCryptExportKey(full, length only)\n", status);
		return NULL;
    }
	if (bufSize == 0) {
		//err
		printf("err0\n");
		return NULL;
	}

	PBYTE fullBuf = calloc(bufSize, 1);
    if (NT_FAILURE(status = BCryptExportKey(key, NULL, BCRYPT_ECCFULLPUBLIC_BLOB, fullBuf, bufSize, &bufSize, 0))) {
        //err
		wprintf(L"**** Error 0x%x returned by BCryptExportKey(full, whole)\n", status);
		return NULL;
    }

	ULONG paramLength;
	jobject ec_pub_param_spec = create_ec_param_spec(env, fullBuf, &paramLength);

	// fullBuf looks like:
	//     BCRYPT_ECCFULLKEY_BLOB   header
	//     P[cbFieldLength]              Prime specifying the base field.
	//     A[cbFieldLength]              Coefficient A of the equation y^2 = x^3 + A*x + B mod p
	//     B[cbFieldLength]              Coefficient B of the equation y^2 = x^3 + A*x + B mod p
	//     Gx[cbFieldLength]             X-coordinate of the base point.
	//     Gy[cbFieldLength]             Y-coordinate of the base point.
	//     n[cbSubgroupOrder]            Order of the group generated by G = (x,y)
	//     h[cbCofactor]                 Cofactor of G in E.
	//     S[cbSeed]                     Seed of the curve.
	//     Qx[cbFieldLength]			 X-coordinate of the public point.
	//     Qy[cbFieldLength]			 Y-coordinate of the public point.
	BCRYPT_ECCFULLKEY_BLOB *pubHeader = (BCRYPT_ECCFULLKEY_BLOB*)fullBuf;
    PBYTE pub_x = &fullBuf[paramLength];
    PBYTE pub_y = pub_x + pubHeader->cbFieldLength;

    jbyteArray header_bytes = (*env)->NewByteArray(env, paramLength);
    jbyte *header_data = (*env)->GetByteArrayElements(env, header_bytes, NULL);
    memcpy(header_data, pubHeader, paramLength);
    (*env)->ReleaseByteArrayElements(env, header_bytes, header_data, 0);

    jbyteArray x_bytes = (*env)->NewByteArray(env, pubHeader->cbFieldLength);
    jbyte *x_data = (*env)->GetByteArrayElements(env, x_bytes, NULL);
    memcpy(x_data, pub_x, pubHeader->cbFieldLength);
    (*env)->ReleaseByteArrayElements(env, x_bytes, x_data, 0);

    jbyteArray y_bytes = (*env)->NewByteArray(env, pubHeader->cbFieldLength);
    jbyte *y_data = (*env)->GetByteArrayElements(env, y_bytes, NULL);
    memcpy(y_data, pub_y, pubHeader->cbFieldLength);
    (*env)->ReleaseByteArrayElements(env, y_bytes, y_data, 0);

	free(fullBuf);

    jmethodID ec_pub_init = (*env)->GetMethodID(env, pubkey_class, "<init>", "([B[B[BLjava/security/spec/ECParameterSpec;)V");
    return (*env)->NewObject(env, pubkey_class, ec_pub_init, header_bytes, x_bytes, y_bytes, ec_pub_param_spec);
}

JNIEXPORT jobject JNICALL Java_cz_crcs_ectester_standalone_libs_jni_NativeKeyPairGeneratorSpi_00024Mscng_generate__ILjava_security_SecureRandom_2(JNIEnv *env, jobject self, jint keysize, jobject random) {
	NTSTATUS status;
	BCRYPT_ALG_HANDLE handle = NULL;

	jclass mscng_kpg_class = (*env)->FindClass(env, "cz/crcs/ectester/standalone/libs/jni/NativeKeyPairGeneratorSpi$Mscng");
	jfieldID type_id = (*env)->GetFieldID(env, mscng_kpg_class, "type", "Ljava/lang/String;");
	jstring type = (jstring)(*env)->GetObjectField(env, self, type_id);
	const char* type_data = (*env)->GetStringUTFChars(env, type, NULL);
	LPCWSTR algo;
	if (strcmp(type_data, "ECDH") == 0) {
		switch (keysize) {
			case 256:
				algo = BCRYPT_ECDH_P256_ALGORITHM;
				break;
			case 384:
				algo = BCRYPT_ECDH_P384_ALGORITHM;
				break;
			case 521:
				algo = BCRYPT_ECDH_P521_ALGORITHM;
				break;
			default:
				//err
				break;
		}
	} else if (strcmp(type_data, "ECDSA") == 0) {
		switch (keysize) {
			case 256:
				algo = BCRYPT_ECDSA_P256_ALGORITHM;
				break;
			case 384:
				algo = BCRYPT_ECDSA_P384_ALGORITHM;
				break;
			case 521:
				algo = BCRYPT_ECDSA_P521_ALGORITHM;
				break;
			default:
				//err
				break;
		}
	} else {
		//err
	}
	(*env)->ReleaseStringUTFChars(env, type, type_data);

	if (NT_FAILURE(status = BCryptOpenAlgorithmProvider(&handle, algo, MS_PRIMITIVE_PROVIDER, 0))) {
		//err
		wprintf(L"**** Error 0x%x returned by BCryptOpenAlgorithmProvider\n", status);
		return NULL;
	}

	BCRYPT_KEY_HANDLE key = NULL;

	if (NT_FAILURE(status = BCryptGenerateKeyPair(handle, &key, keysize, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptGenerateKeyPair\n", status);
	}

	if (NT_FAILURE(status = BCryptFinalizeKeyPair(key, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptFinalizeKeyPair\n", status);
	}

	jobject privkey = key_to_privkey(env, key);
	jobject pubkey = key_to_pubkey(env, key);

	jmethodID keypair_init = (*env)->GetMethodID(env, keypair_class, "<init>", "(Ljava/security/PublicKey;Ljava/security/PrivateKey;)V");

	BCryptDestroyKey(key);
	BCryptCloseAlgorithmProvider(handle, 0);
	return (*env)->NewObject(env, keypair_class, keypair_init, pubkey, privkey);
}

JNIEXPORT jobject JNICALL Java_cz_crcs_ectester_standalone_libs_jni_NativeKeyPairGeneratorSpi_00024Mscng_generate__Ljava_security_spec_AlgorithmParameterSpec_2Ljava_security_SecureRandom_2(JNIEnv *env, jobject self, jobject params, jobject random){
	NTSTATUS status;
    BCRYPT_ALG_HANDLE handle = NULL;
    BCRYPT_KEY_HANDLE key = NULL;
	
    jclass mscng_kpg_class = (*env)->FindClass(env, "cz/crcs/ectester/standalone/libs/jni/NativeKeyPairGeneratorSpi$Mscng");
    jfieldID type_id = (*env)->GetFieldID(env, mscng_kpg_class, "type", "Ljava/lang/String;");
    jstring type = (jstring) (*env)->GetObjectField(env, self, type_id);
    const char* type_data = (*env)->GetStringUTFChars(env, type, NULL);
    LPCWSTR algo;
    if (strcmp(type_data, "ECDH") == 0) {
        algo = BCRYPT_ECDH_ALGORITHM;
    } else if (strcmp(type_data, "ECDSA") == 0) {
        algo = BCRYPT_ECDSA_ALGORITHM;
    } else {
		//err
    }
    (*env)->ReleaseStringUTFChars(env, type, type_data);

	ULONG bits = init_algo(env, &handle, algo, params);
    if (bits == 0) {
		//err
    }

    if (NT_FAILURE(status = BCryptGenerateKeyPair(handle, &key, bits, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptGenerateKeyPair\n", status);
    }

    if (NT_FAILURE(status = BCryptFinalizeKeyPair(key, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptFinalizeKeyPair\n", status);
    }

    jobject privkey = key_to_privkey(env, key);
    jobject pubkey = key_to_pubkey(env, key);

    jmethodID keypair_init = (*env)->GetMethodID(env, keypair_class, "<init>", "(Ljava/security/PublicKey;Ljava/security/PrivateKey;)V");

    BCryptDestroyKey(key);
    BCryptCloseAlgorithmProvider(handle, 0);
    return (*env)->NewObject(env, keypair_class, keypair_init, pubkey, privkey);
}

JNIEXPORT jbyteArray JNICALL Java_cz_crcs_ectester_standalone_libs_jni_NativeKeyAgreementSpi_00024Mscng_generateSecret(JNIEnv *env, jobject self, jbyteArray pubkey, jbyteArray privkey, jobject params) {
	NTSTATUS status;
	printf("generateSecret!\n");

    jclass mscng_ka_class = (*env)->FindClass(env, "cz/crcs/ectester/standalone/libs/jni/NativeKeyAgreementSpi$Mscng");
    jfieldID type_id = (*env)->GetFieldID(env, mscng_ka_class, "type", "Ljava/lang/String;");
    jstring type = (jstring) (*env)->GetObjectField(env, self, type_id);
    const char* type_data = (*env)->GetStringUTFChars(env, type, NULL);
    LPCWSTR kdf_algo;
    if (strcmp(type_data, "ECDHwithSHA1KDF") == 0) {
        kdf_algo = BCRYPT_SHA1_ALGORITHM;
    } else if (strcmp(type_data, "ECDHwithSHA256KDF") == 0) {
        kdf_algo = BCRYPT_SHA256_ALGORITHM;
    } else if (strcmp(type_data, "ECDHwithSHA384KDF") == 0) {
        kdf_algo = BCRYPT_SHA384_ALGORITHM;
    } else if (strcmp(type_data, "ECDHwithSHA512KDF") == 0) {
        kdf_algo = BCRYPT_SHA512_ALGORITHM;
    } else {
        //err
    }
    (*env)->ReleaseStringUTFChars(env, type, type_data);

    BCRYPT_ALG_HANDLE kaHandle = NULL;

    if (!init_algo(env, &kaHandle, BCRYPT_ECDH_ALGORITHM, params)) {
        //err
    }

    BCRYPT_KEY_HANDLE pkey = NULL;
    BCRYPT_KEY_HANDLE skey = NULL;

    jint pub_length = (*env)->GetArrayLength(env, pubkey);
    jbyte *pub_data = (*env)->GetByteArrayElements(env, pubkey, NULL);
    if (NT_FAILURE(status = BCryptImportKeyPair(kaHandle, NULL, BCRYPT_ECCFULLPUBLIC_BLOB, &pkey, pub_data, pub_length, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptImportKeyPair(pub)\n", status);
    }
    (*env)->ReleaseByteArrayElements(env, pubkey, pub_data, JNI_ABORT);

    jint priv_length = (*env)->GetArrayLength(env, privkey);
    jbyte *priv_data = (*env)->GetByteArrayElements(env, privkey, NULL);
    if (NT_FAILURE(status = BCryptImportKeyPair(kaHandle, NULL, BCRYPT_ECCFULLPRIVATE_BLOB, &skey, priv_data, priv_length, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptImportKeyPair(priv)\n", status);
    }
    (*env)->ReleaseByteArrayElements(env, privkey, priv_data, JNI_ABORT);

    BCRYPT_SECRET_HANDLE ka = NULL;

    if (NT_FAILURE(status = BCryptSecretAgreement(skey, pkey, &ka, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptSecretAgreement\n", status);
    }

    BCryptBufferDesc paramList = {0};
    BCryptBuffer kdfParams[1] = {0};
    kdfParams[0].BufferType = KDF_HASH_ALGORITHM;
    kdfParams[0].cbBuffer = (DWORD)((wcslen(kdf_algo) + 1) * sizeof(WCHAR));
    kdfParams[0].pvBuffer = (PVOID)kdf_algo;
    paramList.cBuffers = 1;
    paramList.pBuffers = kdfParams;
    paramList.ulVersion = BCRYPTBUFFER_VERSION;

    //TODO: Is this the actual KDF-1 or KDF-2 algo or something completely different? *This does not use the counter!!!*
    ULONG bufSize = 0;
    if (NT_FAILURE(status = BCryptDeriveKey(ka, BCRYPT_KDF_HASH, &paramList, NULL, 0, &bufSize, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptDeriveKey(length only)\n", status);
    }

	PBYTE derived = calloc(bufSize, 1);
    if (NT_FAILURE(status = BCryptDeriveKey(ka, BCRYPT_KDF_HASH, &paramList, derived, bufSize, &bufSize, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptDeriveKey(whole)\n", status);
    }

    jbyteArray result = (*env)->NewByteArray(env, bufSize);
    jbyte *result_data = (*env)->GetByteArrayElements(env, result, NULL);
    memcpy(result_data, derived, bufSize);
    (*env)->ReleaseByteArrayElements(env, result, result_data, 0);

	free(derived);

    BCryptDestroyKey(pkey);
    BCryptDestroyKey(skey);
    BCryptDestroySecret(ka);
    BCryptCloseAlgorithmProvider(kaHandle, 0);
    return result;
}

static LPCWSTR get_sighash_algo(JNIEnv *env, jobject self) {
    jclass mscng_sig_class = (*env)->FindClass(env, "cz/crcs/ectester/standalone/libs/jni/NativeSignatureSpi$Mscng");
    jfieldID type_id = (*env)->GetFieldID(env, mscng_sig_class, "type", "Ljava/lang/String;");
    jstring type = (jstring) (*env)->GetObjectField(env, self, type_id);
    const char* type_data = (*env)->GetStringUTFChars(env, type, NULL);
    LPCWSTR hash_algo;
    if (strcmp(type_data, "SHA1withECDSA") == 0) {
        hash_algo = BCRYPT_SHA1_ALGORITHM;
    } else if (strcmp(type_data, "SHA256withECDSA") == 0) {
        hash_algo = BCRYPT_SHA256_ALGORITHM;
    } else if (strcmp(type_data, "SHA384withECDSA") == 0) {
        hash_algo = BCRYPT_SHA384_ALGORITHM;
    } else if (strcmp(type_data, "SHA512withECDSA") == 0) {
        hash_algo = BCRYPT_SHA512_ALGORITHM;
    } else {
        //err
    }
    (*env)->ReleaseStringUTFChars(env, type, type_data);
    return hash_algo;
}

JNIEXPORT jbyteArray JNICALL Java_cz_crcs_ectester_standalone_libs_jni_NativeSignatureSpi_00024Mscng_sign(JNIEnv *env, jobject self, jbyteArray data, jbyteArray privkey, jobject params) {
	NTSTATUS status;
    LPCWSTR hash_algo = get_sighash_algo(env, self);

    BCRYPT_ALG_HANDLE sigHandle = NULL;

	if (NT_FAILURE(status = BCryptOpenAlgorithmProvider(&sigHandle, BCRYPT_ECDSA_ALGORITHM, MS_PRIMITIVE_PROVIDER, 0))) {
		//err
		wprintf(L"**** Error 0x%x returned by BCryptOpenAlgorithmProvider\n", status);
		return 0;
	}

    BCRYPT_ALG_HANDLE hashHandle = NULL;

    if (NT_FAILURE(status = BCryptOpenAlgorithmProvider(&hashHandle, hash_algo, NULL, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptOpenAlgorithmProvider\n", status);
    }

    DWORD dummy = 0;
    DWORD hash_len = 0;
    if (NT_FAILURE(status = BCryptGetProperty(hashHandle, BCRYPT_HASH_LENGTH, (PBYTE)&hash_len, sizeof(DWORD), &dummy, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptGetProperty(hash len)\n", status);
    }

	PBYTE hash = calloc(hash_len, 1);

    jint data_len = (*env)->GetArrayLength(env, data);
    jbyte *data_bytes = (*env)->GetByteArrayElements(env, data, NULL);
    if (NT_FAILURE(status = BCryptHash(hashHandle, NULL, 0, data_bytes, data_len, hash, hash_len))) {
		wprintf(L"**** Error 0x%x returned by BCryptHash\n", status);
    }
    (*env)->ReleaseByteArrayElements(env, data, data_bytes, JNI_ABORT);

    BCRYPT_KEY_HANDLE skey = NULL;

    jint priv_length = (*env)->GetArrayLength(env, privkey);
    jbyte *priv_data = (*env)->GetByteArrayElements(env, privkey, NULL);
    if (NT_FAILURE(status = BCryptImportKeyPair(sigHandle, NULL, BCRYPT_ECCFULLPRIVATE_BLOB, &skey, priv_data, priv_length, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptImportKeyPair\n", status);
    }
    (*env)->ReleaseByteArrayElements(env, privkey, priv_data, JNI_ABORT);

    DWORD sig_len = 0;
    if (NT_FAILURE(status = BCryptSignHash(skey, NULL, hash, hash_len, NULL, 0, &sig_len, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptSignHash(len only)\n", status);
    }

    jbyteArray sig = (*env)->NewByteArray(env, sig_len);
    jbyte *sig_data = (*env)->GetByteArrayElements(env, sig, NULL);
    if (NT_FAILURE(status = BCryptSignHash(skey, NULL, hash, hash_len, sig_data, sig_len, &sig_len, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptSignHash(do)\n", status);
    }
    (*env)->ReleaseByteArrayElements(env, sig, sig_data, 0);

	free(hash);

    BCryptDestroyKey(skey);
    BCryptCloseAlgorithmProvider(hashHandle, 0);
    BCryptCloseAlgorithmProvider(sigHandle, 0);

    return sig;
}

JNIEXPORT jboolean JNICALL Java_cz_crcs_ectester_standalone_libs_jni_NativeSignatureSpi_00024Mscng_verify(JNIEnv *env, jobject self, jbyteArray sig, jbyteArray data, jbyteArray pubkey, jobject params) {
	NTSTATUS status;
    LPCWSTR hash_algo = get_sighash_algo(env, self);

    BCRYPT_ALG_HANDLE sigHandle = NULL;

	if (NT_FAILURE(status = BCryptOpenAlgorithmProvider(&sigHandle, BCRYPT_ECDSA_ALGORITHM, MS_PRIMITIVE_PROVIDER, 0))) {
		//err
		wprintf(L"**** Error 0x%x returned by BCryptOpenAlgorithmProvider\n", status);
		return 0;
	}

    BCRYPT_ALG_HANDLE hashHandle = NULL;

    if (NT_FAILURE(status = BCryptOpenAlgorithmProvider(&hashHandle, hash_algo, NULL, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptOpenAlgorithmProvider\n", status);
    }

    DWORD dummy = 0;
    DWORD hash_len = 0;
    if (NT_FAILURE(status = BCryptGetProperty(hashHandle, BCRYPT_HASH_LENGTH, (PBYTE)&hash_len, sizeof(DWORD), &dummy, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptGetProperty(hash len)\n", status);
    }

	PBYTE hash = calloc(hash_len, 1);

    jint data_len = (*env)->GetArrayLength(env, data);
    jbyte *data_bytes = (*env)->GetByteArrayElements(env, data, NULL);
    if (NT_FAILURE(status = BCryptHash(hashHandle, NULL, 0, data_bytes, data_len, hash, hash_len))) {
		wprintf(L"**** Error 0x%x returned by BCryptHash\n", status);
    }
    (*env)->ReleaseByteArrayElements(env, data, data_bytes, JNI_ABORT);

    BCRYPT_KEY_HANDLE pkey = NULL;

    jint pub_length = (*env)->GetArrayLength(env, pubkey);
    jbyte *pub_data = (*env)->GetByteArrayElements(env, pubkey, NULL);
    if (NT_FAILURE(status = BCryptImportKeyPair(sigHandle, NULL, BCRYPT_ECCFULLPUBLIC_BLOB, &pkey, pub_data, pub_length, 0))) {
		wprintf(L"**** Error 0x%x returned by BCryptImportKeyPair\n", status);
    }
    (*env)->ReleaseByteArrayElements(env, pubkey, pub_data, JNI_ABORT);

    jint sig_len = (*env)->GetArrayLength(env, sig);
    jbyte *sig_data = (*env)->GetByteArrayElements(env, sig, NULL);
    NTSTATUS result = BCryptVerifySignature(pkey, NULL, hash, hash_len, sig_data, sig_len, 0);
    (*env)->ReleaseByteArrayElements(env, sig, sig_data, JNI_ABORT);

	free(hash);

    BCryptDestroyKey(pkey);
    BCryptCloseAlgorithmProvider(hashHandle, 0);
    BCryptCloseAlgorithmProvider(sigHandle, 0);

    if (result == STATUS_SUCCESS) {
        return JNI_TRUE;
    } else if (result == STATUS_INVALID_SIGNATURE) {
        return JNI_FALSE;
    } else {
		wprintf(L"**** Error 0x%x returned by BCryptVerifySignature\n", status);
        return JNI_FALSE;
    }
}