-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·976 lines (937 loc) · 37.9 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="keywords" content="Security, Encryption, cybersecurity, HTTPS, Enigma, PKI, IoT, Internet of things, Blockchain, AWS, cloudHSM, cloud HSM, hardware security module, payments, tokenisation, tokenization">
<meta name="description" content="Regain control over your data and communication. Our Private Spaces provide secure and private gateway to internet and place to share and connect with people.">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0">
<link rel="shortcut icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="./css/animate.min.css">
<link rel="stylesheet" href="./css/font-awesome.min.css">
<script src="./js/jquery-2.1.0.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/blocs.min.js"></script>
<script src="./js/jqBootstrapValidation.js"></script>
<script src="./js/formHandler.js"></script>
<script src="./js/lazysizes.min.js" defer></script>
<title>Enigma Bridge / Private Dimension in Cyberspace</title>
<meta content="/img/logo2-rgb_cropped.gif" property="og:image" />
<meta content="200" property="og:image:width" />
<!-- Google Analytics -->
<script type="text/javascript" src="https://s3.amazonaws.com/assets.freshdesk.com/widget/freshwidget.js"></script>
<script type="text/javascript">
FreshWidget.init("", {"queryString": "&widgetType=popup&formTitle=Enigma+Help+%26+Support&submitTitle=Push+It&submitThanks=Thanks+for+getting+in+touch!&captcha=yes", "utf8": "✓", "widgetType": "popup", "buttonType": "text", "buttonText": "Help & Support", "buttonColor": "#00a7d7", "buttonBg": "#ffffff", "alignment": "1", "offset": "0px", "submitThanks": "Thanks for getting in touch!", "formHeight": "500px", "captcha": "yes", "url": "https://enigmabridge.freshdesk.com"} );
</script></script><!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/57a2055d00df04742fb54f1c/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script--><script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-84597687-6', 'auto');
ga('send', 'pageview');
</script><!-- Google Tracking -->
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MKFRQJG');</script>
<!-- End Google Tag Manager -->
<!-- Google Analytics END -->
</head>
<body>
<!-- Main container -->
<div class="page-container">
<!-- bloc-0 -->
<div class="bloc bgc-white l-bloc" id="bloc-0">
<div class="container bloc-sm">
<nav class="navbar row">
<div class="navbar-header">
<a class="navbar-brand" href="index.html"><img src="img/logo2-rgb_cropped.gif" height="50" class="lazyload" /></a>
<button id="nav-toggle" type="button" class="ui-navbar-toggle navbar-toggle" data-toggle="collapse" data-target=".navbar-1">
<span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse navbar-1 collapse">
<ul class="site-navigation nav navbar-nav">
<li>
<a href="index.html" class="ltc-rich-electric-blue">Home</a>
</li>
<li>
<a href="https://enigmabridge.freshdesk.com/" class="ltc-rich-electric-blue" id="pl-undefined" target="_blank">Support</a>
</li>
<li>
<a href="https://enigmabridge.com" class="ltc-rich-electric-blue" id="pl-undefined" target="_blank">Enigma Bridge</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
<!-- bloc-0 END -->
<!-- bloc-1 -->
<div class="bloc bloc-fill-screen tc-rich-electric-blue bg-bigstock-Businessman-with-illuminated-l-64002370-min bloc-bg-texture texture-darken bgc-white" id="bloc-1">
<div class="container fill-bloc-top-edge">
<nav class="navbar row">
<div class="navbar-header">
<button id="nav-toggle" type="button" class="ui-navbar-toggle navbar-toggle" data-toggle="collapse" data-target=".navbar-1">
<span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse navbar-1 collapse">
</div>
</nav>
</div>
<div class="container">
<div class="row l-bloc">
<div class="col-sm-12">
<h1 class="text-center hero-bloc-text tc-rich-electric-blue">
Instant Key Management Servers
</h1>
<h2 class="text-center mg-md tc-white">
Professional key management <br>with ultimate hardware security <br><br>
</h2>
<div class="row">
<div class="col-sm-6">
<div class="text-center">
<a class="btn btn-clean btn-rich-electric-blue btn-xl" onclick="scrollToTarget('#gestartedpki')">Build free CA now</a>
</div>
</div>
<div class="col-sm-6">
<div class="text-center">
<a href="https://keychest.net" class="btn btn-clean btn-rich-electric-blue btn-xl" target="_blank">Free expiry monitor KeyChest</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container fill-bloc-bottom-edge">
<div class="row">
<div class="col-sm-12">
<a id="scroll-hero" class="blocs-hero-btn-dwn " href="#"><span class="fa fa-chevron-down"></span></a>
</div>
</div>
</div>
</div>
<!-- bloc-1 END -->
<!-- bloc-2 -->
<div class="bloc bgc-white tc-black" id="bloc-2">
<div class="container bloc-sm">
<div class="row">
<div class="col-sm-4">
<h4 class="mg-md text-center tc-black">
Ultimate cloud security
</h4>
<div class="text-center">
<span class="fa fa-smile-o icon-round icon-md icon-rich-electric-blue"></span>
</div>
<h3 class="text-center mg-md tc-rich-electric-blue-2">
Simple
</h3>
<p class="text-center ">
We have turned a world-leading PKI system into a product that you can launch and get it all setup and ready for the first certificate without any hassle.
</p>
</div>
<div class="col-sm-4">
<h4 class="mg-md text-center tc-black">
Compliance
</h4>
<div class="text-center">
<span class="fa fa-rocket icon-round icon-md icon-rich-electric-blue"></span>
</div>
<h3 class="text-center mg-md tc-rich-electric-blue-2">
Secure and Trusted
</h3>
<p class="text-center ">
Enigma Bridge provides physical security for your private keys. The protection is provided with FIPS140-2 Level 3 certified hardware that makes your keys untouchable.
</p>
</div>
<div class="col-sm-4">
<h4 class="mg-md text-center tc-black">
Driven by your policies
</h4>
<div class="text-center">
<span class="fa fa-space-shuttle icon-round icon-md icon-rich-electric-blue"></span>
</div>
<h3 class="text-center mg-md tc-rich-electric-blue-2">
Complete Control
</h3>
<p class="text-center ">
EB PKI gives you a complete control for your key management. From the number of CAs and sub-CAs to certificate profiles.
</p>
</div>
</div>
</div>
</div>
<!-- bloc-2 END -->
<!-- bloc-3 -->
<div class="bloc tc-black bgc-white" id="bloc-3">
<div class="container bloc-sm">
<div class="row">
<div class="col-sm-4">
<div class="text-center">
<span class="fa fa-key icon-round icon-md icon-rich-electric-blue "></span>
</div>
<h3 class="text-center mg-md tc-rich-electric-blue">
PKI Key Security
</h3>
<p class="text-center ">
The keys used by the PKI system are only available in secure hardware. They neither leave it nor get stored on disk or memory.
</p>
</div>
<div class="col-sm-4">
<div class="text-center">
<span class="fa fa-child icon-round icon-md icon-rich-electric-blue "></span>
</div>
<h3 class="text-center mg-md tc-rich-electric-blue">
Access Control
</h3>
<p class="text-center ">
Dynamic user authentication with strong encryption via HTTPS security or PKI’s virtual private network
</p>
</div>
<div class="col-sm-4">
<div class="text-center">
<span class="fa fa-bell icon-round icon-md icon-rich-electric-blue"></span>
</div>
<h3 class="text-center mg-md tc-rich-electric-blue">
Operation Audit
</h3>
<p class="text-center ">
Logs of PKI private keys are available for audit and inspection.
</p>
</div>
</div>
</div>
</div>
<!-- bloc-3 END -->
<!-- bloc-4 -->
<div class="bloc bloc-fill-screen bgc-anti-flash-white tc-black none bg-KC-background d-bloc b-parallax" id="bloc-4">
<div class="container">
<div class="row">
<div class="col-sm-6">
<a href="https://keychest.net/register" target="_blank"><img src="img/lazyload-ph.png" data-src="img/keychest_headlines_for_activeDomain.png" class="img-responsive none animated vanishIn img-rd lazyload" /></a>
</div>
<div class="col-sm-6">
<h2 class="mg-lg tc-rich-electric-blue">
KeyChest expiry monitoring
</h2>
<h3 class="mg-sm tc-black">
Auto-discovery for 100% HTTPS uptime
</h3>
<p class="mg-lg ">
KeyChest is a scalable and easy to use service helping you achieve 100% HTTPS/TLS uptime. We keep deploying certificate-based servers and it is easy to lose track of those we can’t see on a daily basis. The hard thing about monitoring is the setup – adding all we need to monitor before incidents impacting our business. KeyChest.net does this for you. It automatically discovers new servers as they are created and shows them in your monitoring dashboard.
</p><a href="https://keychest.net/register" class="btn btn-clean btn-lg btn-rich-electric-blue" target="_blank">Start Now at Keychest.net</a>
</div>
</div>
</div>
</div>
<!-- bloc-4 END -->
<!-- bloc-5 -->
<div class="bloc bgc-rich-electric-blue tc-black" id="bloc-5">
<div class="container bloc-md">
<div class="row">
<div class="col-sm-5">
<h3 class="mg-md tc-white">
Start Your certification authority in <br>18 Minutes and 39 Seconds
</h3>
<p>
EB PKI is designed for internal public key management and you can start issuing your own certificates within 20 minutes. Fast, cost efficient, and secure PKI system for everyone. <br> <br>Certificates are signed by secure hardware to ensure high-level of security while you get all the benefits of the cloud. <br><br>Enigma Bridge brings you a fully featured and simple PKI system with a certification authority and an OCSP responder supported with FIPS140-2 Level 3 hardware-protected keys. Includes an out-of-the-box HTTPS with a browser trusted certificate.
</p>
</div>
<div class="col-sm-7">
<iframe src="img/lazyload-ph.png" data-src="https://player.vimeo.com/video/193778797" width="600" height="400" frameborder="0" webkitallowfullscreen="" mozallowfullscreen="" allowfullscreen="" class="lazyload"></iframe> <p><a href="https://vimeo.com/193778797" class="">Enigma Bridge PKI</a> from <a href="https://vimeo.com/user53274318">Enigma Bridge</a> on <a href="https://vimeo.com">Vimeo</a>.</p>
</div>
</div>
</div>
</div>
<!-- bloc-5 END -->
<!-- gestartedpki -->
<div class="bloc bgc-white l-bloc tc-black" id="gestartedpki">
<div class="container bloc-sm">
<div class="row" id="b1">
<div class="col-sm-12">
<h2 class="mg-md tc-black" id="b">
7 Day Free Trial on Amazon AWS
</h2>
<div class="row">
<div class="col-sm-6">
<h5 class="mg-md tc-rich-electric-blue-2">
7 day free trial on Amazon AWS. <br> <br><br>
</h5>
</div>
<div class="col-sm-6">
<h5 class="mg-md tc-rich-electric-blue-2">
We recommend the "t2.small” AWS EC2 instance or larger.
</h5>
</div>
</div>
<div class="text-center">
<div class="btn-group btn-dropdown">
<a href="#" class="btn dropdown-toggle btn-clean btn-lg btn-rich-electric-blue" data-toggle="dropdown" aria-expanded="false">Launch Your Test PKI on Amazon AWS<span class="caret"></span></a>
<ul class="dropdown-menu" role="menu">
<li>
<div class="text-center">
<a href="https://console.aws.amazon.com/ec2/v2/home?region=eu-west-1#LaunchInstanceWizard:ami=ami-1b3c6468" class="a-btn ltc-rich-electric-blue">Ireland (eu-west-1)</a>
</div>
</li>
<li>
<div class="text-center">
<a href="https://console.aws.amazon.com/ec2/v2/home?region=eu-central-1#LaunchInstanceWizard:ami=ami-0664a369" class="a-btn ltc-rich-electric-blue">Frankfurt (eu-central-1)</a>
</div>
</li>
<li>
<div class="text-center">
<a href="https://console.aws.amazon.com/ec2/v2/home?region=us-east-1#LaunchInstanceWizard:ami=ami-f4cdf6e3" class="a-btn ltc-rich-electric-blue">Virginia (us-east-1)</a>
</div>
</li>
<li>
<div class="text-center">
<a href="https://console.aws.amazon.com/ec2/v2/home?region=us-west-1#LaunchInstanceWizard:ami=ami-295c0b49" class="a-btn ltc-rich-electric-blue">California (us-west-1)</a>
</div>
</li>
</ul>
</div>
</div>
<div class="divider-h">
<span class="divider"></span>
</div>
<p>
Do you need help with Amazon AWS setup? See <a class="ltc-rich-electric-blue" href="https://enigmabridge.freshdesk.com/solution/articles/19000058853-aws-access-instructions-launch-your-pki" target="_blank">instructions in our support system</a>.
</p>
</div>
</div>
</div>
</div>
<!-- gestartedpki END -->
<!-- bloc-7 -->
<div class="bloc bgc-white l-bloc" id="bloc-7">
<div class="container bloc-sm">
<div class="row">
<div class="col-sm-12">
<h2 class="mg-md tc-black">
Pricing
</h2>
</div>
</div>
</div>
</div>
<!-- bloc-7 END -->
<!-- pkipricing -->
<div class="bloc bgc-white l-bloc tc-rich-electric-blue-2" id="pkipricing">
<div class="container bloc-sm">
<div class="row">
<div class="col-sm-6">
<div class="panel">
<div class="panel-heading bgc-rich-electric-blue-2">
<h2 class="mg-clear text-center tc-white">
Agile (cloud only)
</h2>
</div>
<div class="panel-body">
<ul class="list-unstyled list-sp-md">
<li>
<h4 class="text-center mg-clear tc-black">
<a class="ltc-rich-electric-blue" href="https://www.ejbca.org/features.html" target="_blank">Full-featured PKI system</a><br>
</h4>
</li>
<li>
<h4 class="text-center mg-clear tc-black">
FIPS 140-2 protection of keys
</h4>
</li>
<li>
<h4 class="text-center mg-clear tc-black">
Dynamic domain name
</h4>
</li>
<li>
<h4 class="text-center mg-clear tc-black">
Low OCSP load*
</h4>
</li>
<li>
<h4 class="text-center mg-clear tc-black">
Operation Support
</h4>
</li>
<li>
<h3 class="text-center mg-md tc-rich-electric-blue">
£199 / month
</h3>
</li>
</ul>
</div>
<div class="panel-footer">
<form id="form_pki2" novalidate success-msg="Your message has been sent and we will be in touch shortly. Please check your mailbox for an initial support ticket." fail-msg="Sorry it seems that our mail server is not responding, please email us directly at [email protected]">
<div class="form-group">
<label>
Name / company*
</label>
<input id="name_pki2" class="form-control" required />
</div>
<div class="form-group">
<label>
Email*
</label>
<input id="email_pki2" class="form-control" type="email" required />
</div>
<button class="bloc-button btn btn-lg btn-block btn-rich-electric-blue" type="submit">
Order Now
</button>
</form>
</div>
</div>
<p>
All prices are exclusive of VAT.<br>
</p>
<p>
* we guarentee only up to 100,000 OCSP verifications in 24 hours.
</p>
</div>
<div class="col-sm-6">
<div class="panel">
<div class="panel-heading bgc-rich-electric-blue-2">
<h2 class="mg-clear text-center tc-white">
Enterprise
</h2>
</div>
<div class="panel-body">
<ul class="list-unstyled list-sp-md">
<li>
<h4 class="text-center mg-clear tc-black">
<a class="ltc-rich-electric-blue" href="https://www.ejbca.org/features.html" target="_blank">Full-featured PKI system</a><br>
</h4>
</li>
<li>
<h4 class="text-center mg-clear tc-black">
FIPS 140-2 protection of keys
</h4>
</li>
<li>
<h4 class="text-center mg-clear tc-black">
Dynamic domain name
</h4>
</li>
<li>
<h4 class="text-center mg-clear tc-black">
Real-time certificate validation (OCSP)
</h4>
</li>
<li>
<h4 class="text-center mg-clear tc-black">
Solution support
</h4>
</li>
<li>
<h4 class="text-center mg-clear tc-black">
Common Criteria EAL4+ for PKI
</h4>
</li>
<li>
<h4 class="text-center mg-clear tc-black">
Enterprise Management
</h4>
</li>
<li>
<h3 class="text-center mg-md tc-rich-electric-blue">
Pricing upon request
</h3>
</li>
</ul>
</div>
<div class="panel-footer">
<form id="form_pki3" novalidate success-msg="Your message has been sent and we will be in touch shortly. Please check your mailbox for an initial support ticket." fail-msg="Sorry it seems that our mail server is not responding, please email us directly at [email protected]">
<div class="form-group">
<label>
Name*
</label>
<input id="name_pki3" class="form-control" required />
</div>
<div class="form-group">
<label>
Email*
</label>
<input id="email_pki3" class="form-control" type="email" required />
</div>
<button class="bloc-button btn btn-lg btn-block btn-rich-electric-blue" type="submit">
Order Now
</button>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- pkipricing END -->
<!-- bloc-9 -->
<div class="bloc bgc-white l-bloc" id="bloc-9">
<div class="container bloc-sm">
<div class="row">
<div class="col-sm-12">
<h2 class="mg-md tc-rich-electric-blue">
Superior Security - on-premise and in the cloud
</h2>
</div>
</div>
</div>
</div>
<!-- bloc-9 END -->
<!-- bloc-10 -->
<div class="bloc bgc-white tc-black" id="bloc-10">
<div class="container bloc-sm">
<div class="row">
<div class="col-sm-7">
<p>
The main threat to key management systems is loss or compromise of management keys. <br> <br>You significantly limit your exposure to this threat if you use secure hardware providing secure environment with strong physical security. <br> <br>You can decide whether the security appliance is in your datacenter, or in a cloud. Our systems ensure that your keys are always protected.
</p>
<p>
<br>Specialised security hardware is far superior to software solutions from the security point of view. The downside is the cost - capital as well as operational.
</p>
</div>
<div class="col-sm-5">
<img src="img/lazyload-ph.png" data-src="img/key_time_and_money.jpeg" class="img-responsive lazyload" />
</div>
</div>
</div>
</div>
<!-- bloc-10 END -->
<!-- bloc-11 -->
<div class="bloc tc-black bgc-white l-bloc" id="bloc-11">
<div class="container bloc-md">
<div class="row">
<div class="col-sm-12">
<p class=" text-center">
The Enigma Bridge technology solves the cost problem of key management, including its scaling. The service is multi-tenancy while still physically separating user secrets. It features a native web service API and an enrolment process that can be fully automated.
</p>
</div>
</div>
</div>
</div>
<!-- bloc-11 END -->
<!-- bloc-12 -->
<div class="bloc full-width-bloc bgc-white tc-white" id="bloc-12">
<div class="container bloc-md">
<div class="row bgc-rich-electric-blue-2">
<div class="col-xs-12 col-md-8 col-md-offset-2">
<h3 class="statement-bloc-text tc-black">
"Enigma Bridge has developed an innovative capability providing powerful, resilient, scalable and comprehensive cryptographic functionality."
</h3>
<p class="text-right">
Steve Marshall<br>Former Head of Security Architecture at Barclaycard <br>
</p>
</div>
</div>
</div>
</div>
<!-- bloc-12 END -->
<!-- bloc-13 -->
<div class="bloc full-width-bloc bgc-white l-bloc tc-black" id="bloc-13">
<div class="container bloc-md">
<div class="row">
<div class="col-sm-1">
</div>
<div class="col-sm-6">
<h2 class="mg-md tc-rich-electric-blue">
Technical Features
</h2>
<p>
The key management system is powered Enigma Bridge hardware encryption platform and the EJBCA PKI application from PrimeKey (an enterprise PKI system).
</p>
<ul>
<li>
<p>
<strong>Certificate Authority</strong> – an X.509 certificate authority supporting a wide range of protocols including X.509, PKIX (RFC5280), SCEP, or CMP (RFC4210 and RFC4211).
</p>
</li>
<li>
<p>
<strong>Registration Authority</strong> – a front-end for manual approvals of certificate requests.
</p>
</li>
<li>
<p>
<strong>OCSP Responder</strong> – on-line certificate validation according to RFC2560, RFC6960 and RFC5019.
</p>
</li>
<li>
<p>
<strong>Physical security of PKI keys</strong> – keys for issuing certificates are protected with secure hardware with FIPS140-2 Level 3 and Common Criteria EAL4+ or EAL5 certifications.
</p>
</li>
<li>
<p>
<strong>Domain Name with HTTPS</strong> – out-of-the-box HTTPS to your new PKI system with DNS records instantly and securely updated each time you restart the EC2 instance.
</p>
</li>
</ul>
<p>
<br>For a full of the features of EJBCA PKI application, please visit <a class="ltc-black" href="https://www.ejbca.org/features.html" target="_blank">the PrimeKey website</a>.
</p>
</div>
<div class="col-sm-5">
<img src="img/lazyload-ph.png" data-src="img/pki_architecture.png" class="img-responsive lazyload" />
</div>
</div>
</div>
</div>
<!-- bloc-13 END -->
<!-- bloc-14 -->
<div class="bloc full-width-bloc tc-black bgc-white" id="bloc-14">
<div class="container bloc-sm">
<div class="row">
<div class="col-sm-5">
<img src="img/lazyload-ph.png" data-src="img/eb_test_servers_small.png" class="img-responsive lazyload" />
</div>
<div class="col-sm-7">
<h2 class=" mg-md tc-rich-electric-blue">
Hardware Security Pros and Costs
</h2>
<h3 class=" mg-md tc-black">
Easiest way to demonstrate security
</h3>
<p class="mg-lg text-w-90">
Everyone trusts their own software applications because, well - they are ours and we “know” we got them right. The issue is how to make others trust our applications, especially if the sole purpose of those applications is to protect data.
</p>
<p class=" text-w-90">
Security validations and how to conduct them is one of the problems with no simple solution. Secure hardware has been the main answer for more than 20 years.
</p>
<div class="text-center">
<a href="https://enigmabridge.com" class="btn btn-rich-electric-blue">Ask us about security of our CloudHSM platform<span class="special-tag-for-editing-text-with-html"></span></a>
</div>
</div>
</div>
</div>
</div>
<!-- bloc-14 END -->
<!-- bloc-15 -->
<div class="bloc tc-black bgc-white" id="bloc-15">
<div class="container bloc-md">
<div class="row">
<div class="col-sm-12">
<h2 class="mg-md tc-rich-electric-blue">
Understand Security Evaluations
</h2>
<p>
While there is no perfect solution for verifying security, the best current benchmark is an independent validation of the quality of a cryptographic product or application. There are currently two main standards suitable for validation of critical key management functions.
</p>
<div class="row">
<div class="col-sm-6">
<h3 class="mg-md tc-rich-electric-blue">
FIPS140-2
</h3>
<h3 class="mg-md tc-rich-electric-blue">
Cryptographic Product Security Standard
</h3>
<p>
Federal Information Processing Standard (FIPS) 140-2 - implemented by National Instituted of Standards and Technology (NIST), a US government agency, to validate security of cryptographic products.
</p>
<p>
A successful validation results in compliance with: <br> <strong>Level 1</strong> - lowest level of security <br><strong>Level 2</strong> - shows evidence of tampering (hosting provider detects)<br><strong>Level 3</strong> - responds to attempts at physical access (users detect) <br><strong>Level 4</strong> - highest level of security
</p>
</div>
<div class="col-sm-6">
<h3 class="mg-md tc-rich-electric-blue">
Common Criteria (CC)
</h3>
<h3 class="mg-md tc-rich-electric-blue">
Computer Security Certification Standard
</h3>
<p>
An international standard, where compliance is demonstrated by national authorities in Canada, US, UK, Germany, and Spain
</p>
<p>
A successful validation results in an assurance level (EAL): <br><strong>EAL1, EAL2</strong> - functionally tested, structurally tested <br><strong>EAL3</strong> - methodically tested and checked <br><strong>EAL4</strong> - methodically designed, tested, and reviewed <br><strong>EAL5</strong> - semiformally designed and tested <br><strong>EAL6</strong> - semiformally verified designed and tested <br><strong>EAL7</strong> - formally verified designed and tested
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- bloc-15 END -->
<!-- bloc-16 -->
<div class="bloc full-width-bloc bgc-white l-bloc" id="bloc-16">
<div class="container bloc-sm">
<div class="row">
<div class="col-xs-12 col-md-8 col-md-offset-2">
<h3 class="statement-bloc-text tc-rich-electric-blue">
<strong>Enigma Bridge cloud platform is built with secure hardware processors with evaluations of FIPS140-2 Level 3+ and Common Criterial EAL5+</strong>
</h3>
</div>
</div>
</div>
</div>
<!-- bloc-16 END -->
<!-- bloc-17 -->
<div class="bloc bloc-bg-texture texture-geometry-shapes tc-white bgc-black" id="bloc-17">
<div class="container bloc-sm">
<div class="row">
<div class="col-sm-12">
<h1 class="text-center mg-lg tc-rich-electric-blue-2">
Cyber criminals can tell how you manage your keys
</h1>
<p class="text-center ">
HTTPS/TLS protocol used by all secure websites points at vulnerabilities. It leaks sensitive information about cyber security management and can help hackers or government agencies extract sensitive data.
</p>
</div>
</div>
</div>
</div>
<!-- bloc-17 END -->
<!-- bloc-18 -->
<div class="bloc bgc-black d-bloc tc-white" id="bloc-18">
<div class="container bloc-sm">
<div class="row">
<div class="col-sm-12">
<p>
Until now, it has been widely believed that use of HTTPS:// on web sites does not provide any sensitive information that would endanger the security of the web service. No one expected that it could leak internal information about security management.
</p>
<div class="row">
<div class="col-sm-6">
<img src="img/lazyload-ph.png" data-src="img/quotation_Bilar2.png" class="img-responsive lazyload" />
<blockquote>
<p>
I am puzzled why people are not all over this - enormous implications. I discussed it in my organization yesterday. <br>
</p>
</blockquote>
<p class="text-right ">
<i>Daniel Bilar - Information Security Specialist at VISA</i>
</p>
</div>
<div class="col-sm-6">
<img src="img/lazyload-ph.png" data-src="img/quotation_KennWhite2.png" class="img-responsive lazyload" />
<blockquote>
<p>
This work on fingerprinting the software that generated RSA keys (from public keys!) is a must read. <br>
</p>
</blockquote>
<p class="text-right ">
<i>Co-founder of CBX Group, co-founder of TrueCrypt audit project.</i>
</p>
</div>
</div>
<p>
Our co-founder, Petr Svenda, published <a class="ltc-rich-electric-blue" href="https://www.usenix.org/conference/usenixsecurity16/technical-sessions/presentation/svenda" target="_blank">research results of his team's discovery that SSL public keys leak information on how they were generated</a> at USENIX Security Symposium and it received the best paper award. Their suprising results imply that freely available public encryption keys can put companies at risk. This public information provides details on their cybersecurity management, which to date has been considered a safe secret.
</p>
</div>
</div>
</div>
</div>
<!-- bloc-18 END -->
<!-- bloc-19 -->
<div class="bloc bgc-black d-bloc" id="bloc-19">
<div class="container bloc-sm">
<div class="row">
<div class="col-sm-12 text-center">
<a href="https://crocs.fi.muni.cz/papers/usenix2016" class="btn btn-clean btn-lg btn-rich-electric-blue" target="_blank">Visit an external research website to learn more and test your web server</a>
</div>
</div>
</div>
</div>
<!-- bloc-19 END -->
<!-- bloc-20 -->
<div class="bloc tc-white full-width-bloc bgc-black" id="bloc-20">
<div class="container bloc-md">
<div class="row">
<div class="col-xs-12 col-md-8 col-md-offset-2">
<h3 class="statement-bloc-text text-left tc-rich-electric-blue">
"It's striking that despite 30 odd years of cryptographic research and security conferences, no-one noticed this problem – which has been in plain sight all along."<br>
</h3>
<p class=" text-right">
Ross Anderson, professor of security engineering <br>at the University of Cambridge <br>
</p>
</div>
</div>
</div>
</div>
<!-- bloc-20 END -->
<!-- form-contact-us -->
<div class="bloc tc-black bgc-white" id="form-contact-us">
<div class="container bloc-md">
<div class="row voffset bgc-white">
<div class="col-sm-6">
<img src="img/lazyload-ph.png" data-src="img/worldAtHand.png" class="img-responsive lazyload" />
</div>
<div class="col-sm-6">
<form id="form_contact_pki" novalidate success-msg="Your message has been sent." fail-msg="Sorry it seems that our mail server is not responding, Sorry for the inconvenience!">
<h4 class="mg-md tc-rich-electric-blue ">
<strong>Contact Enigma Bridge</strong>
</h4>
<div class="form-group">
<label>
Name
</label>
<input id="contact_name" class="form-control" required />
</div>
<div class="form-group">
<label>
Email
</label>
<input id="contact_email" class="form-control" type="email" required />
</div>
<div class="form-group">
<label>
How are you wanting to improve the security of your systems?<br> <br>(please write more than a line, to save both of us some time ;)
</label><textarea id="contact_message" class="form-control" rows="4" cols="50" required></textarea>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="subscriptionrequest" />I want you to send me updates about Enigma Bridge services
</label>
</div>
<button class="bloc-button btn btn-block btn-rich-electric-blue" type="submit">
Submit
</button>
</form>
</div>
</div>
</div>
</div>
<!-- form-contact-us END -->
<!-- team -->
<div class="bloc tc-rich-electric-blue-2 hidden-lg hidden-md hidden-sm hidden-xs object-hidden bgc-white l-bloc" id="team">
<div class="container bloc-sm">
<div class="row">
<div class="col-sm-12">
<h2 class="text-center mg-md sm-shadow tc-rich-electric-blue">
Meet our team
</h2>
<p class="sub-heading text-center ">
We are a group of skilled and experienced security and payments individuals.
</p>
</div>
</div>
<div class="row voffset-lg">
<div class="col-sm-3">
<a href="http://www.dancvrcek.com/" target="_blank"><img src="img/lazyload-ph.png" data-src="img/dan270.jpg" class="swing-hvr center-block img-responsive animated lazyload" /></a>
<h3 class="text-center mg-md tc-rich-electric-blue">
<a class="ltc-rich-electric-blue" href="https://linkedin.com/in/DanCvrcek" target="_blank">Dan Cvrcek, PhD</a><br>
</h3>
<p class="text-center ">
CEO and security expert
</p>
</div>
<div class="col-sm-3">
<img src="img/lazyload-ph.png" data-src="img/petr270.jpg" class="img-responsive swing-hvr center-block animated lazyload" />
<h3 class="text-center mg-md tc-rich-electric-blue">
<a class="ltc-rich-electric-blue" href="https://cz.linkedin.com/in/petr-svenda-58b27ab" target="_blank">Petr Svenda, PhD</a><br>
</h3>
<p class="text-center ">
Crypto prodigy
</p>
</div>
<div class="col-sm-3">
<img src="img/lazyload-ph.png" data-src="img/dusan270.jpg" class="img-responsive swing-hvr center-block animated lazyload" />
<h3 class="text-center mg-md tc-rich-electric-blue">
<a class="ltc-rich-electric-blue" href="https://cz.linkedin.com/in/dklinec/en" target="_blank">Dusan Klinec</a><br>
</h3>
<p class="text-center ">
Senior security engineer
</p>
</div>
<div class="col-sm-3">
<a href="http://www.davidgudjonsson.com" target="_blank"><img src="img/lazyload-ph.png" data-src="img/david270.jpg" class="img-responsive swing-hvr center-block animated lazyload" /></a>
<h3 class="text-center mg-md tc-rich-electric-blue">
<a class="ltc-rich-electric-blue" href="https://uk.linkedin.com/in/davidgudjonsson" target="_blank">David Gudjonsson</a><br>
</h3>
<p class="text-center ">
Chairman and payments expert
</p>
</div>
</div>
</div>
</div>
<!-- team END -->
<!-- bloc-23 -->
<div class="bloc bgc-white l-bloc" id="bloc-23">
<div class="container bloc-sm">
<div class="row">
<div class="col-xs-12 col-md-8 col-md-offset-2">
<div class="col-sm-3">
<div class="text-center">
<a class="social-lg" href="https://twitter.com/enigmabridge" target="_blank"></a>
<div class="text-center">
<a class="social-lg" href="https://twitter.com/enigmabridge" target="_blank"></a><a href="https://twitter.com/enigmacloud" target="_blank"><span class="fa fa-twitter icon-rich-electric-blue icon-lg"></span></a>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="text-center">
<a class="social-lg" href="https://www.linkedin.com/company/enigma-bridge-ltd" target="_blank"></a>
<div class="text-center">
<a class="social-lg" href="https://www.linkedin.com/company/enigma-bridge-ltd" target="_blank"></a><a href="https://www.linkedin.com/company/enigma-bridge-ltd" target="_blank"><span class="fa fa-linkedin-square icon-rich-electric-blue icon-lg"></span></a>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="text-center">
<a class="social-lg" href="https://github.com/EnigmaBridge" target="_blank"></a>
<div class="text-center">
<a class="social-lg" href="https://github.com/EnigmaBridge" target="_blank"></a><a href="https://github.com/EnigmaBridge" target="_blank"><span class="fa fa-github icon-rich-electric-blue icon-lg"></span></a>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="text-center">
<a class="social-lg" href="http://www.dancvrcek.com/" target="_blank"></a>
<div class="text-center">
<a class="social-lg" href="http://www.dancvrcek.com/" target="_blank"></a><a href="https://dancvrcek.com" target="_blank"><span class="fa fa-wordpress icon-rich-electric-blue icon-lg"></span></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- bloc-23 END -->
<!-- ScrollToTop Button -->
<a class="bloc-button btn btn-d scrollToTop" onclick="scrollToTarget('1')"><span class="fa fa-chevron-up"></span></a>
<!-- ScrollToTop Button END-->
<!-- Footer - bloc-27 -->
<div class="bloc bgc-black d-bloc" id="bloc-27">
<div class="container bloc-md">
<div class="row">
<div class="col-sm-3">
<h3 class="mg-md bloc-mob-center-text tc-rich-electric-blue">
About
</h3><a class="a-btn a-block bloc-mob-center-text ltc-white" href="https://enigmabridge.com">Enigma Bridge</a>
</div>
<div class="col-sm-3">
<h3 class="mg-md bloc-mob-center-text tc-rich-electric-blue">
Contact Us
</h3><a href="https://enigmabridge.freshdesk.com" class="a-btn a-block bloc-mob-center-text ltc-white " target="_blank">Support system</a>
</div>
<div class="col-sm-3">
<h3 class="mg-md bloc-mob-center-text tc-rich-electric-blue">
Follow Us
</h3><a href="https://twitter.com/enigmabridge" class="a-btn a-block bloc-mob-center-text ltc-white " target="_blank">Twitter</a><a href="https://www.linkedin.com/company/enigma-bridge-ltd" class="a-btn a-block bloc-mob-center-text ltc-white " target="_blank">LinkedIn</a>
</div>
<div class="col-sm-3">
<h3 class="mg-md bloc-mob-center-text tc-rich-electric-blue">
Small Print
</h3><a href="terms-of-use.html" class="a-btn a-block bloc-mob-center-text ltc-white">Terms of use</a><a href="privacy-notice.html" class="a-btn a-block bloc-mob-center-text ltc-white">Privacy</a>
</div>
</div>
</div>
</div>
<!-- Footer - bloc-27 END -->
</div>
<!-- Main container END -->
</body>
</html>