-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1716 lines (1566 loc) · 100 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
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- Google Analytics Content Experiment code -->
<script>function utmx_section(){}function utmx(){}(function(){var
k='104237127-4',d=document,l=d.location,c=d.cookie;
if(l.search.indexOf('utm_expid='+k)>0)return;
function f(n){if(c){var i=c.indexOf(n+'=');if(i>-1){var j=c.
indexOf(';',i);return escape(c.substring(i+n.length+1,j<0?c.
length:j))}}}var x=f('__utmx'),xx=f('__utmxx'),h=l.hash;d.write(
'<sc'+'ript src="'+'http'+(l.protocol=='https:'?'s://ssl':
'://www')+'.google-analytics.com/ga_exp.js?'+'utmxkey='+k+
'&utmx='+(x?x:'')+'&utmxx='+(xx?xx:'')+'&utmxtime='+new Date().
valueOf()+(h?'&utmxhash='+escape(h.substr(1)):'')+
'" type="text/javascript" charset="utf-8"><\/sc'+'ript>')})();
</script><script>utmx('url','A/B');</script>
<!-- End of Google Analytics Content Experiment code -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="/wp-content/themes/crypteron/includes/img/favicon.png" type="image/x-icon">
<title>Crypteron | Instant Data Security</title>
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="/xmlrpc.php">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<meta name="robots" content="max-image-preview:large">
<link rel="dns-prefetch">
<link rel="dns-prefetch" href="//www.google.com">
<link rel="dns-prefetch" href="//s.w.org">
<link rel="alternate" type="application/rss+xml" title="Crypteron » Feed" href="/feed/">
<link rel="alternate" type="application/rss+xml" title="Crypteron » Comments Feed" href="/comments/feed/">
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.0.2"}};
/*! This file is auto-generated */
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode,e=(p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0),i.toDataURL());return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([129777,127995,8205,129778,127999],[129777,127995,8203,129778,127999])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}</style>
<link rel="stylesheet" id="wp-block-library-css" href="/wp-includes/css/dist/block-library/style.min.css?ver=2.2.11" type="text/css" media="all">
<style id="global-styles-inline-css" type="text/css">body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}</style>
<link rel="stylesheet" id="jquery-bxslider-css" href="/wp-content/plugins/bb-plugin/css/jquery.bxslider.css?ver=2.5.5.5" type="text/css" media="all">
<link rel="stylesheet" id="font-awesome-5-css" href="/wp-content/plugins/bb-plugin/fonts/fontawesome/5.15.4/css/all.min.css?ver=2.5.5.5" type="text/css" media="all">
<link rel="stylesheet" id="fl-builder-layout-1857-css" href="/wp-content/uploads/bb-plugin/cache/1857-layout.css?ver=18905bc1b08b8f07e176a96d69e8140e" type="text/css" media="all">
<link rel="stylesheet" id="gdpr-css" href="/wp-content/plugins/gdpr/dist/css/public.css?ver=2.1.2" type="text/css" media="all">
<link rel="stylesheet" id="crypteron-bootstrap-css" href="/wp-content/themes/crypteron/includes/bower_components/bootstrap/dist/css/bootstrap.min.css?ver=2.2.11" type="text/css" media="all">
<link rel="stylesheet" id="crypteron-font-awesome-css" href="/wp-content/themes/crypteron/includes/css/font-awesome.min.css?ver=4.1.0" type="text/css" media="all">
<link rel="stylesheet" id="crypteron-style-css" href="/wp-content/themes/crypteron/style.css?ver=2.2.11" type="text/css" media="all">
<link rel="stylesheet" id="crypteron-prism-css-css" href="/wp-content/themes/crypteron/includes/css/prism.css?ver=2.2.11" type="text/css" media="all">
<link rel="stylesheet" id="crypteron-magnfic-css-css" href="/wp-content/themes/crypteron/includes/css/magnific-popup.css?ver=1.0.2" type="text/css" media="all">
<link rel="stylesheet" id="crypteron-tweaks-css" href="/wp-content/themes/crypteron/includes/css/tweaks.css?ver=2.2.11" type="text/css" media="all">
<script type="text/javascript" src="/wp-includes/js/jquery/jquery.min.js?ver=3.6.0" id="jquery-core-js"></script>
<script type="text/javascript" src="/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2" id="jquery-migrate-js"></script>
<script type="text/javascript" src="https://www.google.com/recaptcha/api.js?hl=en_US&ver=2.2.11" id="gdpr-recaptcha-js"></script>
<script type="text/javascript" id="gdpr-js-extra">
/* <![CDATA[ */
var GDPR = {"ajaxurl":"\/wp-admin\/admin-ajax.php","logouturl":"","i18n":{"aborting":"Aborting","logging_out":"You are being logged out.","continue":"Continue","cancel":"Cancel","ok":"OK","close_account":"Close your account?","close_account_warning":"Your account will be closed and all data will be permanently deleted and cannot be recovered. Are you sure?","are_you_sure":"Are you sure?","policy_disagree":"By disagreeing you will no longer have access to our site and will be logged out."},"is_user_logged_in":"","refresh":"1"};
/* ]]> */
</script>
<script type="text/javascript" src="/wp-content/plugins/gdpr/dist/js/public.js?ver=2.1.2" id="gdpr-js"></script>
<script type="text/javascript" src="/wp-content/plugins/html5-responsive-faq/js/hrf-script.js?ver=2.2.11" id="html5-responsive-faq-js"></script>
<link rel="https://api.w.org/" href="/wp-json/">
<link rel="alternate" type="application/json" href="/wp-json/wp/v2/pages/1857">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="/wp-includes/wlwmanifest.xml">
<meta name="generator" content="WordPress 6.0.2">
<link rel="canonical" href="/">
<link rel="shortlink" href="/">
<link rel="alternate" type="application/json+oembed" href="/wp-json/oembed/1.0/embed?url=https%3A%2F%2F%2F">
<link rel="alternate" type="text/xml+oembed" href="/wp-json/oembed/1.0/embed?url=https%3A%2F%2F%2F&format=xml">
<script type="text/javascript">if(is_allowed_cookie( '_ga' )){
// Global site tag (gtag.js) - Google Analytics
var gtagScriptLoader = document.createElement("script");
gtagScriptLoader.type = "text/javascript";
gtagScriptLoader.setAttribute("async", "true");
gtagScriptLoader.setAttribute("src", "https://www.googletagmanager.com/gtag/js?id=UA-38495563-2");
// we hang this off the global object so we can reference this everywhere else
// gtags has a crap api that expects this unique value sprinkled everywhere
gtagScriptLoader.GA_TRACKING_ID = "UA-38495563-2";
document.documentElement.firstChild.appendChild(gtagScriptLoader);
window.dataLayer = window.dataLayer || [];
gtag = function(){dataLayer.push(arguments);} // defined like this for safari compatiblity
gtag('js', new Date());
gtag('config', 'UA-38495563-2', {
'page_path': location.pathname + location.search + location.hash
});
}</script>
<script>if(is_allowed_cookie( 'fr' )){
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','//connect.facebook.net/en_US/fbevents.js');
fbq('init', '272001609806965');
fbq('track', "PageView");
}</script>
<script type="text/javascript">
if(is_allowed_cookie( 'mp_' )){
(function(e,a){if(!a.__SV){var b=window;try{var c,l,i,j=b.location,g=j.hash;c=function(a,b){return(l=a.match(RegExp(b+"=([^&]*)")))?l[1]:null};g&&c(g,"state")&&(i=JSON.parse(decodeURIComponent(c(g,"state"))),"mpeditor"===i.action&&(b.sessionStorage.setItem("_mpcehash",g),history.replaceState(i.desiredHash||"",e.title,j.pathname+j.search)))}catch(m){}var k,h;window.mixpanel=a;a._i=[];a.init=function(b,c,f){function e(b,a){var c=a.split(".");2==c.length&&(b=b[c[0]],a=c[1]);b[a]=function(){b.push([a].concat(Array.prototype.slice.call(arguments,
0)))}}var d=a;"undefined"!==typeof f?d=a[f]=[]:f="mixpanel";d.people=d.people||[];d.toString=function(b){var a="mixpanel";"mixpanel"!==f&&(a+="."+f);b||(a+=" (stub)");return a};d.people.toString=function(){return d.toString(1)+".people (stub)"};k="disable time_event track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config reset people.set people.set_once people.increment people.append people.union people.track_charge people.clear_charges people.delete_user".split(" ");
for(h=0;h<k.length;h++)e(d,k[h]);a._i.push([b,c,f])};a.__SV=1.2;b=e.createElement("script");b.type="text/javascript";b.async=!0;b.src="undefined"!==typeof MIXPANEL_CUSTOM_LIB_URL?MIXPANEL_CUSTOM_LIB_URL:"file:"===e.location.protocol&&"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js".match(/^\/\//)?"https://cdn.mxpnl.com/libs/mixpanel-2-latest.min.js":"//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js";c=e.getElementsByTagName("script")[0];c.parentNode.insertBefore(b,c)}})(document,window.mixpanel||[]);
mixpanel.init("eabe64b08e1a662c6d5dfb2e7b082837", {
loaded: function(mixpanel){
var distinct_id = mixpanel.get_distinct_id();
jQuery('input.mixpanel-distinct-id').val(distinct_id);
jQuery(window).trigger('mixpanelLoaded');
}
});
}</script>
<script type="text/javascript">if(is_allowed_cookie( 'mp_' )){
jQuery( document ).ready(function( $ ) {
mixpanel.register({
'Page Name' : 'Home'
});
mixpanel.track('Page Viewed');
});
}</script>
</head>
<body class="home page-template page-template-template-fluid page-template-template-fluid-php page page-id-1857 fl-builder group-blog">
<div class="page-site-wrapper">
<nav class="navbar navbar-inverse navbar-cry navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#top-nav">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/" title="Crypteron" rel="home">
<img class="logo-icon" src="/wp-content/themes/crypteron/includes/img/LogoMenuIcon.png">Crypteron
</a>
<div class="mobile-try-free-container">
<a class="btn btn-primary" href="#register">Try Free</a>
</div>
</div>
<div id="top-nav" class="navbar-collapse collapse navbar-inner">
<div class="mobile-login-button-container visible-hamburger-block">
<a class="btn btn-black btn-block btn-noarrow" href="https://my.crypteron.com/">Log In</a>
</div>
<ul id="menu-main-menu" class="nav navbar-nav top-menu">
<li id="menu-item-2433" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2433"><a href="/features/">Features</a></li>
<li id="menu-item-2239" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2239"><a href="/pricing/">Pricing</a></li>
<li id="menu-item-54" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-54 dropdown">
<a href="#" data-toggle="dropdown" data-target="#" class="dropdown-toggle">Documentation <span class="caret"></span></a>
<ul class="dropdown-menu">
<li id="menu-item-1834" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1834"><a href="/docs/">Developer Guide</a></li>
<li id="menu-item-1573" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1573"><a href="/faq/">Frequently Asked Questions</a></li>
<li id="menu-item-1168" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1168"><a href="https://support.crypteron.com/">Support</a></li>
</ul>
</li>
<li id="menu-item-53" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-53 dropdown">
<a href="#" data-toggle="dropdown" data-target="#" class="dropdown-toggle">Compliance <span class="caret"></span></a>
<ul class="dropdown-menu">
<li id="menu-item-1532" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1532"><a href="/compliance-faq/">Compliance FAQ</a></li>
<li id="menu-item-44" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-44"><a href="/pci/">PCI compliance (eCommerce)</a></li>
<li id="menu-item-2281" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2281"><a href="/hipaa-and-hitech/">HIPAA compliance (Healthcare)</a></li>
<li id="menu-item-49" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-49"><a href="/security-checklist/">Security Checklist</a></li>
</ul>
</li>
<li id="menu-item-40" class="blog-menu hidden-sm menu-item menu-item-type-post_type menu-item-object-page menu-item-40"><a href="/blog/">Blog</a></li>
<li id="menu-item-43" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-43"><a href="/contact/">Contact</a></li>
</ul> </div>
<div class="buttons-container navbar-right hidden-hamburger">
<a class="btn btn-black hollow navbar-btn btn-noarrow" href="https://my.crypteron.com/">Log In</a>
<a class="btn btn-primary navbar-btn btn-noarrow" href="#register">Try <span class="visible-md-inline visible-lg-inline">For</span> Free</a>
</div>
</div>
</nav>
<div class="page-site-content">
<div class="blog-content container-fluid">
<article id="post-1857" class="post-1857 page type-page status-publish hentry">
<div class="entry-content">
<div class="ttr_start"></div>
<div class="fl-builder-content fl-builder-content-1857 fl-builder-content-primary fl-builder-global-templates-locked" data-post-id="1857">
<div class="fl-row fl-row-full-width fl-row-bg-parallax fl-node-56ccf017c016c" data-node="56ccf017c016c" data-parallax-speed="2" data-parallax-image="http://www.crypteron.com/wp-content/uploads/HeroBG-compressed.jpg">
<div class="fl-row-content-wrap">
<div class="fl-row-content fl-row-fixed-width fl-node-content">
<div class="fl-col-group fl-node-56ccf017c01dc" data-node="56ccf017c01dc">
<div class="fl-col fl-node-56ccf017c01a4" data-node="56ccf017c01a4">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-heading fl-node-56ccf017bff9f" data-node="56ccf017bff9f">
<div class="fl-module-content fl-node-content">
<h1 class="fl-heading">
<span class="fl-heading-text">Data security is hard. Crypteron makes it easy.</span>
</h1>
</div>
</div>
<div class="fl-module fl-module-rich-text fl-node-56ccf017c024c" data-node="56ccf017c024c">
<div class="fl-module-content fl-node-content">
<div class="fl-rich-text">
<p style="text-align: center;"><span style="font-size: 17pt;">Get encryption and key management that integrates in minutes - not months!<br>
</span></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col-group fl-node-57d34f167a055" data-node="57d34f167a055">
<div class="fl-col fl-node-57d34f167a4a1" data-node="57d34f167a4a1">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-html fl-node-581cd5bb3fe2d" data-node="581cd5bb3fe2d">
<div class="fl-module-content fl-node-content">
<div class="fl-html">
<p style="text-align: center;">
<a class="btn btn-primary btn-xl popup-youtube" href="https://www.youtube.com/watch?v=CzoqGXzjG-w">
Watch a demo
</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col-group fl-node-57d3402fe864c fl-col-group-equal-height fl-col-group-align-top" data-node="57d3402fe864c">
<div class="fl-col fl-node-57d3402fe8a6c fl-col-small" data-node="57d3402fe8a6c">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-heading fl-node-56d15a0de8dcf perfect-heading" data-node="56d15a0de8dcf">
<div class="fl-module-content fl-node-content">
<h2 class="fl-heading">
<span class="fl-heading-text">CTOs and CISOs</span>
</h2>
</div>
</div>
<div class="fl-module fl-module-rich-text fl-node-56d15a2d43865 perfect-text" data-node="56d15a2d43865">
<div class="fl-module-content fl-node-content">
<div class="fl-rich-text">
<p>Gain complete control of your data in the public, private and hybrid cloud. One-click data breach response for peace of mind.</p>
<p><a class="btn btn-primary btn-sm" href="#ctos">Learn More</a></p>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col fl-node-57d3402fe8a91 fl-col-small" data-node="57d3402fe8a91">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-heading fl-node-56d1558ebeb95 perfect-heading" data-node="56d1558ebeb95">
<div class="fl-module-content fl-node-content">
<h2 class="fl-heading">
<span class="fl-heading-text">Software Companies</span>
</h2>
</div>
</div>
<div class="fl-module fl-module-rich-text fl-node-56d15808743c9 perfect-text" data-node="56d15808743c9">
<div class="fl-module-content fl-node-content">
<div class="fl-rich-text">
<p>Grow your business with more projects and bigger budgets in <strong>healthcare</strong>, <strong>finance</strong> and <strong>government</strong>. Complete them faster than your competition.</p>
<p><a class="btn btn-primary btn-sm" href="#agencies">Learn More</a></p>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col fl-node-57d3402fe8acd fl-col-small" data-node="57d3402fe8acd">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-heading fl-node-56d15a8ded58b perfect-heading" data-node="56d15a8ded58b">
<div class="fl-module-content fl-node-content">
<h2 class="fl-heading">
<span class="fl-heading-text">Developers</span>
</h2>
</div>
</div>
<div class="fl-module fl-module-rich-text fl-node-56d15a98dd311 perfect-text" data-node="56d15a98dd311">
<div class="fl-module-content fl-node-content">
<div class="fl-rich-text">
<p>Add high-end data security to your backend applications in minutes. Freedom from tedious, error-prone code so you can build cool features.</p>
<p><a class="btn btn-primary btn-sm" href="#developers">Learn More</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="customer-validation" class="fl-row fl-row-full-width fl-row-bg-none fl-node-5ad29b7302065 gray-section" data-node="5ad29b7302065">
<div class="fl-row-content-wrap">
<div class="fl-row-content fl-row-fixed-width fl-node-content">
<div class="fl-col-group fl-node-5ad29b7302a7d" data-node="5ad29b7302a7d">
<div class="fl-col fl-node-5ad29b7302aba" data-node="5ad29b7302aba">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-heading fl-node-5ad29b7302af7" data-node="5ad29b7302af7">
<div class="fl-module-content fl-node-content">
<h2 class="fl-heading">
<span class="fl-heading-text">Trusted by organizations across the globe to deliver millions of keys</span>
</h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fl-row fl-row-full-width fl-row-bg-color fl-node-5f52bcb0910d8" data-node="5f52bcb0910d8">
<div class="fl-row-content-wrap">
<div class="fl-row-content fl-row-full-width fl-node-content">
<div class="fl-col-group fl-node-5f52bcb09c166" data-node="5f52bcb09c166">
<div class="fl-col fl-node-5f52bcb09c241" data-node="5f52bcb09c241">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-testimonials fl-node-5f52bb4b213a5" data-node="5f52bb4b213a5">
<div class="fl-module-content fl-node-content">
<div class="fl-testimonials-wrap wide">
<div class="fl-testimonials">
<div class="fl-testimonial">
<h3 style="text-align: center;">"Crypteron is awesome. You guys ranked 1st in our internal vendor bake-off covering the top 20 vendors. It was powerful yet so simple that even our junior developers were immediately productive."</h3>
<p style="text-align: right;">– SVP, Top US Bank *<br><span style="color: #808080;">* private due to bank policies</span></p> </div>
<div class="fl-testimonial">
<h3 style="text-align: center;">"We all love that it’s a turn-key solution that maintains our strict security and PCI compliance requirements."</h3>
<p style="text-align: right;">– William Ward, CIO, GivePay Commerce</p> </div>
<div class="fl-testimonial">
<h2 style="text-align: center;">"Crypteron is the best product for our data security needs!"</h2>
<p style="text-align: right;">– Samuel Butler, CTO, FSoft/Swoosh Finance</p> </div>
</div>
<div class="fl-slider-prev" role="button" aria-pressed="false" aria-label="Previous"></div>
<div class="fl-slider-next" role="button" aria-pressed="false" aria-label="Next"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fl-row fl-row-full-width fl-row-bg-none fl-node-5892700d6c024 azure-bg" data-node="5892700d6c024">
<div class="fl-row-content-wrap">
<div class="fl-row-content fl-row-fixed-width fl-node-content">
<div class="fl-col-group fl-node-589270f7e2fae" data-node="589270f7e2fae">
<div class="fl-col fl-node-589270f7e34b1 fl-col-has-cols" data-node="589270f7e34b1">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-heading fl-node-589270f7e2cc8" data-node="589270f7e2cc8">
<div class="fl-module-content fl-node-content">
<h2 class="fl-heading">
<span class="fl-heading-text">Crypteron is a Certified Partner with <strong>Microsoft Azure</strong> and <strong>Amazon Web Services</strong></span>
</h2>
</div>
</div>
<div class="fl-col-group fl-node-589271c453b88 fl-col-group-nested fl-col-group-equal-height fl-col-group-align-center" data-node="589271c453b88">
<div class="fl-col fl-node-589271c4540c9 fl-col-small" data-node="589271c4540c9">
<div class="fl-col-content fl-node-content">
<div id="aws-logo" class="fl-module fl-module-photo fl-node-589271e6cc811" data-node="589271e6cc811">
<div class="fl-module-content fl-node-content">
<div class="fl-photo fl-photo-align-center" itemscope itemtype="https://schema.org/ImageObject">
<div class="fl-photo-content fl-photo-img-png">
<img loading="lazy" width="1024" height="289" class="fl-photo-img wp-image-2777" src="/wp-content/uploads/aws-logo-white-1024x289.png" alt="AWS Partner Network" itemprop="image" title="AWS Partner Network - White" srcset="/wp-content/uploads/aws-logo-white-1024x289.png 1024w, /wp-content/uploads/aws-logo-white-300x85.png 300w, /wp-content/uploads/aws-logo-white-768x217.png 768w, /wp-content/uploads/aws-logo-white.png 1142w" sizes="(max-width: 1024px) 100vw, 1024px">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col fl-node-589271c454109 fl-col-small" data-node="589271c454109">
<div class="fl-col-content fl-node-content">
<div id="azure-logo" class="fl-module fl-module-photo fl-node-58927351b2e76" data-node="58927351b2e76">
<div class="fl-module-content fl-node-content">
<div class="fl-photo fl-photo-align-center" itemscope itemtype="https://schema.org/ImageObject">
<div class="fl-photo-content fl-photo-img-png">
<img loading="lazy" width="300" height="300" class="fl-photo-img wp-image-2776" src="/wp-content/uploads/azure-certified-300x300.png" alt="Microsoft Azure Certified" itemprop="image" title="Microsoft Azure Certified" srcset="/wp-content/uploads/azure-certified-300x300.png 300w, /wp-content/uploads/azure-certified-150x150.png 150w, /wp-content/uploads/azure-certified.png 600w" sizes="(max-width: 300px) 100vw, 300px">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fl-module fl-module-rich-text fl-node-589274d3adb35" data-node="589274d3adb35">
<div class="fl-module-content fl-node-content">
<div class="fl-rich-text">
<h3 class="text-center" style="color: #ffffff; margin: 0;">Find Crypteron in the <a href="https://azuremarketplace.microsoft.com/en-us/marketplace/apps/crypteron.datasecurity" target="_blank">Azure Marketplace</a>
</h3>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fl-row fl-row-fixed-width fl-row-bg-none fl-node-57d72105a9bab" data-node="57d72105a9bab">
<div class="fl-row-content-wrap">
<div class="fl-row-content fl-row-fixed-width fl-node-content">
<div class="fl-col-group fl-node-57d7269e3b425" data-node="57d7269e3b425">
<div class="fl-col fl-node-57d7269e3bb4b" data-node="57d7269e3bb4b">
<div class="fl-col-content fl-node-content">
<div id="ctos" class="fl-module fl-module-heading fl-node-57d35115b7c43" data-node="57d35115b7c43">
<div class="fl-module-content fl-node-content">
<h2 class="fl-heading">
<span class="fl-heading-text"><strong>CTOs</strong> and <strong>CISOs</strong> secure their organization's data with Crypteron</span>
</h2>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col-group fl-node-57d72105b9317 fl-col-group-equal-height fl-col-group-align-top" data-node="57d72105b9317">
<div class="fl-col fl-node-57d72105b970a fl-col-small" data-node="57d72105b970a">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-rich-text fl-node-57d72758b470b bigger-text" data-node="57d72758b470b">
<div class="fl-module-content fl-node-content">
<div class="fl-rich-text">
<p>Every day a company gets hacked. Data breaches are no longer a question of "if" but "when". When your security solutions fail, attackers will head straight towards your most valuable asset: <strong>your data</strong>.</p>
<p><strong>Are you protected?</strong></p>
<p>Custom enterprise applications rely on developers to secure sensitive data. Unfortunately, most <strong>developers are not security experts </strong>and add <a href="/blog/the-real-problem-with-encryption/" target="_blank">cryptography to their code incorrectly</a>.</p>
<p>How can you be sure that your organization has succeeded where giants like Target, Citibank and the United Stated Government failed?</p>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col fl-node-57d72a835351c fl-col-small" data-node="57d72a835351c">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-heading fl-node-57d7314b0f6db" data-node="57d7314b0f6db">
<div class="fl-module-content fl-node-content">
<h3 class="fl-heading">
<span class="fl-heading-text"><strong>Watch the video!</strong></span>
</h3>
</div>
</div>
<div class="fl-module fl-module-photo fl-node-57d72a8c67b7a popup-youtube youtube-icon youtube-video-preview" data-node="57d72a8c67b7a">
<div class="fl-module-content fl-node-content">
<div class="fl-photo fl-photo-align-center" itemscope itemtype="https://schema.org/ImageObject">
<div class="fl-photo-content fl-photo-img-png">
<a href="https://www.youtube.com/watch?v=M_UldvVo89A" target="_self" itemprop="url">
<img loading="lazy" width="984" height="578" class="fl-photo-img wp-image-2399" src="/wp-content/uploads/overview-video.png" alt="overview-video" itemprop="image" title="overview-video" srcset="/wp-content/uploads/overview-video.png 984w, /wp-content/uploads/overview-video-300x176.png 300w, /wp-content/uploads/overview-video-768x451.png 768w" sizes="(max-width: 984px) 100vw, 984px">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col-group fl-node-57d72ac489387" data-node="57d72ac489387">
<div class="fl-col fl-node-57d72ac4897bf" data-node="57d72ac4897bf">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-rich-text fl-node-57d72aea462ef bigger-text" data-node="57d72aea462ef">
<div class="fl-module-content fl-node-content">
<div class="fl-rich-text">
<p>Most data security solutions are too complex, requiring custom APIs or hardware. Others are easy to adopt but are not truly secure. Building your own solution takes over a year writing risky, custom code that you then have to maintain. And relying on a cloud provider ties you to their platform.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col-group fl-node-57d732ffc5474" data-node="57d732ffc5474">
<div class="fl-col fl-node-57d732ffc590d" data-node="57d732ffc590d">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-heading fl-node-57d7335c1eddd" data-node="57d7335c1eddd">
<div class="fl-module-content fl-node-content">
<h3 class="fl-heading">
<span class="fl-heading-text">Crypteron is the solution</span>
</h3>
</div>
</div>
<div class="fl-module fl-module-rich-text fl-node-57d73316079a6 bigger-text" data-node="57d73316079a6">
<div class="fl-module-content fl-node-content">
<div class="fl-rich-text">
<p>Crypteron is a developer-friendly platform for securing backend applications in the public, private or hybrid cloud. Our patented technology takes care of all aspects of <strong>data encryption</strong>, <strong>tamper protection</strong>, <strong>key management</strong> and <strong>audit trails </strong>at the application layer regardless of where your data is actually stored. Developer integration takes minutes, transparently securing your applications' data access APIs. You can control your entire security model from a <strong>Management Dashboard </strong>and <strong>REST API -</strong> creating multiple security partitions, access control rules and key rotations. You can even shut down key management entirely, giving you a one-click response to data breaches.</p>
<p>Sensitive data never leaves your application in the clear, giving you <strong>complete control of your data in any environment</strong>.</p>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col fl-node-57d732ffc594d fl-col-small" data-node="57d732ffc594d">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-photo fl-node-56d1458a3dc99 fl-visible-desktop-medium" data-node="56d1458a3dc99">
<div class="fl-module-content fl-node-content">
<div class="fl-photo fl-photo-align-center" itemscope itemtype="https://schema.org/ImageObject">
<div class="fl-photo-content fl-photo-img-png">
<img loading="lazy" width="447" height="512" class="fl-photo-img wp-image-201" src="/wp-content/uploads/2014/12/CrypteronLogo.png" alt="CrypteronLogo" itemprop="image" title="CrypteronLogo" srcset="/wp-content/uploads/2014/12/CrypteronLogo.png 447w, /wp-content/uploads/2014/12/CrypteronLogo-262x300.png 262w" sizes="(max-width: 447px) 100vw, 447px">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col-group fl-node-57d7365eebb5f" data-node="57d7365eebb5f">
<div class="fl-col fl-node-57d7365eec14b" data-node="57d7365eec14b">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-html fl-node-57d7365eeb72c" data-node="57d7365eeb72c">
<div class="fl-module-content fl-node-content">
<div class="fl-html">
<p class="text-center">
<a href="/features" class="btn btn-xl btn-primary">Learn more</a>
<a href="/contact" class="btn btn-xl btn-info" style="margin: 10px 30px;">Get in touch</a>
<a href="#register" class="btn btn-xl btn-success">Try it free</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="agencies" class="fl-row fl-row-fixed-width fl-row-bg-none fl-node-57d731c732d70 blue-box boxed-row" data-node="57d731c732d70">
<div class="fl-row-content-wrap">
<div class="fl-row-content fl-row-fixed-width fl-node-content">
<div class="fl-col-group fl-node-57d731c733c0f" data-node="57d731c733c0f">
<div class="fl-col fl-node-57d731c733c4b" data-node="57d731c733c4b">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-heading fl-node-57d731c733c83" data-node="57d731c733c83">
<div class="fl-module-content fl-node-content">
<h2 class="fl-heading">
<span class="fl-heading-text"><strong>Software Development Companies</strong> grow their business with Crypteron</span>
</h2>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col-group fl-node-57d731c733cb9" data-node="57d731c733cb9">
<div class="fl-col fl-node-57d731c733cf0" data-node="57d731c733cf0">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-rich-text fl-node-57d731c733d27 bigger-text" data-node="57d731c733d27">
<div class="fl-module-content fl-node-content">
<div class="fl-rich-text">
<p><strong>Healthcare, Finance </strong>and <strong>Government</strong> sectors offer some of the most lucrative contracts for software development agencies, consultants and professional service firms. However, clients in these industries have the strictest level of compliance requirements including <a href="/hipaa-and-hitech/">HIPAA and HITECH</a>, <a href="/pci/">PCI</a>, CJIS, FISMA and EU Data Protection.</p>
<p>Building a backend application that satisfies these regulatory compliance rules <strong><em>and</em></strong> protects the sensitive data of your client is a massive challenge for any vendor. Many firms don't even bother bidding on these projects in order to avoid the legal risk of getting the data security component wrong.</p>
<h3>Crypteron is the solution</h3>
<p>Crypteron takes care of the entire data security pipeline in minutes instead of months, <em>including</em> regulatory compliance. It's like adding a dedicated security engineering team to your staff at a fraction of the cost.</p>
<p><a href="https://crypteron.blob.core.windows.net/press/CrypteronPressKit.zip"><img loading="lazy" class="img-responsive alignright wp-image-2404 size-medium" src="/wp-content/uploads/SecuredByCrypteron-300x116.png" alt="securedbycrypteron" width="300" height="116" srcset="/wp-content/uploads/SecuredByCrypteron-300x116.png 300w, /wp-content/uploads/SecuredByCrypteron.png 527w" sizes="(max-width: 300px) 100vw, 300px"></a>It takes <em>minutes</em> to add Crypteron to your projects so you can outbid the competition on both timeline and price. Tell your clients that their data is protected with <strong>256 bit AES-GCM encryption</strong> and <strong>tamper protection</strong>, with <strong>multiple encryption keys</strong>.<strong> </strong>The keys themselves are also <strong>encrypted</strong>, <strong>stored remotely</strong> and <strong>rotated regularly</strong> via a key management system that can be <strong>locked down at a moment's notice</strong> in the event of a data breach. Did we mention that they get an audit trail as well?</p>
<p>You can even use the <em>"Secured By Crypteron"</em> badge <a href="https://crypteron.blob.core.windows.net/press/CrypteronPressKit.zip" target="_blank" rel="noopener">from our press kit</a> to let your customers know that you take security and compliance very seriously.</p>
</div>
</div>
</div>
<div class="fl-module fl-module-html fl-node-57d748b5b54c5" data-node="57d748b5b54c5">
<div class="fl-module-content fl-node-content">
<div class="fl-html">
<p class="text-center">
<a href="/features" class="btn btn-xl btn-primary">Learn more</a>
<a href="/contact" class="btn btn-xl btn-info" style="margin: 10px 30px;">Get in touch</a>
<a href="#register" class="btn btn-xl btn-success">Try it free</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="developers" class="fl-row fl-row-fixed-width fl-row-bg-color fl-node-57d8662097bbb boxed-row" data-node="57d8662097bbb">
<div class="fl-row-content-wrap">
<div class="fl-row-content fl-row-fixed-width fl-node-content">
<div class="fl-col-group fl-node-57d866a5268c1" data-node="57d866a5268c1">
<div class="fl-col fl-node-57d866a526d09" data-node="57d866a526d09">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-heading fl-node-56ccf017c0215 heading-highlight" data-node="56ccf017c0215">
<div class="fl-module-content fl-node-content">
<h1 class="fl-heading">
<span class="fl-heading-text"><strong>Developers</strong> innovate securely with Crypteron</span>
</h1>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col-group fl-node-57d8668258345" data-node="57d8668258345">
<div class="fl-col fl-node-57d86682587db fl-col-small" data-node="57d86682587db">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-rich-text fl-node-57d866ddcb21a bigger-text" data-node="57d866ddcb21a">
<div class="fl-module-content fl-node-content">
<div class="fl-rich-text">
<p>Crypteron was built by developers, for developers. Our SDKs are on <a href="https://www.nuget.org/packages?q=crypteron">NuGet</a> and <a href="http://search.maven.org/#search|ga|1|crypteron">Maven</a> and take minutes to integrate with your .NET and Java applications.</p>
<p>We realize that most developers aren't security experts so Crypteron is designed to be a set-and-forget-solution that transparently handles the entire data security pipeline - including complex key management tasks.</p>
<p>We even have a <a href="/community-edition/"><strong>Community Edition</strong></a> that is 100% free! So what are you waiting for?</p>
<div class="text-center"><a class="btn btn-lg btn-success" href="#register">Sign up for free</a></div>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col fl-node-57d866825881a fl-col-small" data-node="57d866825881a">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-heading fl-node-56cfae1d1bf82" data-node="56cfae1d1bf82">
<div class="fl-module-content fl-node-content">
<h4 class="fl-heading">
<span class="fl-heading-text"><strong>Just a couple of lines of code instantly enable:</strong></span>
</h4>
</div>
</div>
<div class="fl-module fl-module-rich-text fl-node-57d86b2cc3177 feature-list" data-node="57d86b2cc3177">
<div class="fl-module-content fl-node-content">
<div class="fl-rich-text">
<ul>
<li>One-click response to data breaches</li>
<li>Strong Encryption</li>
<li>Tamper Protection</li>
<li>API-less Key Management</li>
<li>Secure Key Storage and Distribution</li>
<li>Key Caching</li>
<li>Access Control</li>
<li>Audit Logs</li>
<li>Key Revocations</li>
<li>Key Rotations</li>
<li>Secures all data types <span style="font-size: 12px; font-style: italic;">(SQL, NoSQL, Objects, Files, Streams etc.)</span>
</li>
</ul>
</div>
</div>
</div>
<div class="fl-module fl-module-html fl-node-57d86a776995f" data-node="57d86a776995f">
<div class="fl-module-content fl-node-content">
<div class="fl-html">
<div class="text-center">
<a href="/wp-content/uploads/featurecomparison.png" class="modal-img btn btn-primary btn-lg">
Compare Crypteron to building this yourself
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col-group fl-node-57d8662097fa5" data-node="57d8662097fa5">
<div class="fl-col fl-node-57d8662097fdf" data-node="57d8662097fdf">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-heading fl-node-57d8662098016" data-node="57d8662098016">
<div class="fl-module-content fl-node-content">
<h2 class="fl-heading">
<span class="fl-heading-text">How does it work?</span>
</h2>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col-group fl-node-57d866209804c" data-node="57d866209804c">
<div class="fl-col fl-node-57d8662098083 fl-col-small" data-node="57d8662098083">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-tabs fl-node-57d86620980b9" data-node="57d86620980b9">
<div class="fl-module-content fl-node-content">
<div class="fl-tabs fl-tabs-horizontal fl-clearfix">
<div class="fl-tabs-labels fl-clearfix" role="tablist">
<a href="#" class="fl-tabs-label fl-tab-active" id="fl-tabs-57d86620980b9-label-0" data-index="0" aria-selected="true" aria-controls="fl-tabs-57d86620980b9-panel-0" aria-expanded="true" role="tab" tabindex="0"> .NET Example </a>
<a href="#" class="fl-tabs-label" id="fl-tabs-57d86620980b9-label-1" data-index="1" aria-selected="false" aria-controls="fl-tabs-57d86620980b9-panel-1" aria-expanded="false" role="tab" tabindex="0"> Java Example </a>
</div>
<div class="fl-tabs-panels fl-clearfix">
<div class="fl-tabs-panel">
<div class="fl-tabs-label fl-tabs-panel-label fl-tab-active" data-index="0" tabindex="0">
<span>.NET Example</span>
<i class="fas"></i>
</div>
<div class="fl-tabs-panel-content fl-clearfix fl-tab-active" id="fl-tabs-57d86620980b9-panel-0" data-index="0" aria-labelledby="fl-tabs-57d86620980b9-label-0" role="tabpanel" aria-live="polite"> <p><span id="dev-csharp-cipherdb">Add</span> a <code>[Secure]</code> attribute to any properties of your class that you want to sign and encrypt:</p>
<pre class="code code-sample" data-line="4,6"><code class="language-csharp">public class Patient
{
public int Id {get; set;}
[Secure]
public string FullName {get; set;}
[Secure]
public string SocialSecurityNumber {get; set;}
}</code></pre>
<p>If you're using <a href="https://msdn.microsoft.com/en-us/data/ef.aspx" target="_blank">Microsoft Entity Framework</a> or <a href="http://nhibernate.info/" target="_blank">NHibernate</a> then you're done! Crypteron will automatically sign and encrypt these properties using AES-GCM before your object is persisted to the database. It will then decrypt and verify that they weren't tampered with on the way back. It could not be any easier.</p>
<p><span id="dev-csharp-object">Not using Entity Framework or NHibernate?</span> No problem! Just call <code>Seal()</code> on your object before sending it to the data store of your choice and call <code>Unseal()</code> when you fetch it back:</p>
<pre class="code code-sample"><code class="language-csharp">// Secure the object before sending
myPatient.Seal();
// Decrypt and verify the object after fetching
myPatient.Unseal();</code></pre>
<p><span id="dev-csharp-stor">What about files or file streams?</span> No problem!</p>
<pre class="code code-sample"><code class="language-csharp">var cipherStor = new CipherStorExt();
// Files
cipherStor.EncryptLocalFile(clearFilePath, encryptedFilePath);
cipherStor.DecryptLocalFile(encryptedFilePath, clearFilePath);
// Streams
cipherStor.EncryptStream(clearInputStream, encryptedOutputStream);
cipherStor.DecryptStream(encryptedOutputStream, clearInputStream);</code></pre>
</div>
</div>
<div class="fl-tabs-panel">
<div class="fl-tabs-label fl-tabs-panel-label" data-index="1" tabindex="0">
<span>Java Example</span>
<i class="fas fa-plus"></i>
</div>
<div class="fl-tabs-panel-content fl-clearfix" id="fl-tabs-57d86620980b9-panel-1" data-index="1" aria-hidden="true" aria-labelledby="fl-tabs-57d86620980b9-label-1" role="tabpanel" aria-live="polite"> <p><span id="dev-java-cipherdb">Add</span> a <code>@Secure</code> annotation to any properties of your class that you want to sign and encrypt:</p>
<pre class="code code-sample" data-line="7,11"><code class="language-csharp">public class Patient
{
@Id
@Column(name="Id")
private int Id
@Secure
@Column(name="FullName")
private String FullName;
@Secure
@Column(name="SocialSecurityNumber")
private String SocialSecurityNumber;
}</code></pre>
<p>If you're using Java Persistence API (JPA) with <a href="http://hibernate.org/orm/" target="_blank">Hibernate</a> then you're done! Crypteron will automatically sign and encrypt these properties using AES-GCM before your object is persisted to the database. It will then decrypt and verify that they weren't tampered with on the way back. It could not be easier!</p>
<p><span id="dev-java-cipherobject">Not using Hibernate? </span> No problem! Just pass your object to the <code>seal()</code> method before sending it to the data store of your choice and pass it to <code>unseal()</code> when you fetch it back:</p>
<pre class="code code-sample"><code class="language-csharp">// Secure the object before sending
CipherObject.seal(myPatient);
// Decrypt and verify the object after fetching
CipherObject.unseal(myPatient);</code></pre>
<p><span id="dev-java-cipherstor">What about files or file streams? No problem! </span></p>
<pre class="code code-sample"><code class="language-csharp">CipherStor cipherStor = new CipherStor();
// Files
cipherStor.encryptLocalFile(clearFile, encryptedFile);
cipherStor.decryptLocalFile(encryptedFile, clearFile);
// Streams
cipherStor.encryptStream(clearInputStream, encryptedOutputStream);
cipherStor.decryptStream(encryptedStream, clearOutputStream);</code></pre>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col fl-node-57d86620980f0 fl-col-small" data-node="57d86620980f0">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-photo fl-node-57d8662098127 popup-youtube youtube-icon youtube-video-preview" data-node="57d8662098127">
<div class="fl-module-content fl-node-content">
<div class="fl-photo fl-photo-align-center" itemscope itemtype="https://schema.org/ImageObject">
<div class="fl-photo-content fl-photo-img-png">
<a href="https://www.youtube.com/watch?v=CzoqGXzjG-w" target="_self" itemprop="url">
<img loading="lazy" width="557" height="327" class="fl-photo-img wp-image-2259" src="/wp-content/uploads/watch-demo.png" alt="watch-demo" itemprop="image" title="watch-demo" srcset="/wp-content/uploads/watch-demo.png 557w, /wp-content/uploads/watch-demo-300x176.png 300w" sizes="(max-width: 557px) 100vw, 557px">
</a>
</div>
</div>
</div>
</div>
<div class="fl-module fl-module-heading fl-node-57d866209815d" data-node="57d866209815d">
<div class="fl-module-content fl-node-content">
<h3 class="fl-heading">
<span class="fl-heading-text">What about the encryption keys?</span>
</h3>
</div>
</div>
<div class="fl-module fl-module-rich-text fl-node-57d8662098174 bigger-md-text" data-node="57d8662098174">
<div class="fl-module-content fl-node-content">
<div class="fl-rich-text">
<p><span style="font-size: 18px; line-height: 1.5em;">Good question! Proper key management is one of the most complicated part of strong data security and Crypteron takes care of this transparently so you can spend that extra time adding features to your application.</span></p>
<ul class="feature-list">
<li>Encryption keys are multi-layered encrypted with AES256 and elliptic curve cryptography</li>
<li>Encrypted keys are stored remotely, separate from your application or your databases</li>
<li>The SDK authenticates the key management service using strong cryptography</li>
<li>Keys are securely delivered to the SDK through multi-layered encryption</li>
<li>Keys are intelligently cached to maximize performance</li>
<li>Keys can be rotated with a single click</li>
<li>The SDK optionally migrates data to new key versions automatically and deterministically</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="fl-col-group fl-node-57d8724470bc6" data-node="57d8724470bc6">
<div class="fl-col fl-node-57d8724470fba" data-node="57d8724470fba">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-heading fl-node-57d872447093e" data-node="57d872447093e">
<div class="fl-module-content fl-node-content">
<h3 class="fl-heading">
<span class="fl-heading-text">Control your security model with the <strong>Management Dashboard</strong> and <strong>REST API</strong></span>
</h3>
</div>
</div>
<div class="fl-module fl-module-rich-text fl-node-57d87b071f842 bigger-text" data-node="57d87b071f842">
<div class="fl-module-content fl-node-content">
<div class="fl-rich-text">
<p><span style="font-size: 18px; line-height: 1.5em;">Use the <strong>Management Dashboard</strong> and<strong> REST API</strong> to register a new application and divide its data into <strong>security partitions</strong>, each with its own encryption key hierarchy and set of <strong>access control rules</strong>. The Management Dashboard also lets you issue a <strong>key rotation</strong> for a security partition with a single click. In the event of a data breach, you can <strong>pause your app</strong> which suspends all key management operations.<br>
</span></p>
</div>
</div>
</div>
<div class="fl-module fl-module-html fl-node-57d87c5b2c67a" data-node="57d87c5b2c67a">
<div class="fl-module-content fl-node-content">
<div class="fl-html">
<p class="text-center">
<a href="/features" class="btn btn-xl btn-primary">Learn more</a>
<a href="/contact" class="btn btn-xl btn-info" style="margin: 10px 30px;">Get in touch</a>
<a href="#register" class="btn btn-xl btn-success">Try it free</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="ttr_end"></div> </div>
<!-- .entry-content -->
</article><!-- #post-## -->
</div>
</div> <!-- /page-site-content -->
<div id="recent-blog-posts">
<link rel="stylesheet" id="fl-builder-layout-2892-css" href="/wp-content/uploads/bb-plugin/cache/2892-layout-partial.css?ver=f582301330442ba0e0a045e723246d82" type="text/css" media="all">
<div class="fl-builder-content fl-builder-content-2892 fl-builder-template fl-builder-row-template fl-builder-global-templates-locked" data-post-id="2892">
<div class="fl-row fl-row-full-width fl-row-bg-photo fl-node-5903c2b03d4f5" data-node="5903c2b03d4f5">
<div class="fl-row-content-wrap">
<div class="fl-row-content fl-row-fixed-width fl-node-content">
<div class="fl-col-group fl-node-5903c2b03d372" data-node="5903c2b03d372">
<div class="fl-col fl-node-5903c2b03d3e4" data-node="5903c2b03d3e4">
<div class="fl-col-content fl-node-content">
<div class="fl-module fl-module-heading fl-node-5903c2b03d4be" data-node="5903c2b03d4be">
<div class="fl-module-content fl-node-content">
<h3 class="fl-heading">
<span class="fl-heading-text">Recent blog posts</span>
</h3>
</div>
</div>
<div id="footer-slider" class="fl-module fl-module-post-carousel fl-node-5903c2b03d41a" data-node="5903c2b03d41a">
<div class="fl-module-content fl-node-content">
<div class="fl-post-carousel fl-post-carousel-grid" itemscope="itemscope" itemtype="https://schema.org/Blog">
<div class="fl-post-carousel-wrapper">
<div class="fl-post-carousel-post post-3123 post type-post status-publish format-standard has-post-thumbnail hentry category-cipherdb category-developer-notes" itemscope itemtype="https://schema.org/BlogPosting">
<meta itemscope itemprop="mainEntityOfPage" itemtype="https://schema.org/WebPage" itemid="https://www.crypteron.com/blog/migrating-existing-live-data-into-crypteron/" content="Migrating existing live data into Crypteron">
<meta itemprop="datePublished" content="2018-09-19">
<meta itemprop="dateModified" content="2020-02-05">
<div itemprop="publisher" itemscope itemtype="https://schema.org/Organization"><meta itemprop="name" content="Crypteron"></div>
<div itemscope itemprop="author" itemtype="https://schema.org/Person">
<meta itemprop="url" content="/blog/author/sid-shetye/">
<meta itemprop="name" content="Sid Shetye">
</div>
<div itemscope itemprop="image" itemtype="https://schema.org/ImageObject">
<meta itemprop="url" content="/wp-content/uploads/encryption.jpeg">
<meta itemprop="width" content="1920">
<meta itemprop="height" content="1080">
</div>
<div itemprop="interactionStatistic" itemscope itemtype="https://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="https://schema.org/CommentAction">
<meta itemprop="userInteractionCount" content="1">
</div>
<div class="fl-post-carousel-image">
<div class="fl-photo fl-photo-crop-panorama fl-photo-align-center" itemscope itemtype="https://schema.org/ImageObject">
<div class="fl-photo-content fl-photo-img-jpeg">
<a href="/blog/migrating-existing-live-data-into-crypteron/" target="_self" itemprop="url">
<img class="fl-photo-img wp-image-3129 size-medium" src="/wp-content/uploads/bb-plugin/cache/encryption-300x169-panorama.jpeg" alt="Encryption" itemprop="image" loading="false" height="169" width="300" title="Encryption">
</a>
</div>
</div>
</div>
<div class="fl-post-carousel-text">
<h2 class="fl-post-carousel-title" itemprop="headline">
<a href="/blog/migrating-existing-live-data-into-crypteron/" title="Migrating existing live data into Crypteron">Migrating existing live data into Crypteron</a>
</h2>
<div class="fl-post-carousel-content">
<p>You’re already live in production. And you have sensitive in the clear. Read this article to see how Crypteron can help.</p>
</div>
</div>
</div>
<div class="fl-post-carousel-post post-2994 post type-post status-publish format-standard has-post-thumbnail hentry category-cipherdb category-developer-notes" itemscope itemtype="https://schema.org/BlogPosting">
<meta itemscope itemprop="mainEntityOfPage" itemtype="https://schema.org/WebPage" itemid="https://www.crypteron.com/blog/encryption-entity-framework-and-projections/" content="Encryption, Entity Framework and Projections">
<meta itemprop="datePublished" content="2017-08-22">
<meta itemprop="dateModified" content="2018-09-21">
<div itemprop="publisher" itemscope itemtype="https://schema.org/Organization"><meta itemprop="name" content="Crypteron"></div>
<div itemscope itemprop="author" itemtype="https://schema.org/Person">
<meta itemprop="url" content="/blog/author/sid-shetye/">
<meta itemprop="name" content="Sid Shetye">
</div>
<div itemscope itemprop="image" itemtype="https://schema.org/ImageObject">
<meta itemprop="url" content="/wp-content/uploads/code.jpeg">
<meta itemprop="width" content="1280">
<meta itemprop="height" content="853">
</div>
<div itemprop="interactionStatistic" itemscope itemtype="https://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="https://schema.org/CommentAction">
<meta itemprop="userInteractionCount">
</div>
<div class="fl-post-carousel-image">
<div class="fl-photo fl-photo-crop-panorama fl-photo-align-center" itemscope itemtype="https://schema.org/ImageObject">
<div class="fl-photo-content fl-photo-img-jpeg">
<a href="/blog/encryption-entity-framework-and-projections/" target="_self" itemprop="url">
<img class="fl-photo-img wp-image-2361 size-medium" src="/wp-content/uploads/bb-plugin/cache/code-300x200-panorama.jpeg" alt="code" itemprop="image" loading="false" height="200" width="300" title="code">
</a>
</div>
</div>
</div>
<div class="fl-post-carousel-text">
<h2 class="fl-post-carousel-title" itemprop="headline">
<a href="/blog/encryption-entity-framework-and-projections/" title="Encryption, Entity Framework and Projections">Encryption, Entity Framework and Projections</a>
</h2>
<div class="fl-post-carousel-content">
<p>Projections in Entity Framework live outside the entity lifecycle. Read more to learn how your can use Crypteron to secure such data.</p>
</div>
</div>
</div>
<div class="fl-post-carousel-post post-2842 post type-post status-publish format-standard has-post-thumbnail hentry category-developer-notes category-uncategorized tag-dss tag-key-management tag-key-rotations tag-pci tag-pci-dss" itemscope itemtype="https://schema.org/BlogPosting">
<meta itemscope itemprop="mainEntityOfPage" itemtype="https://schema.org/WebPage" itemid="https://www.crypteron.com/blog/pci-dss-key-rotations-simplified/" content="PCI DSS and key rotations simplified">
<meta itemprop="datePublished" content="2017-03-21">
<meta itemprop="dateModified" content="2018-02-07">
<div itemprop="publisher" itemscope itemtype="https://schema.org/Organization"><meta itemprop="name" content="Crypteron"></div>
<div itemscope itemprop="author" itemtype="https://schema.org/Person">
<meta itemprop="url" content="/blog/author/sid-shetye/">
<meta itemprop="name" content="Sid Shetye">
</div>
<div itemscope itemprop="image" itemtype="https://schema.org/ImageObject">
<meta itemprop="url" content="/wp-content/uploads/KeyManagement.jpg">
<meta itemprop="width" content="1600">
<meta itemprop="height" content="1065">
</div>
<div itemprop="interactionStatistic" itemscope itemtype="https://schema.org/InteractionCounter">
<meta itemprop="interactionType" content="https://schema.org/CommentAction">
<meta itemprop="userInteractionCount" content="1">