aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/data/protection_profiles/pp_active.html
blob: cc3708d293cc488bd9a4829740d29dc524028994 (plain) (blame)
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="classification" content="Internet" />
<meta name="distribution" content="Global" />
<meta name="rating" content="Safe For Kids" />
<meta name="copyright" content="public domain" />
<meta name="language" content="en" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Accept-Encoding" content="compress, gzip" />
<title>Protection Profiles : CC Portal</title>
<link href="/assets/css/main.css" rel="stylesheet" type="text/css" />
<link href="/assets/css/print.css" rel="stylesheet" type="text/css" media="print" />
<link href="/assets/js/jQuery/themes/base/jquery.ui.all.css" rel="stylesheet" type="text/css" />
<link href="/assets/js/jQuery/plugins/tabs/tabs.css" rel="stylesheet" type="text/css" />
<!--[if lt IE 7]>
<link href="/assets/css/ie-lt-7.css" rel="stylesheet" type="text/css" />
<![endif]-->
<!--[if gte IE 7]>
<link href="/assets/css/ie7.css" rel="stylesheet" type="text/css" />
<![endif]-->
<script src="/assets/js/jQuery/js/jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="/assets/js/jQuery/js/jquery-ui-1.8.4.custom.min.js" type="text/javascript"></script>
<script src="/assets/js/jQuery/plugins/metadata/jquery.metadata.js" type="text/javascript"></script>
<script src="/assets/js/jQuery/plugins/tabs/jquery.tools.min.js" type="text/javascript"></script>
<!-- jstablesorter sppt -->
<script src="/assets/js/jQuery/plugins/tablesorter/jquery.tablesorter.min.js" type="text/javascript"></script>
<link href="/assets/js/jQuery/plugins/tablesorter/css/style.css" rel="stylesheet" type="text/css" />
<!-- END jstablesorter sppt -->
<link rel="alternate" title="Protection Profiles" href="../rss/pps.xml" type="application/rss+xml"/>
<link rel="Shortcut Icon" type="image/ico" href="/assets/images/cc.ico" />
<!-- assets/includes/SQL_Check.cfm -->
<!-- ??? ???????? -->
<!-- 2012.03.15 - 2012.XX.XX -->
<!-- This page creates and manages a list of IP addresses to be blocked due -->
<!-- to dangerous requests which may be SQL Injection Attacks -->
<!-- Included in the site's std header: assets/includes/header.cfm -->
<!--Corregidor-->
<!--Corregidor-->
<!-- 2012.03.15 - 2012.XX.XX - Initial dev//index.cfm??? -->
<!-- 2012.07.11 - Last mod before 2016//index.cfm??? -->
<!-- 2016.06.23 - Cleanup, minor edits, and comments added//KC -->
</head>
<!-- 2017.09.07 - Adjusted jstablesorter sppt//KC -->
<body>
<div id="wrap">
<div id="banner">
<p class="topNav">
<a href="/sitemap/index.cfm" title="View the sitemap"> Sitemap</a> &nbsp; | &nbsp;
<a href="/contact/message/index.cfm" title="Contact us">Contact</a>
&nbsp;&nbsp;
</p>
<!-- Google CSE Search Box Begins -->
<div id="searchbox">
<form id="016233930414485990345:f_zj6spfpx4" action="/search/index.cfm"
style="margin:0;padding:0">
<span style="white-space:nowrap">
<input type="hidden" name="cx" value="016233930414485990345:f_zj6spfpx4" />
<input type="hidden" name="cof" value="FORID:11" />
<input type="hidden" name="ie" value="UTF-8" />
<input name="q" type="text" size="30" />
<input type="submit" name="sa" value="Search" />
</span>
</form>
</div>
<script type="text/javascript" src="//www.google.com/coop/cse/brand?form=searchbox_016233930414485990345:f_zj6spfpx4"></script>
<!-- Google CSE Search Box Ends -->
</div>
<div id="logo">
<p>
<a href="/members/account/login/index.cfm">Login &nbsp; <img src="/assets/images/icon_arrow.png" /> </a>
</p></div>
<!--[if gte IE 9]>
<style type="text/css">
.gradient {
filter: none;
}$(function() {
$( "#menutabs" ).menutabs();
</style>
<![endif]-->
<!-- >
<style type="text/css">
.trad-blink {
animation: blinker 1.5s cubic-bezier(.5, 0, 1, 1) infinite alternate;
}
@keyframes blinker {
from { opacity: 1; }
to { opacity: .2;}
}
</style>
< -->
<div id="menutabs">
<ul class="menutabs menuitem">
<li ><a href="/news/index.cfm" title="News">
NEWS</a></li>
<li class="inline-code trad-blink"> <a href="/iccc/index.cfm" title="ICCC" >
ICCC</a></li>
<li>
<a href="/pps/index.cfm" title="Protection Profiles">
PROTECTION PROFILES	</a> </li>
<li>
<a href="/pps/collaborativePP.cfm?cpp=1" title="Collaborative Protection Profiles">
COLLABORATIVE PPS	</a> </li>
<li>	<a href="/products/index.cfm" title="Certified Products">
CERTIFIED PRODUCTS </a></li>
<li>
<a href="/communities/index.cfm" title="Technology Communities">
TECHNICAL COMMUNITIES</a></li>
<li>
<a href="/cc/index.cfm">
PUBLICATIONS</a> </li>
<li><a href="/ccra/index.cfm">
ABOUT THE CC</a></li>
<li><a href="/">HOME</a></li>
</ul>
</div>
<div id="slides">
<div class="slides_container">
<div><img src="/assets/images/slides/official_cc_ccm_banner.jpg"></div>
<br />
</div>
</div>
<!--[if gte IE 9]>
<style type="text/css">
.gradient {
filter: none;
}
</style>
<![endif]-->
<div id="content">
<h1 id="page_title">Protection Profiles</h1>
<!-- --------------------------------------------------------------------------------------------------------------
For those of you poking around in the page source, the following URL parameters are available on this page:
expand - auto-expand the tables after the page loads
names - display filenames for the certification report and security target files for easier (F)inding
--------------------------------------------------------------------------------------------------------------- -->
<style type="text/css">
.textRight {
text-align: right;
}
td{
max-width: 100px;
white-space: normal;
overflow: hidden;
text-overflow: ellipsis;
}
.gridTable thead, .gridTable tbody, .gridTable tfoot { display:none}
.gridTable caption a { color:#333; text-decoration:none }
.gridTable caption { text-align:left !important; background: #fff }
.reset-button {
margin-right: 10px;
padding: 2px 6px;
font-weight: bold;
color: red;
cursor: pointer;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
$("a#toggle").click().toggle(
function() { openAll() },
function() { closeAll() }
);
$("a.toggle").click().toggle(
function() { openTbl(this.name); },
function() { closeTbl(this.name); }
);
function openAll() {
$(".gridTable caption").css({'background':'#666'});
$(".gridTable caption a").css({'color':'#fff'});
$(".gridTable thead").show();
$(".gridTable tbody").show();
$(".gridTable tfoot").show();
$("a[id^='toggle'] img").attr("src","/assets/images/minicon.gif");
}
function closeAll() {
$(".gridTable caption").css({'background':'#fff'});
$(".gridTable caption a").css({'color':'#333'});
$(".gridTable thead").hide();
$(".gridTable tbody").hide();
$(".gridTable tfoot").hide();
$("a[id^='toggle'] img").attr("src","/assets/images/plusicon.gif");
}
function openTbl(tbl) {
$(".gridTable#tbl" + tbl + " caption").css({'background':'#333'});
$(".gridTable#tbl" + tbl + " caption a").css({'color':'#fff'});
$(".gridTable#tbl" + tbl + " thead").show();
$(".gridTable#tbl" + tbl + " tbody").show();
$(".gridTable#tbl" + tbl + " tfoot").show();
$("a#toggle" + tbl +" img").attr("src","/assets/images/minicon.gif");
}
function closeTbl(tbl) {
$(".gridTable#tbl" + tbl + " caption").css({'background':'#fff'});
$(".gridTable#tbl" + tbl + " caption a").css({'color':'#333'});
$(".gridTable#tbl" + tbl + " thead").hide();
$(".gridTable#tbl" + tbl + " tbody").hide();
$(".gridTable#tbl" + tbl + " tfoot").hide();
$("a#toggle" + tbl + " img").attr("src","/assets/images/plusicon.gif");
}
function showProgress() {
$('#progress').css({'display':'block'});
$('#content').attr('disabled', true);
}
function hideProgress() {
$('#progress').css({'display':'none'});
$('#content').removeAttr('disabled');
}
// Function to decode HTML entities
function decodeEntities(text) {
const element = document.createElement('div');
element.innerHTML = text;
return element.textContent || element.innerText;
}
function formatTimestamp(timestamp) {
if (timestamp)
{
const date = new Date(timestamp);
return date.toISOString().split('T')[0]
}
else
{
return "";
}
}
var ppList = [{"PPID":391,"ID":"2019.0008","Scheme":"KR","cPP":0,"Name":"Protection Profile for Network Device V1.0","Abbr":"","Categories":"","EAL":"1","Version":"V1.0","Augs":"140","PDF_Cert":"","PDF_PP":"","PDF_ES":"","PDF_SD":"","Issue_Date":"2019-07-11","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":363,"ID":"2017.0019","Scheme":"KR","cPP":0,"Name":"Korean National Protection Profile for Single Sign On V1.0","Abbr":"KECS-PP-0822-2017 SSO V1.0","Categories":"AC","EAL":"1+","Version":"V1.0","Augs":"140","PDF_Cert":"KECS-CR-17-58 Korean National PP for Single Sign On V1.0(eng).pdf","PDF_PP":"KECS-PP-0822-2017 Korean National PP for Single Sign On V1.0(eng).pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-08-18","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL1+"},{"PPID":462,"ID":"2019.0027","Scheme":"KR","cPP":0,"Name":"Korean National Protection Profile for Single Sign On V1.1","Abbr":"KECS-PP-0822A-2017 SSO V1.1","Categories":"AC","EAL":"1+","Version":"V1.1","Augs":"140","PDF_Cert":"KECS-PP-0822a-2017_AC_EN.pdf","PDF_PP":"KECS-PP-0822a-2017_PP_EN.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2019-12-11","Archived":"","Creator":32,"EntryDate":"September, 05 2022 03:15:39 +0000","Editor":32,"ModDate":"September, 05 2022 03:41:43 +0000","PDF_TB":"","eal_name":"EAL1+"},{"PPID":486,"ID":"2023.0005","Scheme":"KR","cPP":0,"Name":"Korean National Protection Profile for Access Control in Operating System V3.0","Abbr":"ACCESS CONTROL IN OPERATING SYSTEM","Categories":"AC","EAL":"1+","Version":"V3.0","Augs":"140","PDF_Cert":"23-04-27 (KECS-CR-27)(KECS-PP-1233-2023)CR Korean National PP for Access Control in Operating System V3.0(eng).pdf","PDF_PP":"23-04-27 (KECS-CR-27)(KECS-PP-1233-2023)PP Korean National Protection Profile for Access Control in Operating System V3.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2023-04-27","Archived":"","Creator":32,"EntryDate":"May, 02 2023 05:55:53 +0000","Editor":32,"ModDate":"May, 02 2023 06:12:25 +0000","PDF_TB":"","eal_name":"EAL1+"},{"PPID":488,"ID":"2023.0007","Scheme":"KR","cPP":0,"Name":"Korean National Protection Profile for Single Sign On V3.0","Abbr":"SINGLE SIGN ON","Categories":"AC","EAL":"1+","Version":"V3.0","Augs":"140","PDF_Cert":"23-04-27 (KECS-CR-24)(KECS-PP-1230-2023)PP Korean National Protection Profile for Single Sign On V3.0.pdf","PDF_PP":"23-04-27 (KECS-CR-24)(KECS-PP-1230-2023)CR Korean National Protection Profile for Single Sign On V3.0(eng).pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2023-04-27","Archived":"","Creator":32,"EntryDate":"May, 02 2023 06:02:00 +0000","Editor":32,"ModDate":"May, 02 2023 06:09:32 +0000","PDF_TB":"","eal_name":"EAL1+"},{"PPID":504,"ID":"2024.0006","Scheme":"DE","cPP":0,"Name":"CCC Digital Key Applet Protection Profile","Abbr":"BSI-CC-PP-0119-2024","Categories":"AC","EAL":"4+","Version":"1.0","Augs":"126,149","PDF_Cert":"pp0119a_pdf.pdf","PDF_PP":"pp0119b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2024-01-31","Archived":"2034-01-31","Creator":61,"EntryDate":"May, 16 2024 06:40:55 +0000","Editor":61,"ModDate":"May, 16 2024 06:40:55 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":511,"ID":"2023.0014","Scheme":"KR","cPP":0,"Name":"Korean National Protection Profile for Single Sign On V3.0","Abbr":"KECS-PP-1230-2023 SSO V3.0","Categories":"AC","EAL":"1+","Version":"V3.0","Augs":"140","PDF_Cert":"KECS-PP-1230-2023_CR_EN.pdf","PDF_PP":"KECS-PP-1230-2023_PP_EN.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2023-04-27","Archived":"","Creator":32,"EntryDate":"August, 12 2024 05:00:49 +0000","Editor":32,"ModDate":"August, 12 2024 05:00:49 +0000","PDF_TB":"","eal_name":"EAL1+"},{"PPID":265,"ID":"2013.0012","Scheme":"US","cPP":0,"Name":"Protection Profile for Enterprise Security Management Access Control","Abbr":"PP_ESM_AC_V2.1","Categories":"AC,OD","EAL":"1","Version":"2.1","Augs":"","PDF_Cert":"pp_esmac_v2.1-vr.pdf","PDF_PP":"pp_esm_ac_v2.1.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2013-10-24","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":158,"ID":"2008.0009","Scheme":"DE","cPP":0,"Name":"Biometric Verification Mechanisms Protection Profile, Version 1.3","Abbr":"BIO_MECH_V1.3","Categories":"BD","EAL":"2","Version":"1.3","Augs":"","PDF_Cert":"pp0043a.pdf","PDF_PP":"pp0043b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2008-11-07","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2"},{"PPID":216,"ID":"2010.0023","Scheme":"DE","cPP":0,"Name":"Fingerprint Spoof Detection Protection Profile based on Organisational Security Policies &#x28;FSDPP_OSP&#x29;, Version 1.7","Abbr":"FSDPP_OSP_V1.7","Categories":"BD","EAL":"2+","Version":"1.7","Augs":"151","PDF_Cert":"pp0062a_pdf.pdf","PDF_PP":"pp0062b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2010-02-25","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":452,"ID":"2022.0001","Scheme":"DE","cPP":0,"Name":"Common Criteria Protection Profile - Biometric Mechanisms Protection Profile (BMPP)","Abbr":"BSI-CC-PP-0118-2022","Categories":"BD","EAL":"B","Version":"Version 2.0","Augs":"93,95,106,112,113,115,120,124,151,162,167,163,164,165,166,168,133,140,143","PDF_Cert":"pp0118a_pdf.pdf","PDF_PP":"pp0118b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2022-02-23","Archived":"2032-02-22","Creator":60,"EntryDate":"March, 18 2022 06:26:51 +0000","Editor":60,"ModDate":"March, 18 2022 06:26:51 +0000","PDF_TB":"","eal_name":"Basic"},{"PPID":453,"ID":"2022.0002","Scheme":"DE","cPP":0,"Name":"Common Criteria Protection Profile - Biometric Mechanisms Protection Profile (BMPP)","Abbr":"BSI-CC-PP-0118-2022","Categories":"BD","EAL":"B","Version":"Version 2.0","Augs":"93,95,106,112,113,115,120,124,151,162,167,163,164,165,166,168,133,140,143","PDF_Cert":"pp0118a_pdf.pdf","PDF_PP":"pp0118b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2022-02-23","Archived":"2032-02-22","Creator":60,"EntryDate":"March, 18 2022 06:27:31 +0000","Editor":60,"ModDate":"March, 18 2022 06:41:55 +0000","PDF_TB":"","eal_name":"Basic"},{"PPID":454,"ID":"2022.0003","Scheme":"DE","cPP":0,"Name":"Common Criteria Protection Profile - Biometric Mechanisms Protection Profile (BMPP)","Abbr":"PP-0118","Categories":"BD","EAL":"B","Version":"Version 2.0","Augs":"93,95,106,112,113,115,120,124,151,162,167,163,164,165,166,168,133,140,143","PDF_Cert":"pp0118a_pdf.pdf","PDF_PP":"pp0118b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2022-02-23","Archived":"2032-02-22","Creator":60,"EntryDate":"March, 18 2022 06:27:52 +0000","Editor":60,"ModDate":"March, 18 2022 06:27:52 +0000","PDF_TB":"","eal_name":"Basic"},{"PPID":455,"ID":"2022.0004","Scheme":"DE","cPP":0,"Name":"Common Criteria Protection Profile - Biometric Mechanisms Protection Profile (BMPP)","Abbr":"BSI-CC-PP-0118-2022","Categories":"BD","EAL":"B","Version":"Version 2.0","Augs":"93,95,106,112,113,115,120,124,151,162,167,163,164,165,166,168,133,140,143","PDF_Cert":"pp0118a_pdf.pdf","PDF_PP":"pp0118b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2022-02-23","Archived":"2032-02-22","Creator":60,"EntryDate":"March, 18 2022 06:33:49 +0000","Editor":60,"ModDate":"March, 18 2022 06:46:10 +0000","PDF_TB":"","eal_name":"Basic"},{"PPID":507,"ID":"2024.0009","Scheme":"SE","cPP":0,"Name":"Protection Profile Configuration for Network Device and SSL/TLS Inspection Proxy","Abbr":"CFG_ND_STIP","Categories":"BP","EAL":"1","Version":"1.1","Augs":"","PDF_Cert":"Certification Report - PP-Configuration for STIP.pdf","PDF_PP":"CFG_ND-STIP_V1.1.pdf","PDF_ES":"MOD_STIP_V1.1.pdf","PDF_SD":"CPP_ND_V2.2E.pdf","Issue_Date":"2024-04-16","Archived":"2029-04-16","Creator":152,"EntryDate":"May, 20 2024 05:06:53 +0000","Editor":152,"ModDate":"May, 20 2024 05:06:53 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":489,"ID":"2023.0008","Scheme":"KR","cPP":0,"Name":"Korean National Protection Profile for Web Application Firewall V3.0","Abbr":"WEB APPLICATION FIREWALL","Categories":"BP","EAL":"1+","Version":"V3.0","Augs":"140","PDF_Cert":"23-04-27 (KECS-CR-28)(KECS-PP-1234-2023)CR Korean National PP for Web Application Firewall V3.0(eng).pdf","PDF_PP":"23-04-27 (KECS-CR-28)(KECS-PP-1234-2023)PP Korean National Protection Profile for Web Application Firewall V3.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2023-04-27","Archived":"","Creator":32,"EntryDate":"May, 02 2023 06:04:02 +0000","Editor":32,"ModDate":"May, 02 2023 06:08:12 +0000","PDF_TB":"","eal_name":"EAL1+"},{"PPID":423,"ID":"2020.0016","Scheme":"DE","cPP":0,"Name":"BSI-CC-PP-0098-V2-2020 - Schutzprofil 2: Anforderungen an den Konnektor, Version 1.5.4","Abbr":"","Categories":"BP","EAL":"3+","Version":"Version 1.5.4","Augs":"97,100,108,130,147,6","PDF_Cert":"pp0098V2a_pdf.pdf","PDF_PP":"pp0098V2b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2020-09-17","Archived":"2028-09-16","Creator":0,"EntryDate":"","Editor":0,"ModDate":"","PDF_TB":"","eal_name":"EAL3+"},{"PPID":432,"ID":"2021.0004","Scheme":"DE","cPP":0,"Name":"BSI-CC-PP-0098-V3-2021 - Schutzprofil 2: Anforderungen an den Konnektor","Abbr":"","Categories":"BP","EAL":"3+","Version":"Version 1.5.9","Augs":"97,100,108,150,130,147","PDF_Cert":"pp0098V3a_pdf.pdf","PDF_PP":"pp0098V3b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2021-05-03","Archived":"2031-05-02","Creator":60,"EntryDate":"May, 12 2021 08:30:26 +0000","Editor":60,"ModDate":"May, 21 2021 07:20:48 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":448,"ID":"2021.0013","Scheme":"US","cPP":0,"Name":"PP-Module for Intrusion Prevention Systems (IPS), Version 1.0","Abbr":"MOD_IPS_V1.0","Categories":"BP","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"","PDF_PP":"MOD_IPS_v1.0.pdf","PDF_ES":"","PDF_SD":"MOD_IPS_v1.0-SD.pdf","Issue_Date":"2021-05-11","Archived":"","Creator":78,"EntryDate":"January, 10 2022 12:22:57 +0000","Editor":78,"ModDate":"January, 10 2022 12:54:20 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":163,"ID":"2008.0014","Scheme":"FR","cPP":0,"Name":"DCSSI-PP 2008&#x2f;01 Personal Firewall &#x28;CC3.1&#x29;, Version 1.7","Abbr":"PP_DCSSI_FW_V1.7","Categories":"BP","EAL":"3+","Version":"1.7","Augs":"127,147","PDF_Cert":"ppcr200801.pdf","PDF_PP":"pp200801en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2008-05-30","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":164,"ID":"2008.0015","Scheme":"FR","cPP":0,"Name":"DCSSI-PP 2008&#x2f;02 - IP Interconnection Firewall &#x28;CC&#x3f;.1&#x29;, Version 3.0","Abbr":"PP_DCSSI_IP_FW_V3.0","Categories":"BP","EAL":"3+","Version":"3.0","Augs":"127,147","PDF_Cert":"ppcr200802.pdf","PDF_PP":"pp200802en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2008-06-12","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":113,"ID":"2006.0029","Scheme":"FR","cPP":0,"Name":"Profil de protection Firewall d&#x27;interconnexion IP","Abbr":"PP FWIP","Categories":"BP","EAL":"2+","Version":"2.2","Augs":"100,125,127,130,48,56,15,11","PDF_Cert":"ppcr0605.pdf","PDF_PP":"pp0605.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2006-03-10","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":87,"ID":"2005.0017","Scheme":"DE","cPP":0,"Name":"Software based Personal Firewall for home Internet use, Version 1.2","Abbr":"S-B_PFW_HIU_V1.2","Categories":"BP","EAL":"1","Version":"1.2","Augs":"","PDF_Cert":"PP0014a.pdf","PDF_PP":"PP0014b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2005-07-08","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":102,"ID":"2006.0016","Scheme":"FR","cPP":0,"Name":"PP pare-feu personnel &#x2f; Personnal firewall, Version 1.4","Abbr":"PP_PERSONNAL_FW_V1.4","Categories":"BP","EAL":"2+","Version":"1.4","Augs":"","PDF_Cert":"ppcr0603.pdf","PDF_PP":"pp0603.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2006-07-11","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":11,"ID":"1999.0007","Scheme":"FR","cPP":0,"Name":"Firewall with limited requirements, Version 2.2","Abbr":"PP_FW_LR_V2.2","Categories":"BP","EAL":"4+","Version":"2.2","Augs":"101,12,2","PDF_Cert":"PPCR9904.pdf","PDF_PP":"PP9904.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"1999-04-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":8,"ID":"1999.0004","Scheme":"FR","cPP":0,"Name":"Firewall with high requirements, Version 2.2","Abbr":"FW_HIGH_REQ","Categories":"BP","EAL":"5+","Version":"2.2","Augs":"150,3","PDF_Cert":"PPCR9905.pdf","PDF_PP":"PP9905.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"1999-04-19","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL5+"},{"PPID":232,"ID":"2011.0005","Scheme":"SE","cPP":0,"Name":"Protection Profile &ndash; Information Gateway","Abbr":"FMV-IG-PP","Categories":"BP","EAL":"4","Version":"2.0","Augs":"151","PDF_Cert":"CR PP Information Gateway.pdf","PDF_PP":"PP Information Gateway 20 (3).pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2011-12-19","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4"},{"PPID":305,"ID":"2015.0018","Scheme":"SE","cPP":0,"Name":"Firewall Protection Profile","Abbr":"PP FIREWALL","Categories":"BP","EAL":"2+","Version":"3.0","Augs":"151","PDF_Cert":"Certification Report 2.0 - PP Firewall incl EP NAT.pdf(264866)_TMP.pdf","PDF_PP":"PPT -27.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-06-12","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":306,"ID":"2015.0019","Scheme":"SE","cPP":0,"Name":"Firewall Protection Profile Extended Package&#x3a; NAT","Abbr":"PP FIREWALL NAT","Categories":"BP","EAL":"2+","Version":"3.0","Augs":"151","PDF_Cert":"Certification Report 2.0 - PP Firewall incl EP NAT.pdf(264866)_TMP.pdf","PDF_PP":"NAT3.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-06-12","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":307,"ID":"2015.0020","Scheme":"DE","cPP":0,"Name":"Common Criteria Schutzprofil &#x28;Protection Profile&#x29; Schutzprofil 1&#x3a; Anforderungen an den Netzkonnektor","Abbr":"NK-PP","Categories":"BP","EAL":"3+","Version":"Version 3.2.1","Augs":"97,100,108,150,130,149","PDF_Cert":"pp0047a_pdf.pdf","PDF_PP":"pp0047b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-04-28","Archived":"2025-04-28","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":310,"ID":"2015.0023","Scheme":"DE","cPP":0,"Name":"Base Protection Profile for Database Management Systems","Abbr":"DBMS_PP","Categories":"DB","EAL":"2+","Version":"Version 2.07","Augs":"150","PDF_Cert":"pp0088a_pdf.pdf","PDF_PP":"pp0088b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-09-17","Archived":"2025-09-17","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":348,"ID":"2017.0004","Scheme":"DE","cPP":0,"Name":"Base Protection Profile for Database Management Systems &#x28;DBMS PP&#x29; Version 2.12","Abbr":"DBMS_PPV2.12","Categories":"DB","EAL":"2+","Version":"2.12","Augs":"150","PDF_Cert":"pp0088V2a_pdf.pdf","PDF_PP":"pp0088V2b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-04-05","Archived":"2027-04-05","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":353,"ID":"2017.0009","Scheme":"DE","cPP":0,"Name":"DBMS PP Extended Package - Access History","Abbr":"DBMS_PP_EP_AH","Categories":"DB","EAL":"2+","Version":"Version 1.02","Augs":"150","PDF_Cert":"pp0088V2a_pdf.pdf","PDF_PP":"pp0088V2b_EP_AH_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-04-05","Archived":"2027-04-05","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":405,"ID":"2018.0018","Scheme":"FR","cPP":0,"Name":"Trustworthy Systems Supporting Server Signing Part 2 : Protection Profiles for QSCD for Server Signing","Abbr":"TSS SERVER SIGNING","Categories":"DG","EAL":"4+","Version":"0.16","Augs":"149","PDF_Cert":"anssi-cc-pp-2018_02fr.pdf","PDF_PP":"anssi-cc-pp-2018_02fr_pp.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2018-06-19","Archived":"","Creator":0,"EntryDate":"","Editor":0,"ModDate":"","PDF_TB":"","eal_name":"EAL4+"},{"PPID":406,"ID":"2019.0018","Scheme":"FR","cPP":0,"Name":"PP « Protection profile for trustworthy systems supporting time stamping », version 0.17","Abbr":"TIME STAMPING","Categories":"DG","EAL":"4+","Version":"0.17","Augs":"127","PDF_Cert":"anssi-cc-pp-2019_01fr.pdf","PDF_PP":"anssi-cc-profil-pp-2019_01en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2019-02-11","Archived":"","Creator":0,"EntryDate":"","Editor":0,"ModDate":"","PDF_TB":"","eal_name":"EAL4+"},{"PPID":314,"ID":"2015.0027","Scheme":"FR","cPP":0,"Name":"Cryptographic Module for CSP Signing Operations with Backup","Abbr":"HSM-PP-CMCSOB","Categories":"DG","EAL":"4+","Version":"0.35","Augs":"149","PDF_Cert":"ANSSI-CC-PP-2015_08_rapport.pdf","PDF_PP":"PP HSM CMCSOB 14167-2.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-09-17","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":335,"ID":"2016.0016","Scheme":"FR","cPP":0,"Name":"Protection profiles for TSP Cryptographic modules - Part 5- Cryptographic Module for Trust Services &#x28;prEN 419 221-5, version 0.15&#x29;","Abbr":"ANSSI-CC-PP-2016&#x2f;05","Categories":"DG","EAL":"4+","Version":"0.15","Augs":"149","PDF_Cert":"ANSSI-CC-PP-2016_05.pdf","PDF_PP":"ANSSI-CC-PP-2016_05 PP.pdf","PDF_ES":"ANSSI-CC-PP-2016_05.pdf","PDF_SD":"","Issue_Date":"2016-12-16","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":238,"ID":"2011.0011","Scheme":"FR","cPP":0,"Name":"ANSSI-CC-PP 2008&#x2f;05 - M01 - Electronic Signature Creation Application version 1.7","Abbr":"PP-ACSE_CCV3.1","Categories":"DG","EAL":"3+","Version":"1.7","Augs":"127,147","PDF_Cert":"ANSSI-CC-PP-2008-05-M01en.pdf","PDF_PP":"DCSSI-profil_PP-2008-05en-1.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2011-03-21","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":240,"ID":"2011.0014","Scheme":"FR","cPP":0,"Name":"ANSSI-CC-PP 2008&#x2f;06 - M01 - Electronic Signature Verification Application &#x28;CC3.1&#x29;, Version 1.7","Abbr":"PP_DCSSI_ELEC_SIG_VERIFY_MODULE_V1.7","Categories":"DG","EAL":"3+","Version":"1.7","Augs":"127,147","PDF_Cert":"ANSSI-CC-PP-2008-06-M01en.pdf","PDF_PP":"DCSSI-profil_PP-2008-06en-1.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2011-03-21","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":256,"ID":"2013.0002","Scheme":"DE","cPP":0,"Name":"Protection profiles for secure signature creation device - Part 6: Extension for device with key import and trusted communication with signature creation application","Abbr":"PP_SSCD_PART6_V1.0.4","Categories":"DG","EAL":"4+","Version":"Version 1.0.4","Augs":"149","PDF_Cert":"pp0076a_pdf.pdf","PDF_PP":"pp0076b_pdf.pdf","PDF_ES":"","PDF_SD":"PP0059_PP0071_PP0072_PP0075_PP0076_QSCD_Application_Note_pdf.pdf","Issue_Date":"2013-04-16","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":61,"ModDate":"May, 16 2023 06:48:55 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":250,"ID":"2012.0008","Scheme":"DE","cPP":0,"Name":"Protection profiles for secure signature creation device - Part 3: Device with key import","Abbr":"PP_SSCD_PART3_V1.0.2","Categories":"DG","EAL":"4+","Version":"Version 1.0.2","Augs":"149","PDF_Cert":"pp0075a_pdf.pdf","PDF_PP":"pp0075b_pdf.pdf","PDF_ES":"","PDF_SD":"PP0059_PP0071_PP0072_PP0075_PP0076_QSCD_Application_Note_pdf.pdf","Issue_Date":"2012-09-27","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":61,"ModDate":"May, 16 2023 06:48:02 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":251,"ID":"2012.0009","Scheme":"DE","cPP":0,"Name":"Protection profiles for secure signature creation device — Part 5: Extension for device with key generation and trusted communication with signature creation application","Abbr":"PP_SSCD_PART5_V1.0.1","Categories":"DG","EAL":"4+","Version":"Version 1.0.1","Augs":"149","PDF_Cert":"pp0072a_pdf.pdf","PDF_PP":"pp0072b_pdf.pdf","PDF_ES":"","PDF_SD":"PP0059_PP0071_PP0072_PP0075_PP0076_QSCD_Application_Note_pdf.pdf","Issue_Date":"2012-12-12","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":61,"ModDate":"May, 16 2023 06:47:19 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":252,"ID":"2012.0010","Scheme":"DE","cPP":0,"Name":"Protection profiles for secure signature creation device — Part 4: Extension for device with key generation and trusted communication with certificate generation application","Abbr":"PP_SSCD_PART4_V1.0.1","Categories":"DG","EAL":"4+","Version":"Version 1.0.1","Augs":"149","PDF_Cert":"pp0071a_pdf.pdf","PDF_PP":"pp0071b_pdf.pdf","PDF_ES":"","PDF_SD":"PP0059_PP0071_PP0072_PP0075_PP0076_QSCD_Application_Note_pdf.pdf","Issue_Date":"2012-12-12","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":61,"ModDate":"November, 29 2023 09:42:48 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":64,"ID":"2003.0004","Scheme":"FR","cPP":0,"Name":"Cryptographic Module for CSP Signing Operations, Version 0.28","Abbr":"CRYPTO_MOD_CSP_SIGN_OP_V0.28","Categories":"DG","EAL":"4+","Version":"0.28","Augs":"","PDF_Cert":"ppcr0309.pdf","PDF_PP":"pp0309.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2003-10-27","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":65,"ID":"2003.0005","Scheme":"FR","cPP":0,"Name":"Cryptographic Module for CSP Signing Operations with Backup, Version 0.28","Abbr":"CRYPTO_MOD_CSP_SIGN_OP_BACKUP_V0.28","Categories":"DG","EAL":"4+","Version":"0.28","Augs":"","PDF_Cert":"ppcr0308.pdf","PDF_PP":"pp0308.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2003-10-27","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":52,"ID":"2002.0006","Scheme":"DE","cPP":0,"Name":"Protection Profile - Secure Signature-Creation Device Type 1, Version 1.05","Abbr":"SSCD_TYPE1_V1.05","Categories":"DG","EAL":"4+","Version":"1.05","Augs":"","PDF_Cert":"pp0004a.pdf","PDF_PP":"pp0004b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2002-04-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":166,"ID":"2008.0018","Scheme":"FR","cPP":0,"Name":"DCSSI-PP 2008&#x2f;06 - Electronic Signature Verification Module &#x28;CC3.1&#x29;, Version 1.6","Abbr":"PP_DCSSI_ELEC_SIG_VERIFY_MODULE_V1.6","Categories":"DG","EAL":"3+","Version":"1.6","Augs":"127,147","PDF_Cert":"ppcr200806.pdf","PDF_PP":"pp200806en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2008-08-08","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":167,"ID":"2008.0019","Scheme":"FR","cPP":0,"Name":"DCSSI-PP 2008&#x2f;07 - Time-stamping System &#x28;CC3.1&#x29;, Version 1.7","Abbr":"PP_DCSSI_TIME_STAMP_SYS_V1.7","Categories":"DG","EAL":"3+","Version":"1.7","Augs":"127,147","PDF_Cert":"ppcr200807.pdf","PDF_PP":"pp200807en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2008-10-23","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":176,"ID":"2008.0028","Scheme":"FR","cPP":0,"Name":"DCSSI-PP 2008&#x2f;05 - Electronic Signature Creation Module &#x28;CC3.1&#x29;, version 1.6","Abbr":"PP-ACSE-CCV3.1","Categories":"DG","EAL":"3+","Version":"1.6","Augs":"127,147","PDF_Cert":"dcssi_PP-2008-05fr.pdf","PDF_PP":"dcssi-profil_PP-2008-05en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2008-08-08","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":189,"ID":"2009.0014","Scheme":"ES","cPP":0,"Name":"PPSCVA-T1-EAL1. Perfil de Proteccion para la aplicacion de creacion y verificacion de firma electronica Tipo 1, con control exclusivo de los interfaces con el firmante y nivel de evaluacion de los requisitos de seguridad EAL1, Version 2.0","Abbr":"PPSCVA-T1-EAL1_V2.0","Categories":"DG","EAL":"1","Version":"2.0","Augs":"","PDF_Cert":"2008-14-INF-329.pdf","PDF_PP":"INTECO_PPSCVA_T1_EAL1_v2.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2009-02-23","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":190,"ID":"2009.0015","Scheme":"ES","cPP":0,"Name":"PPSCVA-T1-EAL3. Perfil de Proteccion para la aplicacion de creacion y verificacion de firma electronica Tipo 1, con control exclusivo de los interfaces con el firmante y nivel de evaluacion de los requisitos de seguridad EAL3, Version 2.0","Abbr":"PPSCVA-T1-EAL3_V2.0","Categories":"DG","EAL":"3","Version":"2.0","Augs":"","PDF_Cert":"2008-15-INF-331.pdf","PDF_PP":"INTECO_PPSCVA_T1_EAL3_v2.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2009-02-23","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3"},{"PPID":191,"ID":"2009.0016","Scheme":"ES","cPP":0,"Name":"PPSCVA-T2-EAL1. Perfil de Proteccion para la aplicacion de creacion y verificacion de firma electronica Tipo 2, con nivel de evaluacion de los requisitos de seguridad EAL1, Version 2.0","Abbr":"PPSCVA-T2-EAL1_V2.0","Categories":"DG","EAL":"1","Version":"2.0","Augs":"","PDF_Cert":"2008-16-INF-332.pdf","PDF_PP":"INTECO_PPSCVA_T2_EAL1_v2.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2009-02-23","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":192,"ID":"2009.0017","Scheme":"ES","cPP":0,"Name":"PPSCVA-T2-EAL3. Perfil de Proteccion para la aplicacion de creacion y verificacion de firma electronica Tipo 2, con nivel de evaluacion de los requisitos de seguridad EAL3, Version 2.0","Abbr":"PPSCVA-T2-EAL3_V2.0","Categories":"DG","EAL":"3","Version":"2.0","Augs":"","PDF_Cert":"2008-17-INF-333.pdf","PDF_PP":"INTECO_PPSCVA_T2_EAL3_v2.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2009-02-23","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3"},{"PPID":193,"ID":"2009.0018","Scheme":"DE","cPP":0,"Name":"Protection Profile for Secure Signature Creation Device - Part 2: Device with Key Generation, Version 1.03","Abbr":"PP_SSCD_PART2_V1.03","Categories":"DG","EAL":"4+","Version":"1.03","Augs":"","PDF_Cert":"pp0059a_pdf.pdf","PDF_PP":"pp0059b_pdf.pdf","PDF_ES":"","PDF_SD":"PP0059_PP0071_PP0072_PP0075_PP0076_QSCD_Application_Note_pdf.pdf","Issue_Date":"2009-12-11","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":61,"ModDate":"May, 16 2023 06:44:03 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":162,"ID":"2008.0013","Scheme":"DE","cPP":0,"Name":"Cryptographic Modules, Security Level &#x5b;Moderate&#x5d;, Version 1.01","Abbr":"CRYPTO_MODULES_MODERATE_SECURITY_V1.01","Categories":"DP","EAL":"4+","Version":"1.01","Augs":"","PDF_Cert":"pp0042a.pdf","PDF_PP":"pp0042b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2008-03-31","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":169,"ID":"2008.0021","Scheme":"FR","cPP":0,"Name":"DCSSI-PP-2008&#x2f;04 On-the-fly Mass Storage Encryption Application &#x28;CC3.1&#x29;, Version 1.4","Abbr":"PP_DCSSI_MASS_STORAGE_ENCRYPT_APP_V1.4","Categories":"DP","EAL":"3+","Version":"1.4","Augs":"127,147","PDF_Cert":"ppcr200804.pdf","PDF_PP":"pp200804en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2008-10-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":180,"ID":"2009.0002","Scheme":"DE","cPP":0,"Name":"Cryptographic Modules, Security Level &#x5b;Enhanced&#x5d;, Version 1.01B","Abbr":"CRYPTO_MODULES_ENHANCED_V1.01B","Categories":"DP","EAL":"4+","Version":"1.01b","Augs":"101,118,126,149","PDF_Cert":"pp0045a.pdf","PDF_PP":"pp0045b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2009-02-27","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":186,"ID":"2009.0011","Scheme":"DE","cPP":0,"Name":"Cryptographic Modules, Security Level &#x5b;Low&#x5d;, Version 1.0","Abbr":"CRYPTO_MODULES_LOW_SECURITY_V1.0","Categories":"DP","EAL":"4","Version":"1.0","Augs":"","PDF_Cert":"pp0044a.pdf","PDF_PP":"pp0044b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2009-03-24","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4"},{"PPID":245,"ID":"2012.0003","Scheme":"SE","cPP":0,"Name":"Protection Profile - Encrypted Storage Device","Abbr":"FMV-PP-ESD","Categories":"DP","EAL":"2+","Version":"2.1","Augs":"135","PDF_Cert":"CR-PP-USB.pdf","PDF_PP":"FMV-PP-ESD.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2012-04-26","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":403,"ID":"2019.0016","Scheme":"US","cPP":0,"Name":"Functional Package for TLS Version 1.1","Abbr":"PKG_TLS_V1.1","Categories":"DP","EAL":"N","Version":"1.1","Augs":"","PDF_Cert":"","PDF_PP":"PKG_TLS_V1.1.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2019-03-01","Archived":"","Creator":0,"EntryDate":"","Editor":0,"ModDate":"","PDF_TB":"","eal_name":"None"},{"PPID":404,"ID":"2019.0017","Scheme":"US","cPP":0,"Name":"PP-Module for File Encryption Version 1.0","Abbr":"MOD_FE_V1.0","Categories":"DP","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"cfg_app-fe_v1.0-vr.pdf","PDF_PP":"MOD_FE_V1.0.pdf","PDF_ES":"","PDF_SD":"MOD_FE_V1.0-sd.pdf","Issue_Date":"2019-07-25","Archived":"","Creator":0,"EntryDate":"","Editor":0,"ModDate":"","PDF_TB":"","eal_name":"EAL1"},{"PPID":362,"ID":"2017.0018","Scheme":"KR","cPP":0,"Name":"Korean National Protection Profile for Electronic Document Encryption V1.0","Abbr":"KECS-PP-0821-2017 DOCUMENT ENCRYPTION V1.0","Categories":"DP","EAL":"1+","Version":"V1.0","Augs":"140","PDF_Cert":"KECS-PP-0821-2017_CR_EN.pdf","PDF_PP":"KECS-PP-0821-2017_PP_EN.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-08-18","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":32,"ModDate":"December, 04 2023 04:40:56 +0000","PDF_TB":"","eal_name":"EAL1+"},{"PPID":364,"ID":"2017.0020","Scheme":"KR","cPP":0,"Name":"Korean National Protection Profile for Database Encryption V1.0","Abbr":"KECS-PP-0820-2017 DB ENCRYPTION V1.0","Categories":"DP","EAL":"1+","Version":"V1.0","Augs":"140","PDF_Cert":"KECS-PP-0820-2017_CR_EN.pdf","PDF_PP":"KECS-PP-0820-2017_PP_EN.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-08-18","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":32,"ModDate":"December, 04 2023 04:41:23 +0000","PDF_TB":"","eal_name":"EAL1+"},{"PPID":382,"ID":"2018.0016","Scheme":"SE","cPP":0,"Name":"File Encryption Protection Profile","Abbr":"FEPP","Categories":"DP","EAL":"3","Version":"1.0","Augs":"150","PDF_Cert":"Certification Report FileEncryptionPP.pdf","PDF_PP":"File Encryption PP v.1.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2018-07-04","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3"},{"PPID":383,"ID":"2018.0017","Scheme":"SE","cPP":0,"Name":"Secure Messages Protection Profile","Abbr":"SMPP","Categories":"DP","EAL":"3","Version":"1.1","Augs":"150","PDF_Cert":"Certification Report - Secure Messages PP.pdf","PDF_PP":"Secure Messages PP v.1.1.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2018-11-26","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3"},{"PPID":487,"ID":"2023.0006","Scheme":"KR","cPP":0,"Name":"Korean National Protection Profile for Electronic Document Encryption V3.0","Abbr":"ELECTRONIC DOCUMENT ENCRYPTION","Categories":"DP","EAL":"1+","Version":"V3.0","Augs":"140","PDF_Cert":"23-04-27 (KECS-CR-25)(KECS-PP-1231-2023)CR Korean National PP for Electronic Document Encryption V3.0(eng).pdf","PDF_PP":"23-04-27 (KECS-CR-25)(KECS-PP-1231-2023)PP Korean National Protection Profile for Electronic Document Encryption V3.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2023-04-27","Archived":"","Creator":32,"EntryDate":"May, 02 2023 06:00:54 +0000","Editor":32,"ModDate":"May, 02 2023 06:11:12 +0000","PDF_TB":"","eal_name":"EAL1+"},{"PPID":485,"ID":"2023.0004","Scheme":"KR","cPP":0,"Name":"Korean National Protection Profile for Database Encryption V3.0","Abbr":"DATABASE ENCRYPTION","Categories":"DP","EAL":"1+","Version":"V3.0","Augs":"140","PDF_Cert":"23-04-27 (KECS-CR-26)(KECS-PP-1232-2023)CR Korean National PP for DB Encryption V3.0(eng).pdf","PDF_PP":"23-04-27 (KECS-CR-26)(KECS-PP-1232-2023)PP Korean National Protection Profile for Database Encryption V3.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2023-04-27","Archived":"","Creator":32,"EntryDate":"May, 02 2023 05:54:00 +0000","Editor":32,"ModDate":"May, 02 2023 06:15:36 +0000","PDF_TB":"","eal_name":"EAL1+"},{"PPID":463,"ID":"2019.0028","Scheme":"KR","cPP":0,"Name":"Korean National Protection Profile for Database Encryption V1.1","Abbr":"KECS-PP-0820A-2017 DB ENCRYPTION V1.1","Categories":"DP","EAL":"1+","Version":"V1.1","Augs":"140","PDF_Cert":"KECS-PP-0820a-2017_AC_EN.pdf","PDF_PP":"KECS-PP-0820a-2017_PP_EN.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2019-12-11","Archived":"","Creator":32,"EntryDate":"September, 05 2022 03:22:15 +0000","Editor":32,"ModDate":"September, 05 2022 03:42:36 +0000","PDF_TB":"","eal_name":"EAL1+"},{"PPID":464,"ID":"2019.0029","Scheme":"KR","cPP":0,"Name":"Korean National Protection Profile for Electronic Document Encryption V1.1","Abbr":"KECS-PP-0821A-2017 DOCUMENT ENCRYPTION V1.1","Categories":"DP","EAL":"1+","Version":"V1.1","Augs":"140","PDF_Cert":"KECS-PP-0821a-2017_AC_EN.pdf","PDF_PP":"KECS-PP-0821a-2017_PP_EN.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2019-12-11","Archived":"","Creator":32,"EntryDate":"September, 05 2022 03:25:25 +0000","Editor":32,"ModDate":"September, 05 2022 03:42:16 +0000","PDF_TB":"","eal_name":"EAL1+"},{"PPID":480,"ID":"2023.0001","Scheme":"US","cPP":0,"Name":"Functional Package for SSH Version 1.0","Abbr":"PKG_SSH_V1.0","Categories":"DP","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"PKG_SSH_V1.0_VR.pdf","PDF_PP":"pkg_ssh_v1.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2023-02-22","Archived":"","Creator":140,"EntryDate":"February, 22 2023 16:01:55 +0000","Editor":140,"ModDate":"February, 22 2023 16:01:55 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":514,"ID":"2023.0015","Scheme":"KR","cPP":0,"Name":"Korean National Protection Profile for Database Encryption V3.0","Abbr":"KECS-PP-1232-2023 DB ENCRYPTION V3.0","Categories":"DP","EAL":"1+","Version":"V3.0","Augs":"140","PDF_Cert":"","PDF_PP":"","PDF_ES":"","PDF_SD":"","Issue_Date":"2023-04-27","Archived":"","Creator":32,"EntryDate":"September, 27 2024 06:09:29 +0000","Editor":32,"ModDate":"September, 27 2024 06:09:29 +0000","PDF_TB":"","eal_name":"EAL1+"},{"PPID":513,"ID":"2022.0021","Scheme":"JP","cPP":0,"Name":"Protection Profile for Single Chip Microcontroller equipped with a secure cryptographic unit 1.2","Abbr":"","Categories":"IC","EAL":"1+","Version":"1.2","Augs":"93,95,106,151,146","PDF_Cert":"c0764_erpt.pdf","PDF_PP":"c0764_epp.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2022-09-30","Archived":"2027-09-30","Creator":34,"EntryDate":"September, 02 2024 03:50:02 +0000","Editor":140,"ModDate":"September, 12 2024 14:18:00 +0000","PDF_TB":"","eal_name":"EAL1+"},{"PPID":518,"ID":"2024.0015","Scheme":"DE","cPP":0,"Name":"Java Card System – Open Configuration Protection Profile, July 2024","Abbr":"BSI-CC-PP-0099-V3-2024","Categories":"IC","EAL":"4+","Version":"3.2","Augs":"126,150,149","PDF_Cert":"pp0099V3a_pdf.pdf","PDF_PP":"pp0099V3b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2024-10-18","Archived":"2034-10-18","Creator":61,"EntryDate":"January, 17 2025 07:32:53 +0000","Editor":61,"ModDate":"January, 17 2025 07:32:53 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":459,"ID":"2022.0008","Scheme":"DE","cPP":0,"Name":"Secure Sub-System in System-on-Chip (3S in SoC) Protection Profile","Abbr":"BSI-CC-PP-0117-2022","Categories":"IC","EAL":"4+","Version":"Version 1.5","Augs":"137,149,161,6","PDF_Cert":"pp0117a_pdf.pdf","PDF_PP":"pp0117b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2022-03-01","Archived":"2032-03-01","Creator":61,"EntryDate":"May, 24 2022 06:13:15 +0000","Editor":61,"ModDate":"May, 24 2022 06:13:15 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":460,"ID":"2022.0009","Scheme":"JP","cPP":0,"Name":"Protection Profile for ePassport IC with SAC (PACE) and Active Authentication 2.10","Abbr":"EPASS_IC_SAC_PACE_V2.10","Categories":"IC","EAL":"4+","Version":"2.10","Augs":"126,149","PDF_Cert":"c0737_erpt.pdf","PDF_PP":"c0737_epp.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2022-02-21","Archived":"","Creator":34,"EntryDate":"June, 29 2022 22:56:06 +0000","Editor":34,"ModDate":"June, 29 2022 23:30:31 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":461,"ID":"2022.0010","Scheme":"JP","cPP":0,"Name":"Protection Profile for ePassport IC with SAC (BAC + PACE) and Active Authentication 2.10","Abbr":"EPASS_IC_SAC_BAC_PACE_V2.10","Categories":"IC","EAL":"4+","Version":"2.10","Augs":"126","PDF_Cert":"c0738_erpt.pdf","PDF_PP":"c0738_epp.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2022-02-21","Archived":"","Creator":34,"EntryDate":"June, 29 2022 23:04:33 +0000","Editor":34,"ModDate":"June, 29 2022 23:04:33 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":450,"ID":"2021.0015","Scheme":"FR","cPP":0,"Name":"Calypso Basic – Protection Profile Référence 210311-SP-CalypsoBasic_ProtectionProfile, version 1.0","Abbr":"CALYPSO BASIC","Categories":"IC","EAL":"2+","Version":"1.0","Augs":"67","PDF_Cert":"anssi-cc-pp-2021_01.pdf","PDF_PP":"anssi-cc-pp-2021_01.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2021-11-11","Archived":"","Creator":3,"EntryDate":"January, 21 2022 05:42:32 +0000","Editor":3,"ModDate":"January, 21 2022 05:42:32 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":490,"ID":"2023.0009","Scheme":"DE","cPP":0,"Name":"BSI-CC-PP-0032-V3-2023 - Common Criteria Protection Profile Electronic Health Card Terminal (eHCT) Version 3.8","Abbr":"","Categories":"IC","EAL":"3+","Version":"3.8","Augs":"97,100,108,130,148","PDF_Cert":"","PDF_PP":"","PDF_ES":"","PDF_SD":"","Issue_Date":"2023-02-06","Archived":"2033-02-05","Creator":60,"EntryDate":"May, 22 2023 05:38:42 +0000","Editor":60,"ModDate":"May, 22 2023 05:40:11 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":496,"ID":"2023.0011","Scheme":"DE","cPP":0,"Name":"Secure Sub-System in System-on-Chip (3S in SoC)","Abbr":"BSI-CC-PP-0117-V2-2023","Categories":"IC","EAL":"4+","Version":"Version 1.8","Augs":"126,150,137,149","PDF_Cert":"pp0117V2a_pdf.pdf","PDF_PP":"pp0117V2b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2023-12-20","Archived":"2033-12-19","Creator":61,"EntryDate":"February, 28 2024 07:06:02 +0000","Editor":61,"ModDate":"February, 28 2024 07:06:02 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":387,"ID":"2019.0004","Scheme":"DE","cPP":0,"Name":"Cryptographic Service Provider &#x28;CSP&#x29;","Abbr":"BSI-PP-0104","Categories":"IC","EAL":"4+","Version":"0.9.8","Augs":"149,161","PDF_Cert":"pp0104a_pdf.pdf","PDF_PP":"pp0104b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2019-02-28","Archived":"2029-02-27","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":389,"ID":"2019.0006","Scheme":"DE","cPP":0,"Name":"Protection Profile Configuration Cryptographic Service Provider &ndash; Time Stamp Service and Audit &#x28;PPC-CSP-TS-Au&#x29; Version 0.9.5","Abbr":"BSI-PP-0107","Categories":"IC","EAL":"4+","Version":"Version 0.9.5","Augs":"126,149","PDF_Cert":"pp0107a_pdf.pdf","PDF_PP":"pp0107b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2019-05-14","Archived":"2029-05-14","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":390,"ID":"2019.0007","Scheme":"DE","cPP":0,"Name":"Protection Profile Configuration Cryptographic Service Provider &ndash; Time Stamp Service, Audit and Clustering &#x28;PPC-CSP-TS-Au-Cl&#x29;","Abbr":"BSI-PP-0108","Categories":"IC","EAL":"4+","Version":"Version 0.9.4","Augs":"126,149","PDF_Cert":"pp0108a_pdf.pdf","PDF_PP":"pp0108b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2019-06-18","Archived":"2029-06-18","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":394,"ID":"2019.0011","Scheme":"DE","cPP":0,"Name":"Card Operating System Generation 2 &#x28;PP COS G2&#x29;","Abbr":"BSI-CC-PP-0082-V4-2019","Categories":"IC","EAL":"4+","Version":"Version 2.1","Augs":"149","PDF_Cert":"pp0082V4a_pdf.pdf","PDF_PP":"pp0082V4b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2019-07-30","Archived":"2029-07-30","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":397,"ID":"2019.0014","Scheme":"DE","cPP":0,"Name":"Protection Profile Cryptographic Service Provider Light &#x28;CSPL&#x29;","Abbr":"BSI-PP-0111","Categories":"IC","EAL":"2+","Version":"1.0","Augs":"121,128","PDF_Cert":"pp0111a_pdf.pdf","PDF_PP":"pp0111b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2019-11-12","Archived":"2029-11-12","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":399,"ID":"2020.0001","Scheme":"DE","cPP":0,"Name":"Protection Profile IoT Secure Element Protection Profile (IoT-SE-PP)","Abbr":"BSI-CC-PP-0109-2020","Categories":"IC","EAL":"4+","Version":"1.0.0","Augs":"94,148","PDF_Cert":"pp0109a_pdf.pdf","PDF_PP":"pp0109b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2020-01-13","Archived":"2030-01-13","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":61,"ModDate":"February, 16 2021 03:38:08 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":400,"ID":"2020.0002","Scheme":"DE","cPP":0,"Name":"Protection Profile Cryptographic Service Provider Light - Time Stamp Service and Audit - Clustering &#x28;PPC-CSPLight-TS-Au-Cl&#x29;, Version 1.0","Abbr":"BSI-DSZ-CC-PP-0112-2020","Categories":"IC","EAL":"2","Version":"Version 1.0","Augs":"121,128","PDF_Cert":"pp0112a_pdf.pdf","PDF_PP":"pp0112b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2020-02-26","Archived":"2030-02-26","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2"},{"PPID":401,"ID":"2020.0003","Scheme":"DE","cPP":0,"Name":"Protection Profile Cryptographic Service Provider Light Time Stamp Service and Audit - Clustering &#x28;PPC-CSPLight-TS-Au-Cl&#x29;","Abbr":"BSI-DSZ-CC-PP-0113-2020","Categories":"IC","EAL":"2","Version":"Version 1.0","Augs":"121,128","PDF_Cert":"pp0113a_pdf.pdf","PDF_PP":"pp0113b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2020-02-26","Archived":"2030-03-26","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2"},{"PPID":361,"ID":"2017.0017","Scheme":"DE","cPP":0,"Name":"Java Card Protection Profile - Open Configuration","Abbr":"JAVA_OC","Categories":"IC","EAL":"4+","Version":"Version 3.0.5 December 2017","Augs":"126,149","PDF_Cert":"pp0099a_pdf.pdf","PDF_PP":"pp0099b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-12-21","Archived":"2027-12-21","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":375,"ID":"2018.0009","Scheme":"DE","cPP":0,"Name":"Java Card Protection Profile - Closed Configuration","Abbr":"JAVA_CC","Categories":"IC","EAL":"4+","Version":"Version 3.0.5 July 2018","Augs":"126,149","PDF_Cert":"pp0101a_pdf.pdf","PDF_PP":"pp0101b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2018-07-31","Archived":"2028-07-31","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":379,"ID":"2018.0013","Scheme":"JP","cPP":0,"Name":"Public Transportation IC Card Protection Profile 1.12","Abbr":"PTPP","Categories":"IC","EAL":"5+","Version":"1.12","Augs":"126,149","PDF_Cert":"c0612_erpt.pdf","PDF_PP":"PTPP_v1.12p.pdf","PDF_ES":"c0612_eimg.pdf","PDF_SD":"","Issue_Date":"2018-09-04","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL5+"},{"PPID":380,"ID":"2018.0014","Scheme":"DE","cPP":0,"Name":"FIDO Universal Second Factor &#x28;U2F&#x29; Authenticator","Abbr":"BSI-PP-0096-V3","Categories":"IC","EAL":"4+","Version":"3","Augs":"149","PDF_Cert":"pp0096V3a_pdf.pdf","PDF_PP":"pp0096V3b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2018-12-18","Archived":"2029-12-18","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":370,"ID":"2018.0004","Scheme":"DE","cPP":0,"Name":"FIDO Universal Second Factor &#x28;U2F&#x29; Authenticator Version 2.3","Abbr":"PP_FIDO_V2.3","Categories":"IC","EAL":"4+","Version":"2.3","Augs":"149","PDF_Cert":"pp0096V2a_pdf.pdf","PDF_PP":"pp0096V2b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2018-07-20","Archived":"2028-07-20","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":371,"ID":"2018.0005","Scheme":"DE","cPP":0,"Name":"Embedded UICC for Consumer Devices Protection Profile","Abbr":"UICC_CD","Categories":"IC","EAL":"4+","Version":"Version 1.0 05-June-2018","Augs":"126,149","PDF_Cert":"pp0100a_pdf.pdf","PDF_PP":"pp0100b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2018-06-29","Archived":"2028-06-29","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":372,"ID":"2018.0006","Scheme":"DE","cPP":0,"Name":"Card Operating System Generation 2","Abbr":"PP COS G2","Categories":"IC","EAL":"4+","Version":"Version 2.0","Augs":"126,137,149","PDF_Cert":"pp0082V3a_pdf.pdf","PDF_PP":"pp0082V3b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2018-07-10","Archived":"2028-07-10","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":357,"ID":"2017.0013","Scheme":"DE","cPP":0,"Name":"Protection Profile for the Security Module of a Smart Meter Mini-HSM &#x28;Mini-HSM Security Module PP&#x29; - Schutzprofil f&uuml;r das Sicherheitsmodul des Smart Meter Mini-HSM","Abbr":"MINI-HSM","Categories":"IC","EAL":"4+","Version":"V1.0","Augs":"149","PDF_Cert":"pp0095a_pdf.pdf","PDF_PP":"pp0095b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-06-29","Archived":"2027-06-28","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":358,"ID":"2017.0014","Scheme":"DE","cPP":0,"Name":"FIDO Universal Second Factor &#x28;U2F&#x29;","Abbr":"FIDO_PP","Categories":"IC","EAL":"4+","Version":"Version 1.0","Augs":"149","PDF_Cert":"pp0096a_pdf.pdf","PDF_PP":"pp0096b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-07-05","Archived":"2027-07-04","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":430,"ID":"2021.0002","Scheme":"ES","cPP":0,"Name":"Secure Element Protection Profile - GPC_SPE_174, version 1.0","Abbr":"GPC_SPE_174","Categories":"IC","EAL":"4+","Version":"1.0","Augs":"126,149","PDF_Cert":"2020-37 INF-3429.pdf","PDF_PP":"CCN-CC-PP-5-2021.pdf","PDF_ES":"2020-37 CCRA.pdf","PDF_SD":"2020-37 CCRA.pdf","Issue_Date":"2021-03-18","Archived":"","Creator":7,"EntryDate":"March, 18 2021 14:34:49 +0000","Editor":7,"ModDate":"March, 18 2021 14:59:16 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":428,"ID":"2018.0019","Scheme":"DE","cPP":0,"Name":"BSI-CC-PP-0064-V2-2018 - Common Criteria Protection Profile for Document Management Terminal (DMT-PP), Version 2.0","Abbr":"DMT-PP","Categories":"IC","EAL":"3","Version":"Version 2.0","Augs":"","PDF_Cert":"","PDF_PP":"","PDF_ES":"","PDF_SD":"","Issue_Date":"2018-07-06","Archived":"2028-07-05","Creator":60,"EntryDate":"February, 10 2021 07:45:44 +0000","Editor":60,"ModDate":"February, 10 2021 07:46:39 +0000","PDF_TB":"","eal_name":"EAL3"},{"PPID":442,"ID":"2021.0009","Scheme":"DE","cPP":0,"Name":"Protection Profile V2X Hardware Security Module by CAR 2 CAR Communication Consortium Version 1.0","Abbr":"BSI-CC-PP-0114-2021","Categories":"IC","EAL":"4+","Version":"1.0","Augs":"151,148","PDF_Cert":"pp0114a_pdf.pdf","PDF_PP":"pp0114b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2021-08-05","Archived":"2031-08-05","Creator":61,"EntryDate":"September, 14 2021 02:04:58 +0000","Editor":61,"ModDate":"January, 04 2022 05:49:27 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":409,"ID":"2020.0006","Scheme":"DE","cPP":0,"Name":"Java Card System - Open Configuration Protection Profile","Abbr":"BSI-PP-0099-V2","Categories":"IC","EAL":"4+","Version":"3.1","Augs":"126,149","PDF_Cert":"pp0099V2a_pdf.pdf","PDF_PP":"pp0099V2b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2020-05-06","Archived":"2030-05-06","Creator":0,"EntryDate":"","Editor":0,"ModDate":"","PDF_TB":"","eal_name":"EAL4+"},{"PPID":411,"ID":"2020.0008","Scheme":"DE","cPP":0,"Name":"Java Card System – Closed Configuration Protection Profile Version 3.1, June 2020","Abbr":"BSI-PP-0101-V2","Categories":"IC","EAL":"4+","Version":"3.1","Augs":"126,149","PDF_Cert":"pp0101V2a_pdf.pdf","PDF_PP":"pp0101V2b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2020-08-04","Archived":"2030-08-04","Creator":0,"EntryDate":"","Editor":0,"ModDate":"","PDF_TB":"","eal_name":"EAL4+"},{"PPID":246,"ID":"2012.0004","Scheme":"DE","cPP":0,"Name":"Machine Readable Travel Document with ICAO Application Extended Access Control with PACE, Version 1.3","Abbr":"MRTD_ICAO_EAC_V1.3","Categories":"IC","EAL":"4","Version":"1.3","Augs":"126,137,149","PDF_Cert":"pp0056_V2a_pdf.pdf","PDF_PP":"pp0056_V2b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2012-02-10","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4"},{"PPID":248,"ID":"2012.0006","Scheme":"FR","cPP":0,"Name":"Java Card&trade; System Protection Profile Open Configuration, Version 3.0","Abbr":"ANSSI-CC-PP-2001-03-M01","Categories":"IC","EAL":"4+","Version":"3.0","Augs":"126,149","PDF_Cert":"ANSSI-CC-PP-2010-03-M01en.pdf","PDF_PP":"ANSSI-CC-profil_PP-2010-03en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2012-05-25","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":244,"ID":"2012.0002","Scheme":"TR","cPP":0,"Name":"ELECTRONIC IDENTITY CARD ACCESS DEVICE FIRMWARE PROTECTION PROFILE","Abbr":"KEC FIRMWARE PP","Categories":"IC","EAL":"4+","Version":"V. 1.0","Augs":"126","PDF_Cert":"KEC_F PP CR.pdf","PDF_PP":"KEC Firmware Protection Profile.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2012-09-05","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":239,"ID":"2011.0013","Scheme":"FR","cPP":0,"Name":"Secure Smartcard Reader with Human Interface","Abbr":"PP SSRHI &#x28;LSCIHM&#x29;","Categories":"IC","EAL":"3+","Version":"1.6","Augs":"97,100,108,127,130,147","PDF_Cert":"ANSSI-CC_PP-2012-01fr.pdf","PDF_PP":"ANSSI-CC-profil_PP-2012-01en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2011-12-20","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":222,"ID":"2010.0031","Scheme":"DE","cPP":0,"Name":"Protection Profile for electronic Health Card &#x28;eHC&#x29; - elektronische Gesundheitskarte &#x28;eGK&#x29;","Abbr":"PP_EHC_EGK_V2.83","Categories":"IC","EAL":"4+","Version":"Version 2.83","Augs":"149","PDF_Cert":"PP0020_V3a_pdf.pdf","PDF_PP":"PP0020_V3b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2010-11-25","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":236,"ID":"2011.0009","Scheme":"DE","cPP":0,"Name":"Machine Readable Travel Document using Standard Inspection Procedure with PACE &#x28;PACE_PP&#x29;","Abbr":"EPASS_PACE_V1.0","Categories":"IC","EAL":"4+","Version":"Version 1.0","Augs":"137,149","PDF_Cert":"pp0068_V2a_pdf.pdf","PDF_PP":"pp0068_V2b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2011-11-10","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":255,"ID":"2013.0001","Scheme":"FR","cPP":0,"Name":"Java Card System Protection Profile - Closed Configuration version 3.0","Abbr":"ANSSI-CC-PP-2010-07-M01","Categories":"IC","EAL":"4+","Version":"3.0","Augs":"126,149","PDF_Cert":"ANSSI-CC-PP-2010-07-M01en.pdf","PDF_PP":"ANSSI-CC-profil_PP-2010-07en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2013-02-26","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":258,"ID":"2013.0005","Scheme":"DE","cPP":0,"Name":"Card Operating System Generation 2","Abbr":"PP_COS_G2","Categories":"IC","EAL":"4+","Version":"Version 1.0","Augs":"126,137,149","PDF_Cert":"pp0082a_pdf.pdf","PDF_PP":"pp0082b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2013-09-06","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":259,"ID":"2013.0006","Scheme":"DE","cPP":0,"Name":"Protection Profile for the Security Module of a Smart Metering System","Abbr":"PP_SECURITY_MODULE","Categories":"IC","EAL":"4+","Version":"Version 1.02","Augs":"149","PDF_Cert":"pp0077a_pdf.pdf","PDF_PP":"pp0077b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2013-12-20","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":269,"ID":"2014.0004","Scheme":"DE","cPP":0,"Name":"Security IC Platform Protection Profile with Augmentation Packages","Abbr":"SECURITY_IC_AUGP_V1.0","Categories":"IC","EAL":"4+","Version":"Version 1.0","Augs":"126,149","PDF_Cert":"pp0084a_pdf.pdf","PDF_PP":"pp0084b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2014-02-19","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":270,"ID":"2014.0005","Scheme":"DE","cPP":0,"Name":"Protection Profile Standard Reader - Smart Card Reader with PIN-Pad supporting eID based on Extended Access Control","Abbr":"PPSTANDREAD","Categories":"IC","EAL":"3+","Version":"Version 1.0","Augs":"97,100,108,130,147","PDF_Cert":"pp0083a_pdf.pdf","PDF_PP":"pp0083b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2014-01-13","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":275,"ID":"2014.0010","Scheme":"JP","cPP":0,"Name":"Personal Number Cards Protection Profile","Abbr":"JISEC-CC-PP-C0431-2014","Categories":"IC","EAL":"4+","Version":"1.00","Augs":"126,149","PDF_Cert":"c0431_erpt.pdf","PDF_PP":"JISEC-CC-PP-C0431-2014.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2014-05-15","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":277,"ID":"2014.0012","Scheme":"DE","cPP":0,"Name":"Card Operating System Generation 2","Abbr":"PP_COS_G2_V1.9","Categories":"IC","EAL":"4+","Version":"Version 1.9","Augs":"126,137,149","PDF_Cert":"pp0082V2a_pdf.pdf","PDF_PP":"pp0082V2b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2014-11-21","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":336,"ID":"2016.0017","Scheme":"JP","cPP":0,"Name":"Protection Profile for ePassport IC with SAC &#x28;PACE&#x29; and Active Authentication 1.00","Abbr":"EPASS_IC_SAC_PACE_V1.0","Categories":"IC","EAL":"4+","Version":"1.00","Augs":"126,149","PDF_Cert":"c0499_erpt.pdf","PDF_PP":"c0499_epp.pdf","PDF_ES":"c0499_erpt.pdf","PDF_SD":"","Issue_Date":"2016-03-22","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":337,"ID":"2016.0018","Scheme":"JP","cPP":0,"Name":"Protection Profile for ePassport IC with SAC &#x28;BAC &#x2b; PACE&#x29; and Active Authentication 1.00","Abbr":"EPASS_IC_SAC_BAC_PACE_V1.0","Categories":"IC","EAL":"4+","Version":"1.00","Augs":"126","PDF_Cert":"c0500_erpt.pdf","PDF_PP":"c0500_epp.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2016-03-22","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":332,"ID":"2016.0011","Scheme":"DE","cPP":0,"Name":"Common Criteria PP Configuration Machine Readable Electronic Documents - Optionales Nachladen &#x28;Optional Post-Emission Updates&#x29;","Abbr":"MR.ED-ON-PP","Categories":"IC","EAL":"4+","Version":"0.9.2","Augs":"126,137,149","PDF_Cert":"pp0090a_pdf.pdf","PDF_PP":"pp0090b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2016-09-07","Archived":"2026-09-07","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":317,"ID":"2015.0030","Scheme":"DE","cPP":0,"Name":"Common Criteria Protection Profile Electronic Health Card Terminal","Abbr":"EHCT_V3_6","Categories":"IC","EAL":"3+","Version":"3.6","Augs":"97,100,108,130,149","PDF_Cert":"PP0032V2a_pdf.pdf","PDF_PP":"pp0032V2b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-09-17","Archived":"2025-09-16","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":323,"ID":"2016.0002","Scheme":"FR","cPP":0,"Name":"&laquo; Protection Profile for Signature Activation Protocol &#x28;SAP&#x29; management, Holder-side authentication group base PP &raquo; &#x28;version 1.4&#x29;","Abbr":"ANSSI-CC-PP-2016&#x2f;01","Categories":"IC","EAL":"4+","Version":"1.4","Augs":"126,149","PDF_Cert":"ANSSI-CC-PP-2016_01_rapport.pdf","PDF_PP":"pp-sap-v1.4.pdf","PDF_ES":"pp-sap-v1.4.pdf","PDF_SD":"","Issue_Date":"2016-05-11","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":324,"ID":"2016.0003","Scheme":"FR","cPP":0,"Name":"&laquo; Protection Profile for Signature Activation Protocol &#x28;SAP&#x29; management, Server-side authentication group base PP &raquo; &#x28;version 1.4&#x29;","Abbr":"ANSSI-CC-PP-2016&#x2f;02","Categories":"IC","EAL":"4+","Version":"1.4","Augs":"126,149","PDF_Cert":"ANSSI-CC-PP-2016_02_rapport.pdf","PDF_PP":"pp-sap-v1.4.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2016-05-11","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":325,"ID":"2016.0004","Scheme":"FR","cPP":0,"Name":"&laquo; Protection Profile for Trusted Signature Creation Module in TW4S Holder-side authentication module base PP &raquo; &#x28;version 1.2&#x29;","Abbr":"ANSSI-CC-PP-2016&#x2f;03","Categories":"IC","EAL":"4+","Version":"1.2","Augs":"126,149","PDF_Cert":"ANSSI-CC-PP-2016_03_rapport.pdf","PDF_PP":"pp-tscm-v1.2.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2016-05-11","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":326,"ID":"2016.0005","Scheme":"FR","cPP":0,"Name":"&laquo; Protection Profile for Trusted Signature Creation Module in TW4S Server-side authentication module base PP &raquo; &#x28;version 1.2&#x29;","Abbr":"ANSSI-CC-PP-2016&#x2f;04","Categories":"IC","EAL":"4+","Version":"1.2","Augs":"126,149","PDF_Cert":"ANSSI-CC-PP-2016_04_rapport.pdf","PDF_PP":"pp-tscm-v1.2.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2016-05-11","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":327,"ID":"2016.0006","Scheme":"DE","cPP":0,"Name":"Machine-Readable Electronic Documents based on BSI TR-03110 for Official Use","Abbr":"MR.ED-PP_V2.2","Categories":"IC","EAL":"4+","Version":"Version 2.02","Augs":"137,149","PDF_Cert":"pp0087V2a_pdf.pdf","PDF_PP":"pp0087V2b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2016-04-29","Archived":"2026-04-29","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":313,"ID":"2015.0026","Scheme":"DE","cPP":0,"Name":"Embedded UICC Protection Profile","Abbr":"EUICC_V1.1","Categories":"IC","EAL":"4+","Version":"Version 1.1&#x2f;25.08.2015","Augs":"125,149","PDF_Cert":"pp0089a_pdf.pdf","PDF_PP":"pp0089b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-10-06","Archived":"2025-10-06","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":308,"ID":"2015.0021","Scheme":"DE","cPP":0,"Name":"Electronic Document implementing Extended Access Control Version 2 defined in BSI TR-03110","Abbr":"EAC2-PP","Categories":"IC","EAL":"4+","Version":"Version 1.01","Augs":"126,137,149","PDF_Cert":"pp0086a_pdf.pdf","PDF_PP":"pp0086b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-07-13","Archived":"2025-07-13","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":309,"ID":"2015.0022","Scheme":"DE","cPP":0,"Name":"Machine-Readable Electronic Documents based on BSI TR-03110 for Official Use","Abbr":"MR.ED-PP","Categories":"IC","EAL":"4+","Version":"Version 1.01","Augs":"126,137,149","PDF_Cert":"pp0087a_pdf.pdf","PDF_PP":"pp0087b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-07-14","Archived":"2025-07-14","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":187,"ID":"2009.0012","Scheme":"DE","cPP":0,"Name":"Electronic Identity Card &#x28;ID_Card PP&#x29;, Version 1.03","Abbr":"PP_ID_CARD_V1.03","Categories":"IC","EAL":"4+","Version":"1.03","Augs":"126,137,149","PDF_Cert":"pp0061a_pdf.pdf","PDF_PP":"pp0061b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2009-12-16","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":188,"ID":"2009.0013","Scheme":"FR","cPP":0,"Name":"PP Embedded Software for Smart Secure Devices Basic and Extended Configurations, Version 1.0","Abbr":"PP_EMBEDDED_SOFTWARE_V1.0","Categories":"IC","EAL":"4+","Version":"1.0","Augs":"","PDF_Cert":"anssi-cc-profil_PP-2009-02en.pdf","PDF_PP":"anssi-cc_PP-2009-02en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2009-11-27","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":184,"ID":"2009.0009","Scheme":"DE","cPP":0,"Name":"Health Professional Card &#x28;PP-HPC&#x29; with SSCD Functionality, Version 1.10","Abbr":"PP-HPC_V1.10","Categories":"IC","EAL":"4+","Version":"1.10","Augs":"149","PDF_Cert":"pp0018_v3a_pdf.pdf","PDF_PP":"pp0018_v3b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2009-12-18","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":208,"ID":"2010.0009","Scheme":"DE","cPP":0,"Name":"Electronic Residence Permit Card &#x28;RP_Card PP&#x29;, Compliant to EU - Residence Permit Specification, Version 1.0","Abbr":"RP_CARD_EU_V1.0","Categories":"IC","EAL":"4+","Version":"1.0","Augs":"126,137,149","PDF_Cert":"pp0069a_pdf.pdf","PDF_PP":"pp0069b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2010-08-25","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":213,"ID":"2010.0020","Scheme":"FR","cPP":0,"Name":"&#x28;U&#x29;SIM Java Card Platform Protection Profile &#x2f; Basic Configuration &#x28;ref. PU-2009-RT-79, version 2.0.2&#x29;, Version 2.0.2","Abbr":"ANSSI-CC-PP-2010-04","Categories":"IC","EAL":"4+","Version":"2.0.2","Augs":"126","PDF_Cert":"ANSSI-CC_PP-2010-04en.pdf","PDF_PP":"ANSSI-CC-cible_PP-2010-04en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2010-07-12","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":214,"ID":"2010.0021","Scheme":"FR","cPP":0,"Name":"&#x28;U&#x29;SIM Java Card Platform Protection Profile Basic and SCWS Configurations, Version 2.0.2","Abbr":"ANSSI-CC-PP-2010-05","Categories":"IC","EAL":"4+","Version":"2.0.2","Augs":"126,149","PDF_Cert":"ANSSI-CC_PP-2010-05en.pdf","PDF_PP":"ANSSI-CC-cible_PP-2010-05en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2010-07-12","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":215,"ID":"2010.0022","Scheme":"FR","cPP":0,"Name":"Java Card&trade; System Protection Profile Open Configuration, Version 2.6","Abbr":"ANSSI-CC-PP-2010-03","Categories":"IC","EAL":"4+","Version":"2.6","Augs":"126,149","PDF_Cert":"ANSSI-CC_PP-2010-03fr.pdf","PDF_PP":"ANSSI-CC-cible_PP-2010-03en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2010-06-25","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":217,"ID":"2010.0024","Scheme":"KR","cPP":0,"Name":"ePassport Protection Profile V2.1, Version 2.1","Abbr":"EPASS_V2.1","Categories":"IC","EAL":"4+","Version":"2.1","Augs":"101,148","PDF_Cert":"20110221144244.pdf","PDF_PP":"20110221143918.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2010-05-06","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":204,"ID":"2010.0005","Scheme":"FR","cPP":0,"Name":"Machine Readable Travel Document SAC &#x28;PACE V2&#x29; Supplemental Access Control, Version 1.0","Abbr":"MRTD_SAC_PACEV2_V1.0","Categories":"IC","EAL":"4+","Version":"1.0","Augs":"126,149","PDF_Cert":"ANSSI-CC_PP-2010-06fr.pdf","PDF_PP":"ANSSI-CC-cible_PP-2010-06fr.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2010-03-10","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":224,"ID":"2010.0033","Scheme":"FR","cPP":0,"Name":"Java Card System Protection Profile - Closed Configuration version 2.6","Abbr":"ANSSI-CC-PP-2010&#x2f;07","Categories":"IC","EAL":"4+","Version":"2.6","Augs":"126,149","PDF_Cert":"ANSSI-CC_PP-2010-07fr.pdf","PDF_PP":"ANSSI-CC-cible_PP-2010-07en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2010-12-16","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":227,"ID":"2010.0036","Scheme":"KR","cPP":0,"Name":"Smart Card Open Platform Protection Profile V2.2","Abbr":"SCOP_V2.2","Categories":"IC","EAL":"4+","Version":"2.2","Augs":"137,148","PDF_Cert":"SCOP_PP_V2.1_CR(eng).pdf","PDF_PP":"[KECS-PP-0097a-2008] (CC V3.1R3) Smart Card Open Platform PP V2.2.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2010-12-20","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":228,"ID":"2011.0001","Scheme":"JP","cPP":0,"Name":"Resident Registration Card V2 Embedded Software Protection Profile, Version 1.0","Abbr":"RR_CARD_V2_EMBEDDED_V1.0","Categories":"IC","EAL":"4+","Version":"1.0","Augs":"149","PDF_Cert":"c0284_erpt.pdf","PDF_PP":"c0284_epp.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2011-02-28","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":194,"ID":"2009.0019","Scheme":"DE","cPP":0,"Name":"Security Module Card Type A &#x28;PP-SMC-A&#x29;, Version 1.2","Abbr":"PP-SMC-A-1.1","Categories":"IC","EAL":"4+","Version":"1.2","Augs":"","PDF_Cert":"pp0019_V3a_pdf.pdf","PDF_PP":"pp0019_V3b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2009-12-18","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":196,"ID":"2009.0021","Scheme":"DE","cPP":0,"Name":"Security Module Card Type B &#x28;PP-SMC-B&#x29;, Version 1.2","Abbr":"PP-SMC-B-1.1","Categories":"IC","EAL":"4+","Version":"1.2","Augs":"","PDF_Cert":"pp0053_V2a_pdf.pdf","PDF_PP":"pp0053_V2b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2009-12-18","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":198,"ID":"2009.0023","Scheme":"UK","cPP":0,"Name":"UK Dual-Interface Authentication Card, Version 1.0","Abbr":"PP_D-IAC","Categories":"IC","EAL":"4+","Version":"1.0","Augs":"126,149","PDF_Cert":"Empty Document.pdf","PDF_PP":"UNKT-DO-0002 v1-0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2009-07-10","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":200,"ID":"2009.0025","Scheme":"DE","cPP":0,"Name":"Protection Profile for Machine Readable Travel Document with &#x27;ICAO Application&#x27;, Basic Access Control, Version 1.10","Abbr":"MRTD_ICAO_BA_V1.10","Categories":"IC","EAL":"4+","Version":"1.10","Augs":"126","PDF_Cert":"pp0055a.pdf","PDF_PP":"pp0055b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2009-05-07","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":62,"ID":"2003.0002","Scheme":"FR","cPP":0,"Name":"JavaCard System Standard 2.2 Configuration Protection Profile, Version 1.0b","Abbr":"JCSPPC","Categories":"IC","EAL":"4+","Version":"1.0b","Augs":"101,2","PDF_Cert":"","PDF_PP":"jcsppc.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2003-09-30","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":124,"ID":"2007.0011","Scheme":"DE","cPP":0,"Name":"Security IC Platform Protection Profile, Version 1.0","Abbr":"SECURITY_IC_V1.0","Categories":"IC","EAL":"4+","Version":"1.0","Augs":"","PDF_Cert":"pp0035a.pdf","PDF_PP":"pp0035b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2007-08-23","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":126,"ID":"2007.0015","Scheme":"DE","cPP":0,"Name":"BAROC CC 3.1 Smart Card Protection Profile, Version 1.0","Abbr":"BAROC_SC_PP_V1.0","Categories":"IC","EAL":"4+","Version":"1.0","Augs":"","PDF_Cert":"pp0038a.pdf","PDF_PP":"pp0038b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2007-12-11","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":127,"ID":"2007.0016","Scheme":"DE","cPP":0,"Name":"Common Criteria Protection Profile electronic Health Card Terminal &#x28;eHCT&#x29;, Version 1.73","Abbr":"CC_PP_EHCT_V1.73","Categories":"IC","EAL":"3+","Version":"1.73","Augs":"","PDF_Cert":"PP0032a.pdf","PDF_PP":"PP0032b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2007-12-07","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":66,"ID":"2003.0006","Scheme":"FR","cPP":0,"Name":"JICSAP ver2.0 Protection Profile part1, Multi-Application Secure System LSI Chip Protection Profile, Version 2.5","Abbr":"JICSAP_MULTIAPPSS_LSI_PP_V2.5","Categories":"IC","EAL":"4+","Version":"2.5","Augs":"","PDF_Cert":"PPCR0301.pdf","PDF_PP":"PP0301.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2003-06-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":67,"ID":"2003.0007","Scheme":"FR","cPP":0,"Name":"JICSAP ver2.0 Protection Profile part2, Protection Profile for Smart Cards with the Application Program Loading Function &#x28;version 1.7e&#x29;, Version 1.7e","Abbr":"JICSAP_SC_APLF_PP_V1.7E","Categories":"IC","EAL":"4+","Version":"1.7e","Augs":"","PDF_Cert":"ppcr0307.pdf","PDF_PP":"pp0307.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2003-11-14","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":68,"ID":"2003.0008","Scheme":"FR","cPP":0,"Name":"PP SUN Java Card System Protection Profile Collection","Abbr":"PP&#x2f;0304","Categories":"IC","EAL":"4+","Version":"1.0b","Augs":"101,2","PDF_Cert":"ppcr0304.pdf","PDF_PP":"jcsppc.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2003-09-30","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":9,"ID":"1999.0005","Scheme":"FR","cPP":0,"Name":"Smartcard Integrated Circuit Protection Profile, Version 2.0","Abbr":"SMARTCARD_IC_2.0","Categories":"IC","EAL":"4+","Version":"2.0","Augs":"101,126,3","PDF_Cert":"PPCR9806.pdf","PDF_PP":"PP9806.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"1999-04-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":5,"ID":"1999.0001","Scheme":"FR","cPP":0,"Name":"Automatic Cash Dispensers &#x2f; Teller, Version 1.0","Abbr":"ACT_TELLER_V1.0","Categories":"IC","EAL":"4+","Version":"1.0","Augs":"2","PDF_Cert":"PPCR9907.pdf","PDF_PP":"PP9907.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"1999-04-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":6,"ID":"1999.0002","Scheme":"FR","cPP":0,"Name":"Smartcard embedded software, Version 1.2","Abbr":"PP_SES_V1.2","Categories":"IC","EAL":"4+","Version":"1.2","Augs":"","PDF_Cert":"PPCR9810.pdf","PDF_PP":"PP9810.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"1999-04-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":12,"ID":"1999.0008","Scheme":"FR","cPP":0,"Name":"Intersector Electronic Purse and Purchase Device, Version 1.2","Abbr":"IEPPD_V1.2","Categories":"IC","EAL":"4+","Version":"1.2","Augs":"","PDF_Cert":"PPCR9909.pdf","PDF_PP":"PP9909.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"1999-04-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":13,"ID":"1999.0009","Scheme":"FR","cPP":0,"Name":"Intersector Electronic Purse and Purchase Device &#x28;Version for Pilot Schemes&#x29;, Version 1.2","Abbr":"IEPPD_PS_V1.2","Categories":"IC","EAL":"1+","Version":"1.2","Augs":"","PDF_Cert":"PPCR9908.pdf","PDF_PP":"PP9908.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"1999-04-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL1+"},{"PPID":14,"ID":"1999.0010","Scheme":"FR","cPP":0,"Name":"Protection Profile for Contact and Contact free Electronic Wallet, Version 1.2","Abbr":"PP_CCFEW_V1.2","Categories":"IC","EAL":"4+","Version":"1.2","Augs":"","PDF_Cert":"PPCR9903.pdf","PDF_PP":"PP9903.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"1999-04-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":15,"ID":"1999.0011","Scheme":"FR","cPP":0,"Name":"Smart Card Integrated Circuit with Embedded Software, Version 2.0","Abbr":"SC_IC-ES_V2.0","Categories":"IC","EAL":"4+","Version":"2.0","Augs":"","PDF_Cert":"PPCR9911.pdf","PDF_PP":"PP9911.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"1999-07-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":18,"ID":"1999.0014","Scheme":"FR","cPP":0,"Name":"Smart Card integrated circuit","Abbr":"PP&#x2f;9806","Categories":"IC","EAL":"4+","Version":"2.0","Augs":"101,126,3","PDF_Cert":"ppcr9806.pdf","PDF_PP":"pp9806.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"1999-04-19","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":24,"ID":"2000.0004","Scheme":"FR","cPP":0,"Name":"Transactional Smartcard reader, Version 2.0","Abbr":"TSCR_V2.0","Categories":"IC","EAL":"4+","Version":"2.0","Augs":"","PDF_Cert":"PPCR0002.pdf","PDF_PP":"PP0002.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2000-02-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":37,"ID":"2001.0011","Scheme":"FR","cPP":0,"Name":"Intersector Electronic Purse and Purchase Device &#x28;version without last purchase cancellation&#x29;, Version 1.3","Abbr":"IEPPD_WLPC_V1.3","Categories":"IC","EAL":"4+","Version":"1.3","Augs":"","PDF_Cert":"PPCR0101.pdf","PDF_PP":"PP0101.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2001-03-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":41,"ID":"2001.0015","Scheme":"FR","cPP":0,"Name":"Smart Card IC with Multi-Application Secure Platform, Version 2.0","Abbr":"SC_IC-MA_SP_V2.0","Categories":"IC","EAL":"4+","Version":"2.0","Augs":"","PDF_Cert":"PPCR0010.pdf","PDF_PP":"PP0010.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2001-01-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":44,"ID":"2001.0018","Scheme":"FR","cPP":0,"Name":"Smart Card Security User Group - Smart Card Protection Profile &#x28;SCSUG-SCPP&#x29;, Version 3.0","Abbr":"SCSUG-SCPP_V3.0","Categories":"IC","EAL":"4+","Version":"3.0","Augs":"","PDF_Cert":"PPCR0103.pdf","PDF_PP":"scsugpp.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2001-10-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":233,"ID":"2011.0006","Scheme":"ES","cPP":0,"Name":"Appliance Realia Technologies","Abbr":"PP-REALSEC","Categories":"KM","EAL":"2","Version":"2.1","Augs":"","PDF_Cert":"PP APPLIANCE REALIA CERTIFICATION REPORT.pdf","PDF_PP":"PP appliance REALSEC 2.1.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2011-07-29","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2"},{"PPID":234,"ID":"2011.0007","Scheme":"ES","cPP":0,"Name":"HSM Realia Technologies","Abbr":"PP-REALSEC-HSM","Categories":"KM","EAL":"4","Version":"HTTP&#x2f;1.1","Augs":"","PDF_Cert":"PP HSM REALIA CERTIFICATION REPORT.pdf","PDF_PP":"PP HSM REALIA 2.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2011-07-29","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4"},{"PPID":235,"ID":"2011.0008","Scheme":"ES","cPP":0,"Name":"Servicios en Red Realia Technologies","Abbr":"PP-REALSEC-NETSERVICES","Categories":"KM","EAL":"2","Version":"2.0","Augs":"","PDF_Cert":"PP NETSERVICES REALIA CERTIFICATION REPORT.pdf","PDF_PP":"PP Servicios en Red REALSEC.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2011-07-29","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2"},{"PPID":497,"ID":"2024.0001","Scheme":"DE","cPP":0,"Name":"Common Criteria Protection Profile — Pair of Prepare and Measure Quantum Key Distribution Modules","Abbr":"BSI-CC-PP-0120-2024","Categories":"KM","EAL":"4+","Version":"2.1.1","Augs":"126,149","PDF_Cert":"pp0120a_pdf.pdf","PDF_PP":"pp0120b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2024-01-18","Archived":"2034-01-18","Creator":61,"EntryDate":"February, 28 2024 07:19:41 +0000","Editor":61,"ModDate":"February, 28 2024 07:19:41 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":482,"ID":"2022.0016","Scheme":"US","cPP":0,"Name":"Protection Profile for Mobile Device Fundamentals Version 3.3","Abbr":"PP_MDF_V3.3","Categories":"MD","EAL":"1","Version":"3.3","Augs":"","PDF_Cert":"CFG_MDF-BIO-BT-WLANC_V1.0_VR.pdf","PDF_PP":"PP_MDF_V3.3.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2022-09-12","Archived":"","Creator":140,"EntryDate":"February, 27 2023 16:09:49 +0000","Editor":140,"ModDate":"July, 20 2023 14:23:10 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":470,"ID":"2021.0016","Scheme":"US","cPP":0,"Name":"PP-Module for Bluetooth Version 1.0","Abbr":"MOD_BT_V1.0","Categories":"MD","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"CFG_MDF-VPNC-BT_V1.1_VR.pdf","PDF_PP":"MOD_BT_V1.0.pdf","PDF_ES":"","PDF_SD":"MOD_BT_V1.0-SD.pdf","Issue_Date":"2021-04-15","Archived":"","Creator":140,"EntryDate":"December, 28 2022 13:38:27 +0000","Editor":111,"ModDate":"January, 27 2023 16:11:07 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":419,"ID":"2019.0020","Scheme":"US","cPP":0,"Name":"Protection Profile for Mobile Device Managment Version 4.0","Abbr":"PP_MDM_V4.0","Categories":"MD","EAL":"1","Version":"4.0","Augs":"","PDF_Cert":"PP_MDM_V4.0_VR.pdf","PDF_PP":"pp_mdm_v4.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2019-04-25","Archived":"","Creator":0,"EntryDate":"","Editor":0,"ModDate":"","PDF_TB":"","eal_name":"EAL1"},{"PPID":420,"ID":"2019.0021","Scheme":"US","cPP":0,"Name":"PP-Module for MDM Agent Version 1.0","Abbr":"MOD_MDM_AGENT_V1.0","Categories":"MD","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"CFG_MDF-MDM_AGENT- VPNC_V1.0_VR.pdf","PDF_PP":"mod_mdm_agent_v1.0.pdf","PDF_ES":"","PDF_SD":"mod_mdm_agent_v1.0-sd.pdf","Issue_Date":"2019-04-25","Archived":"","Creator":0,"EntryDate":"","Editor":111,"ModDate":"February, 02 2021 12:20:06 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":359,"ID":"2017.0015","Scheme":"US","cPP":0,"Name":"Protection Profile for Mobile Device Fundamentals, Version 3.1","Abbr":"PP_MD_V3.1","Categories":"MD","EAL":"N","Version":"3.1","Augs":"","PDF_Cert":"","PDF_PP":"pp_md_v3.1.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-06-16","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":111,"ModDate":"October, 14 2021 16:43:13 +0000","PDF_TB":"","eal_name":"None"},{"PPID":354,"ID":"2017.0010","Scheme":"JP","cPP":0,"Name":"Protection Profile for Hardcopy Devices","Abbr":"PP_HCD_V1.0","Categories":"MF","EAL":"N","Version":"1.0","Augs":"","PDF_Cert":"c0553_erpt.pdf","PDF_PP":"c0553_pp.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-05-29","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"None"},{"PPID":207,"ID":"2010.0008","Scheme":"DE","cPP":0,"Name":"IEEE Standard Protection Profile for Hardcopy Devices in IEEE Std 2600-2008, Operational Environment B","Abbr":"IEEE 2600.2&trade;-2009","Categories":"MF","EAL":"2+","Version":"IEEE 2600.2&trade;-2009","Augs":"150","PDF_Cert":"pp0058a.pdf.pdf","PDF_PP":"pp0058b.pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2010-07-15","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":365,"ID":"2017.0021","Scheme":"US","cPP":0,"Name":"PP-Module for VPN Client Version 2.1","Abbr":"MOD_VPN_CLI_V2.1","Categories":"NS","EAL":"1","Version":"2.1","Augs":"","PDF_Cert":"mod_vpn_cli_v2.1-vr.pdf","PDF_PP":"mod_vpn_cli_v2.1.pdf","PDF_ES":"","PDF_SD":"mod_vpn_cli_v2.1-sd.pdf","Issue_Date":"2017-10-05","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":111,"ModDate":"January, 25 2023 16:31:28 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":440,"ID":"2021.0007","Scheme":"NL","cPP":0,"Name":"NDhPP PP for Network Device Management (NDhPP), version 1.0, 2021-04-23","Abbr":"NDHPP V1.0","Categories":"NS","EAL":"3+","Version":"1.0","Augs":"150","PDF_Cert":"","PDF_PP":"","PDF_ES":"","PDF_SD":"","Issue_Date":"2021-07-01","Archived":"2026-07-01","Creator":8,"EntryDate":"August, 05 2021 10:30:24 +0000","Editor":8,"ModDate":"October, 02 2023 07:40:32 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":466,"ID":"2022.0011","Scheme":"US","cPP":0,"Name":"PP-Module for VPN Client, Version 2.4","Abbr":"MOD_VPNC_V2.4","Categories":"NS","EAL":"1","Version":"2.4","Augs":"","PDF_Cert":"CFG_GPOS-VPNC_V1.3_VR.pdf","PDF_PP":"MOD_VPN_CLI_v2.4_PP.pdf","PDF_ES":"MOD_VPN_CLI_v2.4_PP.pdf","PDF_SD":"MOD_VPN_CLI_v2.4-SD.pdf","Issue_Date":"2022-03-31","Archived":"","Creator":145,"EntryDate":"November, 07 2022 13:10:05 +0000","Editor":140,"ModDate":"May, 05 2023 12:46:24 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":503,"ID":"2023.0013","Scheme":"US","cPP":0,"Name":"PP-Module for MACsec Ethernet Encryption Version 1.0","Abbr":"MOD_MACSEC_V1.0","Categories":"NS","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"","PDF_PP":"MOD_MACSEC_V1.0.pdf","PDF_ES":"","PDF_SD":"MOD_MACSEC_V1.0-SD.pdf","Issue_Date":"2023-03-02","Archived":"","Creator":140,"EntryDate":"April, 24 2024 16:12:20 +0000","Editor":140,"ModDate":"April, 24 2024 16:12:20 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":271,"ID":"2014.0006","Scheme":"DE","cPP":0,"Name":"Protection Profile for the Gateway of a Smart Metering System","Abbr":"SMARTMETERGATEWAYPP_V1.3","Categories":"NS","EAL":"4+","Version":"Version 1.3","Augs":"150,149","PDF_Cert":"pp0073a_pdf.pdf","PDF_PP":"pp0073b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2014-04-04","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":273,"ID":"2014.0008","Scheme":"TR","cPP":0,"Name":"Smart Meter of Turkish Electricity Advanced Metering Infrastructure Protection Profile","Abbr":"SMTEAMI PP","Categories":"NS","EAL":"2+","Version":"1.1","Augs":"147","PDF_Cert":"SMTEAMI_PP_CR.pdf","PDF_PP":"SMTEAMI_PP_v1.1.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2014-09-03","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":333,"ID":"2016.0012","Scheme":"DE","cPP":0,"Name":"Anforderungen an die Kommunikationsinfrastrukur f&uuml;r sicherheitsrelevante Anwendungen &#x28;KISA&#x29;","Abbr":"KISA","Categories":"NS","EAL":"4+","Version":"Version 1.0","Augs":"149","PDF_Cert":"pp0085a_pdf.pdf","PDF_PP":"pp0085b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2016-08-11","Archived":"2026-08-11","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":10,"ID":"1999.0006","Scheme":"FR","cPP":0,"Name":"Configurable Security Guard &#x28;CSG&#x29;, Version 3.3","Abbr":"CSG_V3.3","Categories":"NS","EAL":"5","Version":"3.3","Augs":"","PDF_Cert":"PPCR9906.pdf","PDF_PP":"PP9906.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"1999-04-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL5"},{"PPID":128,"ID":"2007.0017","Scheme":"DE","cPP":0,"Name":"Konnektor im elektronischen Gesundkeitswesen, Anforderungen an den Netzkonnektor, Version 1.05","Abbr":"KEG_AN_PP_V1.05","Categories":"NS","EAL":"4+","Version":"1.05","Augs":"","PDF_Cert":"PP0033a.pdf","PDF_PP":"PP0033b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2007-10-09","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":165,"ID":"2008.0016","Scheme":"FR","cPP":0,"Name":"DCSSI-PP 2008&#x2f;03 - Client VPN Application &#x28;CC3.1&#x29;, Version 1.3","Abbr":"PP_DCSSI_VPN_APP_V1.3","Categories":"NS","EAL":"3+","Version":"1.3","Augs":"127,147","PDF_Cert":"ppcr200803.pdf","PDF_PP":"pp200803en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2008-07-10","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":82,"ID":"2005.0012","Scheme":"DE","cPP":0,"Name":"Low Assurance Protection Profile for a VPN gateway, Version 1.4","Abbr":"LOW_ASSURANCE_PP_VPN_V1.4","Categories":"NS","EAL":"1","Version":"1.4","Augs":"","PDF_Cert":"pp0013a.pdf","PDF_PP":"pp0013b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2005-06-15","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":97,"ID":"2006.0011","Scheme":"FR","cPP":0,"Name":"Application VPN cliente &#x2f; Client VPN Application, Version 1.0","Abbr":"APP_VPN_V1.0","Categories":"NS","EAL":"2+","Version":"1.0","Augs":"","PDF_Cert":"ppcr0602.pdf","PDF_PP":"pp0602.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2006-10-10","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":168,"ID":"2008.0020","Scheme":"FR","cPP":0,"Name":"DCSSI-PP 2008&#x2f;08 - IP Encryptor &#x28;CC3.1&#x29;, Version 1.9","Abbr":"PP_DCSSI_IP_ENCRYPT_V1.9","Categories":"NS","EAL":"3+","Version":"1.9","Augs":"127,147","PDF_Cert":"ppcr200808.pdf","PDF_PP":"pp200808en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2008-08-22","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":174,"ID":"2008.0026","Scheme":"DE","cPP":0,"Name":"Remote-Controlled Browsers Systems &#x28;ReCoBS&#x29;, Version 1.0","Abbr":"RECOBS_V1.0","Categories":"NS","EAL":"3+","Version":"1.0","Augs":"","PDF_Cert":"pp0040a.pdf","PDF_PP":"pp0040b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2008-03-31","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":229,"ID":"2011.0002","Scheme":"ES","cPP":0,"Name":"Air Segment Systems Protection Profile, Issue B, Version 3.1","Abbr":"EADS-ASS-V1.0","Categories":"OD","EAL":"4","Version":"3.1","Augs":"","PDF_Cert":"2010-35-INF-627.pdf","PDF_PP":"EADS-ASS-PP.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2011-06-14","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4"},{"PPID":230,"ID":"2011.0003","Scheme":"ES","cPP":0,"Name":"EADS Ground Segment Systems Protection Profile, Issue B, Version 1.0","Abbr":"EADS-GSS-V1.0","Categories":"OD","EAL":"4","Version":"1.0","Augs":"","PDF_Cert":"2010-12-INF-626.pdf","PDF_PP":"EADS-GSS-PP.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2011-06-14","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4"},{"PPID":206,"ID":"2010.0007","Scheme":"DE","cPP":0,"Name":"Common Criteria Protection Profile for Inspection Systems, Version 1.01","Abbr":"CC_PP_INSPEC_SYS_V1.01","Categories":"OD","EAL":"3","Version":"1.01","Augs":"","PDF_Cert":"pp0064a_pdf.pdf","PDF_PP":"pp0064b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2010-05-07","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3"},{"PPID":220,"ID":"2010.0027","Scheme":"NL","cPP":0,"Name":"Alcohol Interlock Protection Profile, Version 1.0","Abbr":"AI_PP_V1.0","Categories":"OD","EAL":"3+","Version":"1.0","Augs":"150","PDF_Cert":"Certification_Report_NSCIB-PP-09-25642-CR.pdf","PDF_PP":"Alcohol Interlock Protection Profile v1.00.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2010-09-06","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":99,"ID":"2006.0013","Scheme":"FR","cPP":0,"Name":"Machine voter &#x2f; Voting machine, Version 1.0","Abbr":"PP_VOTEMACHINE_V1.0","Categories":"OD","EAL":"2+","Version":"1.0","Augs":"","PDF_Cert":"ppcr0604.pdf","PDF_PP":"pp0604.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2006-07-11","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":104,"ID":"2006.0018","Scheme":"DE","cPP":0,"Name":"Schutzprofil fur USB-Datentrager, Version 1.4","Abbr":"SCHUTZPROFIL_USB-DATENTRAGER_V1.4","Categories":"OD","EAL":"2+","Version":"1.4","Augs":"","PDF_Cert":"pp0025a.pdf","PDF_PP":"pp0025b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2006-04-19","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":83,"ID":"2005.0013","Scheme":"DE","cPP":0,"Name":"Low Assurance Protection Profile for an Office Based Photocopier, Version 1.3","Abbr":"LOW_ASSURANCE_PP_OBP_V1.3","Categories":"OD","EAL":"1","Version":"1.3","Augs":"","PDF_Cert":"PP0015a.pdf","PDF_PP":"PP0015b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2005-07-08","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":159,"ID":"2008.0010","Scheme":"DE","cPP":0,"Name":"Common Criteria Protection Profile for an ArchiSafe Compliant Middleware for Enabling the Long-Term Preservation of Electronic Documents, Version 1.0","Abbr":"CC_PP_ACM_ELT_PED_V1.0","Categories":"OD","EAL":"3","Version":"1.0","Augs":"","PDF_Cert":"pp0049a.pdf","PDF_PP":"pp0049b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2008-11-07","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3"},{"PPID":160,"ID":"2008.0011","Scheme":"DE","cPP":0,"Name":"Common Criteria Schutzprofilfur Basissatz von Sicherheitsanforderungen an Online-Wahlprodukte, Version 1.0","Abbr":"CC_SB_SO-W_V1.0","Categories":"OD","EAL":"2+","Version":"1.0","Augs":"","PDF_Cert":"pp0037a.pdf","PDF_PP":"pp0037b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2008-05-21","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":129,"ID":"2007.0018","Scheme":"DE","cPP":0,"Name":"Protection Profile for a Identity Manager, Version 1.17","Abbr":"PP_IDENTITY_MGR_V1.17","Categories":"OD","EAL":"3+","Version":"1.17","Augs":"","PDF_Cert":"pp0024a.pdf","PDF_PP":"pp0024b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2007-01-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":152,"ID":"2007.0043","Scheme":"DE","cPP":0,"Name":"Schutzprofil Software zur Verarbeitung von personenbezogenen, Version 2.0","Abbr":"SCHUTZPROFIL_SVP_V2.0","Categories":"OD","EAL":"1","Version":"2.0","Augs":"","PDF_Cert":"pp0023a.pdf","PDF_PP":"pp0023b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2007-01-19","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":76,"ID":"2005.0006","Scheme":"DE","cPP":0,"Name":"Waste Bin Identification WBIS-PP, Version 1.04","Abbr":"WBIS_V1.04","Categories":"OD","EAL":"1","Version":"1.04","Augs":"","PDF_Cert":"PP0010a.pdf","PDF_PP":"WBIS-PPv1-04.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2005-05-27","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":81,"ID":"2005.0011","Scheme":"DE","cPP":0,"Name":"Low Assurance Protection Profile for a Voice over IP Infrastructure, Version 1.1","Abbr":"LOW_ASSURANCE_PP_VOIP_V1.1","Categories":"OD","EAL":"1","Version":"1.1","Augs":"","PDF_Cert":"pp0012a.pdf","PDF_PP":"pp0012b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2005-05-12","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":50,"ID":"2002.0004","Scheme":"DE","cPP":0,"Name":"Discretionary Information Flow Control &#x28;MU&#x29;, Version 2.3","Abbr":"DISCRETE_INFO_FLOW_MU_V2.3","Categories":"OD","EAL":"2+","Version":"2.3","Augs":"","PDF_Cert":"pp0008a.pdf","PDF_PP":"pp0008be.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2002-09-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":51,"ID":"2002.0005","Scheme":"DE","cPP":0,"Name":"Discretionary Information Flow Control &#x28;SU&#x29;, Version 2.3","Abbr":"DISCRETE_INFO_FLOW_SU_V2.3","Categories":"OD","EAL":"2+","Version":"2.3","Augs":"","PDF_Cert":"pp0007a.pdf","PDF_PP":"pp0007be.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2002-09-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":344,"ID":"2016.0025","Scheme":"US","cPP":0,"Name":"Extend Package for Voice and Video over IP &#x28;VVoIP&#x29; Version 1.0","Abbr":"EP_VVOIP_V1.0","Categories":"OD","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"ep_vvoip_v1.0-vr.pdf","PDF_PP":"ep_vvoip_v1.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2016-09-28","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":345,"ID":"2017.0001","Scheme":"ES","cPP":0,"Name":"Protection Profile for Trusted Platform for Secure communication v1.1 &#x28;EAL2&#x29;","Abbr":"CCN-PP-TP-EAL2","Categories":"OD","EAL":"2+","Version":"1.1","Augs":"150","PDF_Cert":"2016-42-inf-1813.pdf","PDF_PP":"ccn-pp-tp_eal2_v1.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-03-24","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":328,"ID":"2016.0007","Scheme":"TR","cPP":0,"Name":"Protection Profile for Security Module of General-Purpose Health Informatics Software","Abbr":"HIS PP","Categories":"OD","EAL":"2","Version":"1.0","Augs":"","PDF_Cert":"HBYS_PP_CR.pdf","PDF_PP":"HBYS_PP_07_09_2016_Updated.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2016-09-20","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2"},{"PPID":331,"ID":"2016.0010","Scheme":"ES","cPP":0,"Name":"Protection Profile for Trusted Platform for Secure communication v1.1 &#x28;EAL4&#x29;","Abbr":"CCN-PP-TP-EAL4","Categories":"OD","EAL":"4","Version":"1.1","Augs":"150","PDF_Cert":"2015-32-INF-1640.pdf","PDF_PP":"CCN-PP-TP-EAL4.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2016-09-08","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4"},{"PPID":274,"ID":"2014.0009","Scheme":"TR","cPP":0,"Name":"Electronic Document and Records Management System Protection Profile","Abbr":"EDRMS PP","Categories":"OD","EAL":"2+","Version":"v 1.3.1","Augs":"151,128","PDF_Cert":"EDRMS_PP_V1.3.1_CR.pdf","PDF_PP":"EDRMS_PP_V1.3.1_25_07_2014_format_review_portal.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2014-08-06","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":289,"ID":"2015.0002","Scheme":"TR","cPP":0,"Name":"New Generation Cash Register Fiscal Application Software Protection Profile","Abbr":"NGCRFAS_PP","Categories":"OD","EAL":"2","Version":"1.8","Augs":"","PDF_Cert":"NGCRFAS_PPv1.8_CR.pdf","PDF_PP":"NGCRFAS_PP_v1.8.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-01-13","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2"},{"PPID":296,"ID":"2015.0009","Scheme":"NL","cPP":0,"Name":"Beveilingsprofiel Boordcomputer Taxi &#x28;PP-BCT&#x29;, Version 1.8","Abbr":"PP_BCT_V1.8","Categories":"OD","EAL":"3","Version":"1.8","Augs":"","PDF_Cert":"[CR] NSCIB-PP-08-10381-CR3.pdf","PDF_PP":"[BCT PP] BeveiligingsprofielBCTV1.8.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-02-06","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3"},{"PPID":297,"ID":"2015.0010","Scheme":"FR","cPP":0,"Name":"Point of Interaction Protection Profile, POI-CHIP-ONLY base PP","Abbr":"ANSSI-CC-PP-PIO-CHIP-ONLY","Categories":"OD","EAL":"N","Version":"4.0","Augs":"","PDF_Cert":"ANSSI-CC-PP-2015_01.pdf","PDF_PP":"anssi-profil_PP-2015_01à06.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-03-31","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"None"},{"PPID":298,"ID":"2015.0011","Scheme":"FR","cPP":0,"Name":"Point of Interaction Protection Profile, POI-CHIP-ONLY and Open Protocol Package base PP","Abbr":"ANSSI-CC-PP-POI-CHIP-ONLY&#x2b; ANSSI-CC-PP-POI-OPEN-PROTOCOLS","Categories":"OD","EAL":"N","Version":"4.0","Augs":"","PDF_Cert":"ANSSI-CC-PP-2015_02.pdf","PDF_PP":"anssi-profil_PP-2015_01à06.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-03-31","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"None"},{"PPID":299,"ID":"2015.0012","Scheme":"FR","cPP":0,"Name":"Point of Interaction Protection Profile, POI-COMPREHENSIVE base PP","Abbr":"ANSSI-CC-PP-POI-COMPREHENSIVE","Categories":"OD","EAL":"N","Version":"4.0","Augs":"","PDF_Cert":"ANSSI-CC-PP-2015_03.pdf","PDF_PP":"anssi-profil_PP-2015_01à06.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-03-31","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"None"},{"PPID":300,"ID":"2015.0013","Scheme":"FR","cPP":0,"Name":"Point of Interaction Protection Profile, POI-COMPREHENSIVE and Open Protocol Package base PP","Abbr":"ANSSI-CC-PP-POI-COMPREHENSIVE &#x2b; ANSSI-CC-PP-POI-OPEN-PROTOCOLS","Categories":"OD","EAL":"N","Version":"4.0","Augs":"","PDF_Cert":"ANSSI-CC-PP-2015_04.pdf","PDF_PP":"anssi-profil_PP-2015_01à06.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-03-31","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"None"},{"PPID":301,"ID":"2015.0014","Scheme":"FR","cPP":0,"Name":"Point of Interaction Protection Profile, POI-PED-ONLY base PP","Abbr":"ANSSI-CC-PP-POI-PED-ONLY","Categories":"OD","EAL":"N","Version":"4.0","Augs":"","PDF_Cert":"ANSSI-CC-PP-2015_05.pdf","PDF_PP":"anssi-profil_PP-2015_01à06.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-03-31","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"None"},{"PPID":302,"ID":"2015.0015","Scheme":"FR","cPP":0,"Name":"Point of Interaction Protection Profile, POI-PED-ONLY and Open Protocol Package base PP","Abbr":"ANSSI-CC-PP-POI-PED-ONLY &#x2b; ANSSI-CC-PP-POI-OPEN-PROTOCOLS","Categories":"OD","EAL":"N","Version":"4.0","Augs":"","PDF_Cert":"ANSSI-CC-PP-2015_06.pdf","PDF_PP":"anssi-profil_PP-2015_01à06.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-03-31","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"None"},{"PPID":303,"ID":"2015.0016","Scheme":"TR","cPP":0,"Name":"New Generation Cash Register Fiscal Application Software Protection Profile","Abbr":"NGCRFAS PP","Categories":"OD","EAL":"2","Version":"2.0","Augs":"","PDF_Cert":"CR NGCRFAS PP v2.0.pdf","PDF_PP":"NGCRFAS_PP_v2 0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-06-15","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2"},{"PPID":304,"ID":"2015.0017","Scheme":"TR","cPP":0,"Name":"New Generation Cash Register Fiscal Application Software Protection Profile 2","Abbr":"NGCRFAS-2 PP","Categories":"OD","EAL":"2","Version":"v1.3","Augs":"","PDF_Cert":"CR NGCRFAS PP 2 v1.3.pdf","PDF_PP":"NGCRFAS-2_PP_v1 3.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-06-15","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2"},{"PPID":272,"ID":"2014.0007","Scheme":"DE","cPP":0,"Name":"Common Criteria Protection Profile for an ArchiSafe Compliant Middleware for Enabling the Long-Term Preservation of Electronic Documents","Abbr":"CC_PP_ACM_ELT_PED_V1.2","Categories":"OD","EAL":"3","Version":"Version 1.2","Augs":"","PDF_Cert":"pp0049_2014a_pdf.pdf","PDF_PP":"pp0049_2014b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2014-04-22","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3"},{"PPID":278,"ID":"2014.0013","Scheme":"TR","cPP":0,"Name":"New Generation Cash Register Fiscal Application Software Protection Profile 2","Abbr":"NGCRFAS_PP 2","Categories":"OD","EAL":"2","Version":"1.1","Augs":"","PDF_Cert":"NGCRFAS_PP2_CR.pdf","PDF_PP":"NGCRFAS-2_PP_v1.1.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2014-12-30","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2"},{"PPID":284,"ID":"2014.0019","Scheme":"US","cPP":0,"Name":"Protection Profile for Voice over IP &#x28;VoIP&#x29; Applications","Abbr":"PP_VOIP_V1.3","Categories":"OD","EAL":"1","Version":"1.3","Augs":"","PDF_Cert":"pp_voip_v1.3-vr.pdf","PDF_PP":"pp_voip_v1.3.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2014-11-03","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":266,"ID":"2013.0013","Scheme":"US","cPP":0,"Name":"Protection Profile for Enterprise Security Management Identity and Credential Management","Abbr":"PP_ESM_ICM_V2.1","Categories":"OD","EAL":"1","Version":"2.1","Augs":"","PDF_Cert":"pp_esm_icm_v2.1-vr.pdf","PDF_PP":"PP_ESM_ICM_V2.1.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2013-10-24","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":267,"ID":"2013.0014","Scheme":"US","cPP":0,"Name":"Enterprise Security Management - Policy Management Version 2.1","Abbr":"PP_ESM_PM_V2.1","Categories":"OD","EAL":"1","Version":"2.1","Augs":"","PDF_Cert":"pp_esmpm_v2.1-vr.pdf","PDF_PP":"pp_esm_pm_v2.1.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2013-10-24","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":140,"ModDate":"March, 01 2023 13:48:20 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":237,"ID":"2011.0010","Scheme":"DE","cPP":0,"Name":"Digital Tachograph - Smart Card &#x28;Tachograph Card&#x29;","Abbr":"TACHOGRAPHCARD_V1.02","Categories":"OD","EAL":"4+","Version":"Version 1.02","Augs":"149","PDF_Cert":"pp0070a_pdf.pdf","PDF_PP":"pp0070b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2011-11-30","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":223,"ID":"2010.0032","Scheme":"DE","cPP":0,"Name":"Digital Tachograph - Vehicle Unit &#x28;VU PP&#x29; Version 1.0","Abbr":"VU_PP_V1.0","Categories":"OD","EAL":"4+","Version":"Version 1.0","Augs":"137,149","PDF_Cert":"pp0057a_pdf.pdf","PDF_PP":"pp0057b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2010-08-20","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":249,"ID":"2012.0007","Scheme":"DE","cPP":0,"Name":"Portable Storage Media Protection Profile","Abbr":"PSMPP","Categories":"OD","EAL":"2","Version":"Version 1.0","Augs":"","PDF_Cert":"pp0081a_pdf.pdf","PDF_PP":"pp0081b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2012-09-11","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2"},{"PPID":517,"ID":"2024.0014","Scheme":"SE","cPP":0,"Name":"PP-Configuration for Peripheral Sharing Device, Keyboard/Mouse Devices, User Authentication Devices, and Video/Display Devices","Abbr":"CFG_PSD-KM-UA-VI_V1.0","Categories":"OD","EAL":"1+","Version":"1.0","Augs":"164,165,166","PDF_Cert":"Certification Report PP-Configuration for PSD-KM-UA-VI_1-0.pdf","PDF_PP":"PP CFG PSD.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2024-11-08","Archived":"2029-11-08","Creator":152,"EntryDate":"November, 14 2024 08:05:28 +0000","Editor":152,"ModDate":"November, 19 2024 10:38:44 +0000","PDF_TB":"","eal_name":"EAL1+"},{"PPID":468,"ID":"2020.0019","Scheme":"US","cPP":0,"Name":"PP-Module for Enterprise Session Controller (ESC), Version 1.0","Abbr":"MOD_ESC_V1.0","Categories":"OD","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"CFG_NDCPP-ESC_V1.0_VR.pdf","PDF_PP":"MOD_ESC_V1.0.pdf","PDF_ES":"","PDF_SD":"MOD_ESC_V1.0-SD.pdf","Issue_Date":"2020-11-19","Archived":"","Creator":111,"EntryDate":"November, 16 2022 16:05:27 +0000","Editor":140,"ModDate":"November, 18 2022 11:32:12 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":469,"ID":"2022.0013","Scheme":"FR","cPP":0,"Name":"Baseboard Management Controller Protection Profile with Firmware update Module","Abbr":"ANSSI-2022-01","Categories":"OD","EAL":"2+","Version":"1.0","Augs":"151","PDF_Cert":"anssi-cc-pp-2022_01fr.pdf","PDF_PP":"anssi-profil-pp-2022_01en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2022-11-14","Archived":"","Creator":3,"EntryDate":"December, 05 2022 05:01:06 +0000","Editor":3,"ModDate":"December, 05 2022 06:28:33 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":473,"ID":"2021.0019","Scheme":"US","cPP":0,"Name":"Protection Profile for Application Software, Version 1.4","Abbr":"PP_APP_V1.4","Categories":"OD","EAL":"1","Version":"1.4","Augs":"","PDF_Cert":"PP_APP_V1.4_VR.pdf","PDF_PP":"PP_APP_V1.4.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2021-10-07","Archived":"","Creator":111,"EntryDate":"January, 31 2023 14:38:18 +0000","Editor":140,"ModDate":"January, 31 2023 16:26:21 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":474,"ID":"2020.0020","Scheme":"US","cPP":0,"Name":"PP-Module for Voice/Video over IP (VVoIP) Endpoints, Version 1.0","Abbr":"MOD_VVOIP_V1.0","Categories":"OD","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"CFG_APP-VVOIP_V1.0_VR.pdf","PDF_PP":"mod_vvoip_v1.0.pdf","PDF_ES":"","PDF_SD":"MOD_VVOIP_V1.0-SD.pdf","Issue_Date":"2020-10-28","Archived":"","Creator":111,"EntryDate":"January, 31 2023 14:41:32 +0000","Editor":140,"ModDate":"January, 31 2023 16:27:28 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":478,"ID":"2021.0020","Scheme":"US","cPP":0,"Name":"Protection Profile for Virtualization Version 1.1","Abbr":"PP_BASE_VIRTUALIZATION_V1.1","Categories":"OD","EAL":"1","Version":"1.1","Augs":"","PDF_Cert":"CFG_Virtualization-SV_V1.0_VR.pdf","PDF_PP":"PP_VIRTUALIZATION_BASE_V1.1.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2021-06-14","Archived":"","Creator":111,"EntryDate":"February, 09 2023 10:48:32 +0000","Editor":140,"ModDate":"February, 15 2023 17:33:40 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":479,"ID":"2021.0021","Scheme":"US","cPP":0,"Name":"PP-Module for Server Virtualization Version 1.1","Abbr":"MOD_SV_V1.1","Categories":"OD","EAL":"1","Version":"1.1","Augs":"","PDF_Cert":"CFG_Virtualization-SV_V1.0_VR.pdf","PDF_PP":"MOD_SV_v1.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2021-06-14","Archived":"","Creator":111,"EntryDate":"February, 09 2023 10:49:57 +0000","Editor":140,"ModDate":"February, 15 2023 17:31:48 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":481,"ID":"2022.0015","Scheme":"US","cPP":0,"Name":"PP-Module for Wireless Local Area Network (WLAN) Client Version 1.0","Abbr":"MOD_WLANC_V1.0","Categories":"OD","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"CFG_MDF-BIO-BT-WLANC_V1.0_VR.pdf","PDF_PP":"MOD_WLANC_v1.0.pdf","PDF_ES":"","PDF_SD":"MOD_WLAN_CLI_v1.0-SD.pdf","Issue_Date":"2022-03-31","Archived":"","Creator":140,"EntryDate":"February, 27 2023 16:06:34 +0000","Editor":140,"ModDate":"May, 10 2023 12:30:42 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":499,"ID":"2024.0003","Scheme":"DE","cPP":0,"Name":"Protection Profile for E-Voting Systems for non-political Elections","Abbr":"BSI-CC-PP-0121-2024","Categories":"OD","EAL":"4+","Version":"1.0","Augs":"150","PDF_Cert":"pp0121a_pdf.pdf","PDF_PP":"pp0121b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2024-02-20","Archived":"2034-02-20","Creator":62,"EntryDate":"March, 27 2024 06:48:32 +0000","Editor":62,"ModDate":"March, 27 2024 06:48:32 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":500,"ID":"2024.0004","Scheme":"DE","cPP":0,"Name":"Protection Profile for a Roadside ITS Station Gateway","Abbr":"BSI-CC-PP-0122-2024","Categories":"OD","EAL":"3","Version":"1.0","Augs":"","PDF_Cert":"pp0122a_pdf.pdf","PDF_PP":"pp0122b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2024-03-11","Archived":"2034-03-11","Creator":61,"EntryDate":"March, 27 2024 11:57:14 +0000","Editor":61,"ModDate":"March, 27 2024 11:57:14 +0000","PDF_TB":"","eal_name":"EAL3"},{"PPID":501,"ID":"2023.0012","Scheme":"US","cPP":0,"Name":"PP-Module for Virtual Private Network (VPN) Gateways Version 1.3","Abbr":"MOD_VPNGW_V1.3","Categories":"OD","EAL":"1","Version":"1.3","Augs":"","PDF_Cert":"CFG_MDF-BIO-BT-VPNC-WLANC_V1.0_VR.pdf","PDF_PP":"MOD_VPNGW_v1.3.pdf","PDF_ES":"","PDF_SD":"MOD_VPNGW_v1.3-SD.pdf","Issue_Date":"2023-08-16","Archived":"","Creator":140,"EntryDate":"April, 12 2024 19:31:54 +0000","Editor":140,"ModDate":"December, 03 2024 16:52:26 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":508,"ID":"2024.0010","Scheme":"US","cPP":0,"Name":"Assurance Package for Flaw Remediation V1.0","Abbr":"PKG_FLR_V1.0","Categories":"OD","EAL":"N","Version":"1.0","Augs":"","PDF_Cert":"","PDF_PP":"PKG_FLR_V1.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2024-06-28","Archived":"","Creator":140,"EntryDate":"July, 19 2024 16:41:27 +0000","Editor":140,"ModDate":"July, 19 2024 16:41:27 +0000","PDF_TB":"","eal_name":"None"},{"PPID":509,"ID":"2024.0011","Scheme":"US","cPP":0,"Name":"PP-Module for VPN Client, Version 2.5","Abbr":"MOD_VPNC_V2.5","Categories":"OD","EAL":"N","Version":"2.5","Augs":"","PDF_Cert":"","PDF_PP":"MOD_VPNC_V2.5.pdf","PDF_ES":"","PDF_SD":"MOD_VPNC_V2.5-SD.pdf","Issue_Date":"2024-06-28","Archived":"","Creator":140,"EntryDate":"July, 19 2024 17:11:10 +0000","Editor":140,"ModDate":"July, 19 2024 17:11:10 +0000","PDF_TB":"","eal_name":"None"},{"PPID":491,"ID":"2022.0018","Scheme":"US","cPP":0,"Name":"PP-Module for Wireless Local Area Network (WLAN) Access System Version 1.0","Abbr":"MOD_WLAN_AS_V1.0","Categories":"OD","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"","PDF_PP":"MOD_WLAN_AS_v1.0.pdf","PDF_ES":"","PDF_SD":"MOD_WLAN_AS_v1.0-SD.pdf","Issue_Date":"2022-04-19","Archived":"","Creator":140,"EntryDate":"May, 26 2023 16:29:14 +0000","Editor":140,"ModDate":"May, 26 2023 16:29:14 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":441,"ID":"2021.0008","Scheme":"DE","cPP":0,"Name":"Digital Tachograph - Vehicle Unit (VU PP) Version 1.15","Abbr":"BSI-CC-PP-0094-V2-2021","Categories":"OD","EAL":"4+","Version":"1.15","Augs":"137,149","PDF_Cert":"pp0094V2a_pdf.pdf","PDF_PP":"pp0094V2b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2021-06-30","Archived":"2031-06-30","Creator":61,"EntryDate":"August, 11 2021 05:00:50 +0000","Editor":61,"ModDate":"August, 11 2021 05:00:50 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":443,"ID":"2015.0036","Scheme":"US","cPP":0,"Name":"Extended Package for Email Clients v2.0","Abbr":"PP_APP_EMAILCLIENT_EP_V2.0","Categories":"OD","EAL":"1","Version":"2.0","Augs":"","PDF_Cert":"emailclient_ep_v2.0-vr.pdf","PDF_PP":"pp_app_emailclient_ep_v2.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-06-18","Archived":"","Creator":78,"EntryDate":"October, 18 2021 13:12:37 +0000","Editor":78,"ModDate":"October, 18 2021 13:12:37 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":444,"ID":"2021.0010","Scheme":"DE","cPP":0,"Name":"PP-Configuration Mobile Device Management – Trusted Server (MDM-TS) complemented with PP-Module Trusted Communication Channel (TCC)","Abbr":"BSI-CC-PP-0116-2021","Categories":"OD","EAL":"4+","Version":"Version 1.0","Augs":"127","PDF_Cert":"pp0116a_pdf.pdf","PDF_PP":"pp0116b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2021-10-04","Archived":"2031-10-03","Creator":60,"EntryDate":"October, 20 2021 07:31:53 +0000","Editor":60,"ModDate":"October, 20 2021 07:31:53 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":445,"ID":"2021.0011","Scheme":"DE","cPP":0,"Name":"Protection Profile Mobile Device Management –Trusted Server (MDM-TS)","Abbr":"BSI-CC-PP-0115","Categories":"OD","EAL":"4+","Version":"Version 1.0","Augs":"127","PDF_Cert":"pp0115a_pdf.pdf","PDF_PP":"pp0115b_pdf.pdf","PDF_ES":"pp0115a_pdf.pdf","PDF_SD":"pp0115b_pdf.pdf","Issue_Date":"2021-10-04","Archived":"2031-10-04","Creator":62,"EntryDate":"October, 22 2021 10:02:12 +0000","Editor":62,"ModDate":"October, 22 2021 10:02:12 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":429,"ID":"2020.0017","Scheme":"DE","cPP":0,"Name":"BSI-CC-PP-0110-2020 - IoT Secure Communications Module Protection Profile (IoT-SCM-PP), Version 1.0.0","Abbr":"BSI-CC-PP-0110-2020 - IOT-SCM-PP","Categories":"OD","EAL":"2+","Version":"Version 1.0.0","Augs":"151","PDF_Cert":"pp0110a_pdf.pdf","PDF_PP":"pp0110b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2020-05-11","Archived":"2030-05-10","Creator":60,"EntryDate":"February, 16 2021 07:50:16 +0000","Editor":60,"ModDate":"May, 21 2021 07:18:08 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":433,"ID":"2019.0022","Scheme":"US","cPP":0,"Name":"Protection Profile for Peripheral Sharing Device Version 4.0","Abbr":"PP_PSD_V4.0","Categories":"OD","EAL":"1","Version":"4.0","Augs":"","PDF_Cert":"PP_PSD_v4.0 CR v1.0 (1).pdf","PDF_PP":"pp_psd_v4.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2019-07-19","Archived":"","Creator":56,"EntryDate":"June, 01 2021 16:39:14 +0000","Editor":56,"ModDate":"June, 01 2021 16:39:14 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":434,"ID":"2019.0023","Scheme":"US","cPP":0,"Name":"PP-Module for Analog Audio Output Devices Version 1.0","Abbr":"MOD_AO_V1.0","Categories":"OD","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"PP-Config-PSD-AO-KM-UA-VI-CR-v1.0.pdf","PDF_PP":"mod_ao_v1.0.pdf","PDF_ES":"","PDF_SD":"mod_ao_v1.0-sd.pdf","Issue_Date":"2019-07-19","Archived":"","Creator":111,"EntryDate":"June, 02 2021 16:42:04 +0000","Editor":140,"ModDate":"April, 12 2024 19:32:40 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":435,"ID":"2019.0024","Scheme":"US","cPP":0,"Name":"PP-Module for Keyboard/Mouse Devices Version 1.0","Abbr":"MOD_KM_V1.0","Categories":"OD","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"PP-Config-PSD-AO-KM-UA-VI-CR-v1.0.pdf","PDF_PP":"mod_km_v1.0.pdf","PDF_ES":"","PDF_SD":"mod_km_v1.0-sd.pdf","Issue_Date":"2019-07-19","Archived":"","Creator":111,"EntryDate":"June, 02 2021 16:43:47 +0000","Editor":140,"ModDate":"April, 12 2024 19:33:04 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":436,"ID":"2019.0025","Scheme":"US","cPP":0,"Name":"PP-Module for User Authentication Devices Version 1.0","Abbr":"MOD_UA_V1.0","Categories":"OD","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"PP-Config PSD-UA CR v1.0.pdf","PDF_PP":"mod_ua_v1.0.pdf","PDF_ES":"","PDF_SD":"mod_ua_v1.0-sd.pdf","Issue_Date":"2019-07-19","Archived":"","Creator":111,"EntryDate":"June, 02 2021 16:44:52 +0000","Editor":140,"ModDate":"September, 30 2024 19:36:29 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":437,"ID":"2019.0026","Scheme":"US","cPP":0,"Name":"PP-Module for Video/Display Devices Version 1.0","Abbr":"MOD_VI_V1.0","Categories":"OD","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"PP-Config-PSD-AO-KM-UA-VI-CR-v1.0.pdf","PDF_PP":"mod_vi_v1.0.pdf","PDF_ES":"","PDF_SD":"mod_vi_v1.0-sd.pdf","Issue_Date":"2019-07-19","Archived":"","Creator":111,"EntryDate":"June, 02 2021 16:45:55 +0000","Editor":140,"ModDate":"April, 12 2024 19:33:28 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":438,"ID":"2021.0005","Scheme":"DE","cPP":0,"Name":"Digital Tachograph - External GNSS Facility (EGF PP)","Abbr":"BSI-CC-PP-0092-V2-2021","Categories":"OD","EAL":"4+","Version":"1.10","Augs":"137,149","PDF_Cert":"pp0092V2a_pdf.pdf","PDF_PP":"pp0092V2b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2021-06-02","Archived":"2031-06-02","Creator":61,"EntryDate":"June, 30 2021 01:09:12 +0000","Editor":61,"ModDate":"June, 30 2021 01:09:12 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":421,"ID":"2020.0014","Scheme":"DE","cPP":0,"Name":"Schutzprofil 1: Anforderungen an den Netzkonnektor, Version 1.6.4","Abbr":"BSI-CC-PP-0097-V2-2020","Categories":"OD","EAL":"3+","Version":"1.6.4","Augs":"97,100,108,130,149,6","PDF_Cert":"pp0097V2a_pdf.pdf","PDF_PP":"pp0097V2b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2020-06-17","Archived":"2030-06-16","Creator":0,"EntryDate":"","Editor":0,"ModDate":"","PDF_TB":"","eal_name":"EAL3+"},{"PPID":425,"ID":"2016.0026","Scheme":"US","cPP":0,"Name":"Protection Profile for Virtualization Version 1.0","Abbr":"PP_BASE_VIRTUALIZATION_V1.0","Categories":"OD","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"PP_BASE_VIRTUALIZATION_V1.0_VR.pdf","PDF_PP":"pp_base_virtualization_v1.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2016-11-17","Archived":"","Creator":27,"EntryDate":"January, 28 2021 17:58:42 +0000","Editor":27,"ModDate":"January, 28 2021 18:04:02 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":426,"ID":"2016.0027","Scheme":"US","cPP":0,"Name":"Extended Package for Server Virtualization Version 1.0","Abbr":"EP_SV_V1.0","Categories":"OD","EAL":"1","Version":"1.0","Augs":"","PDF_Cert":"EP_SV_V1.0-VR.pdf","PDF_PP":"ep_sv_v1.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2016-11-17","Archived":"","Creator":27,"EntryDate":"January, 28 2021 18:01:02 +0000","Editor":27,"ModDate":"January, 28 2021 18:03:48 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":418,"ID":"2020.0013","Scheme":"NL","cPP":0,"Name":"Edge Compute Node Protection Profile","Abbr":"PP_ECN_V1.0.7","Categories":"OD","EAL":"1+","Version":"1.0.7","Augs":"164,165,166","PDF_Cert":"Certification Report NSCIB-PP-20-0112146-CR.pdf","PDF_PP":"Edge Compute Node Protection Profile 20200904.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2020-10-08","Archived":"","Creator":0,"EntryDate":"","Editor":0,"ModDate":"","PDF_TB":"","eal_name":"EAL1+"},{"PPID":410,"ID":"2020.0007","Scheme":"DE","cPP":0,"Name":"Security Module Application for Electronic Record-keeping Systems (SMAERS)","Abbr":"BSI-PP-0105-V2","Categories":"OD","EAL":"2+","Version":"1.0","Augs":"121,128","PDF_Cert":"pp0105V2a_pdf.pdf","PDF_PP":"pp0105V2b_pdf.pdf","PDF_ES":"","PDF_SD":"pp0105V2_SD_SMAERS_pdf.pdf","Issue_Date":"2020-07-28","Archived":"2030-07-28","Creator":0,"EntryDate":"","Editor":62,"ModDate":"July, 03 2023 02:38:33 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":392,"ID":"2019.0009","Scheme":"DE","cPP":0,"Name":"Protection Profile for a Roadworks Warning Unit","Abbr":"BSI-PP-0106-2019","Categories":"OD","EAL":"3","Version":"Version 1.1","Augs":"","PDF_Cert":"pp0106a_pdf.pdf","PDF_PP":"pp0106b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2019-07-31","Archived":"2029-07-31","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3"},{"PPID":407,"ID":"2015.0035","Scheme":"US","cPP":0,"Name":"Extended Package for Web Browsers v2.0","Abbr":"PP_APP_ WEBBROWSER_EP_V2.0","Categories":"OD","EAL":"1","Version":"2.0","Augs":"","PDF_Cert":"pp_app_webbrowser_ep_v2.0-vr.docx","PDF_PP":"pp_app_webbrowser_ep_v2.0.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-06-16","Archived":"","Creator":0,"EntryDate":"","Editor":0,"ModDate":"","PDF_TB":"","eal_name":"EAL1"},{"PPID":366,"ID":"2017.0022","Scheme":"US","cPP":0,"Name":"Protection Profile for Certification Authorities, Version 2.1","Abbr":"PP_CA_V2.1","Categories":"OD","EAL":"1","Version":"2.1","Augs":"","PDF_Cert":"PP_CA_V2.1-vr.pdf","PDF_PP":"pp_ca_v2.1.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-12-01","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":373,"ID":"2018.0007","Scheme":"DE","cPP":0,"Name":"Common Criteria Protection Profile for Document Management Terminal","Abbr":"DMT-PP","Categories":"OD","EAL":"3","Version":"Version 2.0","Augs":"","PDF_Cert":"pp0064V2a_pdf.pdf","PDF_PP":"pp0064V2b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2018-07-06","Archived":"2028-07-06","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3"},{"PPID":355,"ID":"2017.0011","Scheme":"TR","cPP":0,"Name":"Protection Profile for Application Firmware of Secure Smartcard Reader for Electronic Identity Verification System","Abbr":"","Categories":"OD","EAL":"4+","Version":"2.8","Augs":"126","PDF_Cert":"SSR_Application_Firmware_PP_CR_v2.8.pdf","PDF_PP":"SSR_Application_Firmware_PP_v2.8.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-08-10","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":349,"ID":"2017.0005","Scheme":"DE","cPP":0,"Name":"Digital Tachograph - Tachograph Card","Abbr":"TC_PP","Categories":"OD","EAL":"4+","Version":"Version 1.0","Augs":"137,149","PDF_Cert":"pp0091a_pdf.pdf","PDF_PP":"pp0091b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-05-19","Archived":"2027-05-19","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":350,"ID":"2017.0006","Scheme":"DE","cPP":0,"Name":"Digital Tachograph - External GNSS Facility","Abbr":"EGF_PP","Categories":"OD","EAL":"4+","Version":"Version 1.0","Augs":"137,149","PDF_Cert":"pp0092a_pdf.pdf","PDF_PP":"pp0092b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-05-19","Archived":"2027-05-19","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":351,"ID":"2017.0007","Scheme":"DE","cPP":0,"Name":"Digital Tachograph - Motion Sensor","Abbr":"MS_PP","Categories":"OD","EAL":"4+","Version":"Version 1.0","Augs":"137,149","PDF_Cert":"pp0093a_pdf.pdf","PDF_PP":"pp0093b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-05-19","Archived":"2027-05-19","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":352,"ID":"2017.0008","Scheme":"DE","cPP":0,"Name":"Digital Tachograph - Vehicle Unit","Abbr":"VU_PP","Categories":"OD","EAL":"4+","Version":"Version 1.0","Augs":"137,149","PDF_Cert":"pp0094a_pdf.pdf","PDF_PP":"pp0094b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2017-05-19","Archived":"2027-05-19","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":377,"ID":"2018.0011","Scheme":"DE","cPP":0,"Name":"Schutzprofil 1&#x3a; Anforderungen an den Netzkonnektor","Abbr":"BSI-PP-0097","Categories":"OD","EAL":"3+","Version":"V1.5","Augs":"97,100,108,130,149,6","PDF_Cert":"pp0097a_pdf.pdf","PDF_PP":"pp0097b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2018-07-26","Archived":"2028-07-26","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":378,"ID":"2018.0012","Scheme":"DE","cPP":0,"Name":"Schutzprofil 2&#x3a; Anforderungen an den Konnektor","Abbr":"BSI-PP-0098","Categories":"OD","EAL":"3+","Version":"V1.3","Augs":"97,100,108,130,147,6","PDF_Cert":"pp0098a_pdf.pdf","PDF_PP":"pp0098b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2018-09-17","Archived":"2028-11-17","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL3+"},{"PPID":386,"ID":"2019.0003","Scheme":"DE","cPP":0,"Name":"Security Module Application for Electronic Record-keeping Systems &#x28;SMAERS&#x29;","Abbr":"BSI-PP-0105","Categories":"OD","EAL":"2","Version":"0.7.5","Augs":"","PDF_Cert":"pp0105a_pdf.pdf","PDF_PP":"pp0105b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2019-04-01","Archived":"2029-03-31","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2"},{"PPID":495,"ID":"2022.0019","Scheme":"US","cPP":0,"Name":"Protection Profile for General Purpose Operating Systems Version 4.3","Abbr":"PP_OS_V4.3","Categories":"OS","EAL":"1","Version":"4.3","Augs":"","PDF_Cert":"PP_OS_4.3_VR.pdf","PDF_PP":"PP_OS_4.3.pdf","PDF_ES":"","PDF_SD":"pp_os_v4.3_FINAL.pdf","Issue_Date":"2022-09-27","Archived":"","Creator":140,"EntryDate":"January, 11 2024 14:26:38 +0000","Editor":140,"ModDate":"April, 19 2024 16:53:44 +0000","PDF_TB":"","eal_name":"EAL1"},{"PPID":202,"ID":"2010.0001","Scheme":"DE","cPP":0,"Name":"Operating System Protection Profile, Version 2.0","Abbr":"OSPP_V2.0","Categories":"OS","EAL":"4+","Version":"2.0","Augs":"127","PDF_Cert":"pp0067a_pdf.pdf","PDF_PP":"pp0067b_pdf.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2010-06-02","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":177,"ID":"2008.0029","Scheme":"FR","cPP":0,"Name":"PC Client Specific Trusted Platform Module Family 1.2&#x3b; Level 2, Version 1.1","Abbr":"BSI-CC-PP-030-2008","Categories":"TC","EAL":"4+","Version":"1.1","Augs":"151,148","PDF_Cert":"pp0030a.pdf","PDF_PP":"pp0030b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2008-07-10","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":171,"ID":"2008.0023","Scheme":"DE","cPP":0,"Name":"PC Client Specific Trusted Platform Module Family 1.2&#x3b; Level 2, Version 1.1","Abbr":"PP_PC_CSTPMF1.2_LEVEL2_V1.1","Categories":"TC","EAL":"4+","Version":"1.1","Augs":"","PDF_Cert":"pp0030a.pdf","PDF_PP":"pp0030b.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2008-08-27","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":288,"ID":"2015.0001","Scheme":"FR","cPP":0,"Name":"Trusted Execution Environmenet","Abbr":"PP TEE","Categories":"TC","EAL":"2+","Version":"1.2","Augs":"","PDF_Cert":"ANSSI-CC-PP-2014_01_rapport.pdf","PDF_PP":"anssi-profil_PP-2014_01.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-01-05","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":334,"ID":"2016.0015","Scheme":"FR","cPP":0,"Name":"Trusted Execution Environment &#x28;r&eacute;f&eacute;rence GPD_SPE_021, version 1.2.1&#x29;","Abbr":"TEE PROTECTION PROFILE","Categories":"TC","EAL":"2+","Version":"1.2.1","Augs":"","PDF_Cert":"ANSSI-CC-PP-2014-01_M01.pdf","PDF_PP":"PP TEE v1.2.1_20161215.pdf","PDF_ES":"ANSSI-CC-PP-2014-01_M01.pdf","PDF_SD":"","Issue_Date":"2016-12-13","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":316,"ID":"2015.0029","Scheme":"FR","cPP":0,"Name":"PC Client Specific Trusted Platform Module &#x28;Family 2.0, Level 0, Revision 1.16, Version 1.0&#x29;","Abbr":"ANSSI-CC-PP-2015&#x2f;07","Categories":"TC","EAL":"4+","Version":"HTTP&#x2f;1.1","Augs":"151,148","PDF_Cert":"ANSSI-CC-PP-2015_07.pdf","PDF_PP":"TCG_PP_PC_client_specific_TPM_SecV2_v10.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2015-05-06","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":483,"ID":"2023.0002","Scheme":"FR","cPP":0,"Name":"MCU Root of Trust Protection Profile (GPT_SPE_146, version 1.0)","Abbr":"MCU_ROT","Categories":"TC","EAL":"2+","Version":"1.0","Augs":"96,127","PDF_Cert":"anssi-cc-pp-2023_01fr.pdf","PDF_PP":"anssi-profil-cc-pp-2023_01en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2023-03-01","Archived":"","Creator":3,"EntryDate":"March, 09 2023 00:56:34 +0000","Editor":3,"ModDate":"March, 09 2023 00:56:34 +0000","PDF_TB":"","eal_name":"EAL2+"},{"PPID":376,"ID":"2018.0010","Scheme":"FR","cPP":0,"Name":"ANSSI-CC-PP-2018&#x2f;03 &laquo; PC Client Specific TPM &raquo; &#x28;TPM Library specification Family &ldquo;2.0&rdquo;, Level 0&#x29;","Abbr":"ANSSI 2018&#x2f;03 TPM 2.0","Categories":"TC","EAL":"4+","Version":"Revision 1.38, Version 1.1","Augs":"151,148","PDF_Cert":"anssi-cc-pp-2018_03.pdf","PDF_PP":"anssi-cc-pp-2018_03-pp.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2018-08-10","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":408,"ID":"2020.0005","Scheme":"FR","cPP":0,"Name":"PC Client Specific TPM, TPM Library specification Family 2.0, Level 0, Revision 1.38, Version 1.2","Abbr":"TPM1.2","Categories":"TC","EAL":"4+","Version":"1.2","Augs":"151,148","PDF_Cert":"anssi-cc-pp-2020_01.pdf","PDF_PP":"anssi-cc-pp-2020_01_pp.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2020-06-09","Archived":"","Creator":0,"EntryDate":"","Editor":0,"ModDate":"","PDF_TB":"","eal_name":"EAL4+"},{"PPID":393,"ID":"2019.0010","Scheme":"FR","cPP":0,"Name":"&laquo; Automotive-Thin Specific TPM &#x28;Family &quot;2.0&quot;&#x29; &raquo; Level 0 version 1.0","Abbr":"AUT-TPM PP","Categories":"TC","EAL":"4+","Version":"L0 V10","Augs":"151,148","PDF_Cert":"anssi-cc-pp-2019_02.pdf","PDF_PP":"tcg_pp_at_tpm_v1p0_pub.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2019-07-04","Archived":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","PDF_TB":"","eal_name":"EAL4+"},{"PPID":449,"ID":"2021.0014","Scheme":"FR","cPP":0,"Name":"Protection Profile PC Client Specific Trusted Platform Module Specification Family 2.0; Level 0; Revision 1.59 Version 1.3","Abbr":"TPM 2021 02","Categories":"TC","EAL":"4+","Version":"1.3","Augs":"151,148","PDF_Cert":"anssi-pp-2021_02fr.pdf","PDF_PP":"anssi-profil-pp-2021_02en.pdf","PDF_ES":"","PDF_SD":"","Issue_Date":"2021-11-30","Archived":"","Creator":3,"EntryDate":"January, 11 2022 12:24:26 +0000","Editor":3,"ModDate":"January, 11 2022 12:24:26 +0000","PDF_TB":"","eal_name":"EAL4+"}]
var maintList = [{"ID":36,"Scheme":"DE","PP_ID":"2021.0004","Name":"Schutzprofil 2: Anforderungen an den Konnektor, BSI-CC-PP-0098, V1.6","PDF_Report":"pp0098V3MA01a_pdf.pdf","Date":"2022-05-05","Creator":60,"EntryDate":"May, 11 2022 08:33:32 +0000","Editor":60,"ModDate":"May, 11 2022 08:33:32 +0000","published":"2022-05-05","pp_name":"BSI-CC-PP-0098-V3-2021 - Schutzprofil 2: Anforderungen an den Konnektor"},{"ID":37,"Scheme":"DE","PP_ID":"2021.0004","Name":"Schutzprofil 2: Anforderungen an den Konnektor, Version 1.6.1","PDF_Report":"pp0098V3MA02a_pdf.pdf","Date":"2023-04-24","Creator":60,"EntryDate":"May, 22 2023 09:03:58 +0000","Editor":60,"ModDate":"May, 22 2023 09:03:58 +0000","published":"2023-04-24","pp_name":"BSI-CC-PP-0098-V3-2021 - Schutzprofil 2: Anforderungen an den Konnektor"},{"ID":40,"Scheme":"DE","PP_ID":"2021.0004","Name":"Schutzprofil 2: Anforderungen an den Konnektor, Version 1.6.2","PDF_Report":"pp0098V3MA03a_pdf.pdf","Date":"2024-11-15","Creator":60,"EntryDate":"December, 06 2024 08:28:13 +0000","Editor":60,"ModDate":"December, 06 2024 08:28:13 +0000","published":"2024-11-15","pp_name":"BSI-CC-PP-0098-V3-2021 - Schutzprofil 2: Anforderungen an den Konnektor"},{"ID":27,"Scheme":"DE","PP_ID":"2015.0030","Name":"Common Criteria Protection Profile Electronic Health Card Terminal &#x28;eHCT&#x29; Version 3.7","PDF_Report":"PP0032V2_ma1a_pdf.pdf","Date":"2017-05-22","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2017-05-22","pp_name":"Common Criteria Protection Profile Electronic Health Card Terminal"},{"ID":18,"Scheme":"DE","PP_ID":"2015.0020","Name":"Common Criteria Schutzprofil &#x28;Protection Profile&#x29; Schutzprofil 1&#x3a; Anforderungen an den Netzkonnektor &#x28;NK-PP&#x29; Version 3.2.2","PDF_Report":"pp0047ma1a_pdf.pdf","Date":"2016-06-09","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2016-06-09","pp_name":"Common Criteria Schutzprofil &#x28;Protection Profile&#x29; Schutzprofil 1&#x3a; Anforderungen an den Netzkonnektor"},{"ID":8,"Scheme":"FR","PP_ID":"2008.0028","Name":"Maintenance Report ANSSI-CC-PP 2008&#x2f;05-M01","PDF_Report":"ANSSI-CC-PP-2008-05-M01en.pdf","Date":"2011-03-21","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2011-03-21","pp_name":"DCSSI-PP 2008&#x2f;05 - Electronic Signature Creation Module &#x28;CC3.1&#x29;, version 1.6"},{"ID":10,"Scheme":"FR","PP_ID":"2008.0018","Name":"Maintenance Report ANSSI-CC-PP-2008-06-M01","PDF_Report":"ANSSI-CC-PP-2008-06-M01en.pdf","Date":"2011-03-21","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2011-03-21","pp_name":"DCSSI-PP 2008&#x2f;06 - Electronic Signature Verification Module &#x28;CC3.1&#x29;, Version 1.6"},{"ID":17,"Scheme":"TR","PP_ID":"2014.0009","Name":"Electronic Document and Records Management System Protection Profile &#x28;EDRMS PP&#x29; v 1.3.2","PDF_Report":"14-021-MR-01.pdf","Date":"2016-07-29","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2016-07-29","pp_name":"Electronic Document and Records Management System Protection Profile"},{"ID":9,"Scheme":"FR","PP_ID":"2010.0033","Name":"Java Card System Protection Profile - Closed Configuration version 3.0","PDF_Report":"ANSSI-CC-PP-2010-07-M01en.pdf","Date":"2013-02-26","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2013-02-26","pp_name":"Java Card System Protection Profile - Closed Configuration version 2.6"},{"ID":7,"Scheme":"FR","PP_ID":"2010.0022","Name":"Java Card System Protection profile - Open Configuration, version 3.0","PDF_Report":"anssi-cc-pp-2010_03-M01en.pdf","Date":"2012-05-29","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2012-05-29","pp_name":"Java Card&trade; System Protection Profile Open Configuration, Version 2.6"},{"ID":28,"Scheme":"KR","PP_ID":"2017.0020","Name":"korean National protection profile for Database Encryption V1.0 Assurance maintenace 1","PDF_Report":"KECS-PP-0820a-2017_PP_EN.pdf","Date":"2019-12-11","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2019-12-11","pp_name":"Korean National Protection Profile for Database Encryption V1.0"},{"ID":13,"Scheme":"DE","PP_ID":"2011.0009","Name":"Common Criteria Protection Profile Machine Readable Travel Document using Standard Inspection Procedure with PACE &#x28;PACE_PP&#x29;","PDF_Report":"pp0068_V2_ma1a_pdf.pdf","Date":"2014-07-31","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2014-07-31","pp_name":"Machine Readable Travel Document using Standard Inspection Procedure with PACE &#x28;PACE_PP&#x29;"},{"ID":11,"Scheme":"DE","PP_ID":"2012.0004","Name":"Machine Readable Travel Document with &quot;ICAO Application&quot;, Extended Access Control with PACE, Version 1.3.1","PDF_Report":"pp0056_V2_ma1a_pdf.pdf","Date":"2012-03-26","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2012-03-26","pp_name":"Machine Readable Travel Document with ICAO Application Extended Access Control with PACE, Version 1.3"},{"ID":12,"Scheme":"DE","PP_ID":"2012.0004","Name":"Machine Readable Travel Document with &quot;ICAO Application&quot;, Extended Access Control with PACE, Version 1.3.2","PDF_Report":"pp0056_V2_ma2a_pdf.pdf","Date":"2012-12-21","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2012-12-21","pp_name":"Machine Readable Travel Document with ICAO Application Extended Access Control with PACE, Version 1.3"},{"ID":24,"Scheme":"DE","PP_ID":"2016.0006","Name":"Machine-Readable Electronic Documents based on BSI TR-03110 for Official Use &#x28;MR.ED-PP&#x29;, Version 2.0.3","PDF_Report":"pp0087V2ma1a_pdf.pdf","Date":"2016-07-29","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2016-07-29","pp_name":"Machine-Readable Electronic Documents based on BSI TR-03110 for Official Use"},{"ID":6,"Scheme":"DE","PP_ID":"2008.0023","Name":"PC Client Specific Trusted Platform Module Family 1.2&#x3b; Level 2, Revision 116, Version 1.2","PDF_Report":"pp0030_ma1a_pdf.pdf","Date":"2011-10-06","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2011-10-06","pp_name":"PC Client Specific Trusted Platform Module Family 1.2&#x3b; Level 2, Version 1.1"},{"ID":15,"Scheme":"DE","PP_ID":"2008.0023","Name":"Trusted Computing Group Protection Profile, PC Client specific Trusted Platform Module TPM Family 1.2&#x3b; Level 2 Revision 116 Version 1.3","PDF_Report":"pp0030_ma2a_pdf.pdf","Date":"2014-12-18","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2014-12-18","pp_name":"PC Client Specific Trusted Platform Module Family 1.2&#x3b; Level 2, Version 1.1"},{"ID":16,"Scheme":"US","PP_ID":"2010.0015","Name":"Peripheral Sharing Switch for Human Interface Devices Protection Profile, Version 2.1","PDF_Report":"pp_psshid_v2.0-add1.pdf","Date":"2010-06-01","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2010-06-01","pp_name":"Peripheral Sharing Switch for Human Interface Devices Protection Profile, Version 2.1"},{"ID":31,"Scheme":"FR","PP_ID":"2019.0018","Name":"Profil de Protection « Protection profile for trustworthy systems supporting time stamping » (référence : EN 419231:2019 E version : 0.17)","PDF_Report":"anssi-cc-pp-2019-01_m01.pdf","Date":"2020-05-18","Creator":0,"EntryDate":"","Editor":0,"ModDate":"","published":"2020-05-18","pp_name":"PP « Protection profile for trustworthy systems supporting time stamping », version 0.17"},{"ID":25,"Scheme":"TR","PP_ID":"2015.0024","Name":"Protection Profile for Application Firmware of Secure Smartcard Reader for National Electronic Identity Verification System","PDF_Report":"SSR_PP_MR.pdf","Date":"2016-09-20","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2016-09-20","pp_name":"Protection Profile for Application Firmware of Secure Smartcard Reader for National Electronic Identity Verification System"},{"ID":5,"Scheme":"DE","PP_ID":"2010.0031","Name":"Protection Profile for electronic Health Card &#x28;eHC&#x29; - elektronische Gesundheitskarte &#x28;eGK&#x29;, Version 2.9","PDF_Report":"PP0020_V3_ma1a_pdf.pdf","Date":"2011-04-21","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2011-04-21","pp_name":"Protection Profile for electronic Health Card &#x28;eHC&#x29; - elektronische Gesundheitskarte &#x28;eGK&#x29;"},{"ID":14,"Scheme":"US","PP_ID":"2013.0009","Name":"Addendum to General Purpose Operating System Protection Profile","PDF_Report":"pp_gpos_v3.9-add1.pdf","Date":"2013-01-15","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2013-01-15","pp_name":"Protection Profile for General Purpose Operating System"},{"ID":3,"Scheme":"DE","PP_ID":"2009.0018","Name":"Protection Profile for Secure Signature Creation Device - Part 2&#x3a; Device with Key Generation Version 2.01","PDF_Report":"pp0059_ma1a_pdf.pdf","Date":"2012-02-21","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2012-02-21","pp_name":"Protection Profile for Secure Signature Creation Device - Part 2: Device with Key Generation, Version 1.03"},{"ID":19,"Scheme":"DE","PP_ID":"2009.0018","Name":"EN 419211-2&#x3a;2013 - Protection profiles for secure signature creation device - Part 2&#x3a; Device with key generation","PDF_Report":"pp0059_ma2a_pdf.pdf","Date":"2016-06-30","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2016-06-30","pp_name":"Protection Profile for Secure Signature Creation Device - Part 2: Device with Key Generation, Version 1.03"},{"ID":22,"Scheme":"DE","PP_ID":"2012.0008","Name":"EN 419211-3&#x3a;2013 - Protection profiles for secure signature creation device - Part 3&#x3a; Device with key import","PDF_Report":"pp0075_ma1a_pdf.pdf","Date":"2016-06-30","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2016-06-30","pp_name":"Protection profiles for secure signature creation device - Part 3: Device with key import"},{"ID":23,"Scheme":"DE","PP_ID":"2013.0002","Name":"EN 419211-6&#x3a;2014 - Protection profiles for secure signature creation device - Part 6&#x3a; Extension for device with key import and trusted channel to&#xd;&#xa;signature creation application","PDF_Report":"pp0076ma1a_pdf.pdf","Date":"2016-06-30","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2016-06-30","pp_name":"Protection profiles for secure signature creation device - Part 6: Extension for device with key import and trusted communication with signature creation application"},{"ID":20,"Scheme":"DE","PP_ID":"2012.0010","Name":"EN 419211-4&#x3a;2013 - Protection profiles for secure signature creation device - Part 4&#x3a; Extension for device with key generation and trusted channel to certificate generation application","PDF_Report":"pp0071_ma1a_pdf.pdf","Date":"2016-06-30","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2016-06-30","pp_name":"Protection profiles for secure signature creation device — Part 4: Extension for device with key generation and trusted communication with certificate generation application"},{"ID":21,"Scheme":"DE","PP_ID":"2012.0009","Name":"EN 419211-5&#x3a;2013 - Protection profiles for secure signature creation device - Part 5&#x3a; Extension for device with key generation and trusted channel to&#xd;&#xa;signature creation application","PDF_Report":"pp0072_ma1a_pdf.pdf","Date":"2016-06-30","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2016-06-30","pp_name":"Protection profiles for secure signature creation device — Part 5: Extension for device with key generation and trusted communication with signature creation application"},{"ID":29,"Scheme":"FR","PP_ID":"2016.0016","Name":"Protection profiles for TSP Cryptographic modules - Part 5- Cryptographic Module for Trust Services » (référence : EN 419221-5:2018 E version :1.0)","PDF_Report":"anssi-cc-pp-2016-05_m01.pdf","Date":"2020-05-18","Creator":0,"EntryDate":"","Editor":0,"ModDate":"","published":"2020-05-18","pp_name":"Protection profiles for TSP Cryptographic modules - Part 5- Cryptographic Module for Trust Services &#x28;prEN 419 221-5, version 0.15&#x29;"},{"ID":35,"Scheme":"DE","PP_ID":"2020.0014","Name":"Common Criteria Schutzprofil (ProtectionProfile)Schutzprofil 1: Anforderungen an den Netzkonnektor Version 1.6.6","PDF_Report":"pp0097V2ma1a_pdf.pdf","Date":"2021-04-29","Creator":62,"EntryDate":"June, 18 2021 08:11:38 +0000","Editor":60,"ModDate":"July, 27 2021 02:42:32 +0000","published":"2021-04-29","pp_name":"Schutzprofil 1: Anforderungen an den Netzkonnektor, Version 1.6.4"},{"ID":38,"Scheme":"DE","PP_ID":"2020.0014","Name":"BSI-CC-PP-0097-V2-2020-MA-02 Schutzprofil 1: Anforderungen an den Netzkonnektor, Version 1.6.7","PDF_Report":"pp0097V2ma2a_pdf.pdf","Date":"2023-04-24","Creator":62,"EntryDate":"May, 23 2023 09:48:07 +0000","Editor":62,"ModDate":"May, 23 2023 09:48:07 +0000","published":"2023-04-24","pp_name":"Schutzprofil 1: Anforderungen an den Netzkonnektor, Version 1.6.4"},{"ID":4,"Scheme":"DE","PP_ID":"2007.0042","Name":"Protection Profile for electronic Health Card &#x28;eHC&#x29; - elektronische Gesundheitskarte &#x28;eGK&#x29;, Version 2.61","PDF_Report":"pp0020_v2_ma3a_pdf.pdf","Date":"2011-04-21","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2011-04-21","pp_name":"Schutzprofile fur die elektronische Gesundheitskarte &#x28;eGK&#x29;, Version 2.0"},{"ID":26,"Scheme":"FR","PP_ID":"2015.0001","Name":"ANSSI-CC-PP-2014&#x2f;01-M01","PDF_Report":"ANSSI-CC-PP-2014-01_M01.pdf","Date":"2016-12-13","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2016-12-13","pp_name":"Trusted Execution Environmenet"},{"ID":32,"Scheme":"FR","PP_ID":"2016.0015","Name":"Trusted Execution Environment » (référence GPD_SPE_021, version 1.3)","PDF_Report":"anssi-cc-pp-2014-01_m02.pdf","Date":"2020-07-30","Creator":0,"EntryDate":"","Editor":0,"ModDate":"","published":"2020-07-30","pp_name":"Trusted Execution Environment &#x28;r&eacute;f&eacute;rence GPD_SPE_021, version 1.2.1&#x29;"},{"ID":30,"Scheme":"FR","PP_ID":"2018.0018","Name":"« Trustworthy Systems Supporting Server Signing Part 2 : Protection Profiles for QSCD for Server Signing » (référence : EN 419241-2:2019 E version : 0.16)","PDF_Report":"anssi-cc-pp-2018-02_m01.pdf","Date":"2020-05-18","Creator":0,"EntryDate":"","Editor":0,"ModDate":"","published":"2020-05-18","pp_name":"Trustworthy Systems Supporting Server Signing Part 2 : Protection Profiles for QSCD for Server Signing"},{"ID":1,"Scheme":"US","PP_ID":"2010.0011","Name":"U.S. Government Protection Profile for Database Management Systems","PDF_Report":"pp_dbms_v1.3-add1.pdf","Date":"2010-12-24","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2010-12-24","pp_name":"U.S. Government Protection Profile Database Management Systems, Version 1.3"},{"ID":2,"Scheme":"US","PP_ID":"2010.0030","Name":"U.S. Government Approved Protection Profile - U.S. Government Protection Profile for Hardcopy Devices Version 1.0 &#x28;IEEE Std. 2600.2&trade;-2009&#x29;","PDF_Report":"pp_hcd_eal2_v1.0-add1.pdf","Date":"2011-10-11","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000","published":"2011-10-11","pp_name":"U.S. Government Protection Profile for Hardcopy Devices Version 1.0 &#x28;IEEE Std. 2600.2&trade;-2009&#x29;"}]
var countryList = [{"Code":"AU","Country":"Australia","Role":1,"Name":"Australian Certification Authority (ACA)","Phone":"","Email":"ACA.Certifications@defence.gov.au","Address":"Australian Information Security Evaluation Program (AISEP) Australian Cyber Security Centre (ACSC) PO Box 5076 Kingston ACT 2604, Australia","WWW":"https://www.cyber.gov.au/resources-business-and-government/assessment-and-evaluation-programs/australian-information-security-evaluation-program","Fax":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":15,"ModDate":"November, 09 2023 20:26:22 +0000"},{"Code":"AT","Country":"Austria","Role":2,"Name":"Federal Chancellery of Austria","Phone":"&#x2b;43 &#x28;1&#x29; 53115 2551","Email":"i11@bka.gv.at","Address":"Ballhausplatz 2, 1014 Wien&#xd;&#xa;Austria","WWW":"http&#x3a;&#x2f;&#x2f;www.digitales.oesterreich.gv.at&#x2f;","Fax":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"Code":"BE","Country":"Belgium","Role":2,"Name":"The Centre for Cybersecurity Belgium","Phone":"+32 (0)2 501 05 60","Email":"info@ccb.belgium.be","Address":"18 Rue de la Loi&#xd;&#xa;1000 Brussels&#xd;&#xa;Belgium","WWW":"https://ccb.belgium.be/","Fax":"NA","Creator":1,"EntryDate":"","Editor":1,"ModDate":""},{"Code":"CA","Country":"Canada","Role":1,"Name":"Canadian Common Criteria Scheme","Phone":"1.613.991.7654","Email":"contact@cyber.gc.ca","Address":"Canadian Centre for Cyber Security, Communications Security Establishment, P.O.Box 9703, Terminal, Ottawa, Canada K1G 3Z4","WWW":"https://www.cyber.gc.ca/en/tools-services/common-criteria","Fax":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":13,"ModDate":"May, 01 2023 13:41:52 +0000"},{"Code":"CZ","Country":"Czech Republic","Role":2,"Name":"National Cyber and Information Security Agency","Phone":"+ 420 541 110 777","Email":"posta@nukib.cz","Address":"P.O. BOX 17\r\nCZ 616 00 Brno 16\r\nCzech Republic","WWW":"https://www.nukib.cz/en/","Fax":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":111,"ModDate":"November, 03 2021 14:08:54 +0000"},{"Code":"DK","Country":"Denmark","Role":2,"Name":"Center for Cyber Security","Phone":"&#x2b;45 2974 3489","Email":"fe-cfcs-it-sikkerhed@cfcs.dk","Address":"Kastellet 30&#xd;&#xa;DK-2100 Copenhagen&#xd;&#xa;Denmark","WWW":"https&#x3a;&#x2f;&#x2f;www.cfcs.dk","Fax":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"Code":"ET","Country":"Ethiopia","Role":2,"Name":"Information Network Security Agency &#x28;INSA&#x29;","Phone":"&#x2b;251-11-371-71-14","Email":"Gebrekidan@insa.gov.et","Address":"P.O. Box 124498&#xd;&#xa;Addis Ababa&#xd;&#xa;Ethiopia","WWW":"http&#x3a;&#x2f;&#x2f;www.insa.gov.et","Fax":"&#x2b;251-11-320 40 37","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"Code":"FI","Country":"Finland","Role":2,"Name":"Finnish Transport and Communications Agency &#x28;Traficom&#x29;","Phone":"&#x2b;358 295 345 000","Email":"ccra@traficom.fi","Address":"Postal address&#x3a; &#xd;&#xa;NCSC-FI &#x2f; CCRA, Traficom&#xd;&#xa;P.O.Box 313&#xd;&#xa;00059 TRAFICOM&#xd;&#xa;&#xd;&#xa;Finland Street address&#x3a; &#xd;&#xa;Traficom&#xd;&#xa;Erik Palm&eacute;nin aukio 1&#xd;&#xa;00560 Helsinki&#xd;&#xa;Finland","WWW":"https&#x3a;&#x2f;&#x2f;www.ncsc.fi&#x2f;","Fax":"&#x2b;358 295 345 095","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"Code":"FR","Country":"France","Role":1,"Name":"Agence Nationale de la Sécurité des Systèmes d'Information (ANSSI)","Phone":"33.1.71758282","Email":"certification@ssi.gouv.fr","Address":"Centre de Certification51 Boulevard de La Tour-Maubourg75700 PARIS 07 SPFrance","WWW":"http://www.cyber.gouv.fr/","Fax":"33.1.71758260","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":3,"ModDate":"November, 10 2023 07:55:19 +0000"},{"Code":"DE","Country":"Germany","Role":1,"Name":"Bundesamt für Sicherheit in der Informationstechnik","Phone":"+49.228.9582.111","Email":"Zertifizierung@bsi.bund.de","Address":"Zertifizierungsstelle\r\nReferat S 22 / S 24\r\nGodesberger Allee 87\r\n53175 Bonn, Germany","WWW":"http://www.bsi.bund.de/","Fax":"+49.228.9582.5477","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":97,"ModDate":"October, 29 2024 06:27:56 +0000"},{"Code":"GR","Country":"Greece","Role":2,"Name":"National Intelligence Service","Phone":"+30 210 697 3150-51","Email":"infosec@nis.gr","Address":"Cyber Directorate / Information Assurance\r\n4 P. Kanellopoulou Avenue\r\nAthens 10177 Greece","WWW":"http://www.nis.gr/","Fax":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":111,"ModDate":"May, 26 2021 13:49:16 +0000"},{"Code":"HU","Country":"Hungary","Role":2,"Name":"Ministry of National Development","Phone":"36 1 7953442","Email":"csaba.horvath@nfm.gov.hu","Address":"H-1011 Budapest, Fo u. 44-50","WWW":"http&#x3a;&#x2f;&#x2f;www.kormany.hu&#x2f;en&#x2f;ministry-of-national-development","Fax":"36 1 7953697","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"Code":"IN","Country":"India","Role":1,"Name":"Indian Common Criteria Certification Scheme (IC3S)","Phone":"91 11 24301382","Email":"suresh@stqc.gov.in","Address":"STQC Dte Min of Electronics and Information Tech \r\nElectronics Niketan \r\n6 CGO Complex \r\nNew Delhi","WWW":"http://www.commoncriteria-india.gov.in/","Fax":"91 11 24363083","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":68,"ModDate":"February, 04 2021 01:12:37 +0000"},{"Code":"ID","Country":"Indonesia","Role":2,"Name":"Badan Siber &amp; Sandi Negara &#x28; National Cyber &amp; Crypto Agency &#x29; Indonesia","Phone":"&#x2b;62 217 805814","Email":"idcc@bssn.go.id","Address":"Jalan Harsono RM 70 Ragunan &#xd;&#xa;Pasar Minggu &#xd;&#xa;Jakarta Selatan 12550&#xd;&#xa;Indonesia","WWW":"https&#x3a;&#x2f;&#x2f;www.bssn.go.id&#x2f;idcc","Fax":"&#x2b;62 217 884104","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"Code":"IL","Country":"Israel","Role":2,"Name":"The Standards Institution of Israel","Phone":"&#x2b;97237454019","Email":"carmit@sii.org.il","Address":"Ilan CARMIT&#xd;&#xa;Business &amp; Projects Development Manager&#xd;&#xa;42 Lebanon St.&#xd;&#xa;69977 Tel-Aviv&#xd;&#xa;Israel","WWW":"http&#x3a;&#x2f;&#x2f;www.sii.org.il&#x2f;20-en&#x2f;SII_EN.aspx","Fax":"&#x2b;972-3-6467779","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"Code":"IT","Country":"Italy","Role":1,"Name":"Organismo di Certificazione della Sicurezza Informatica (OCSI)","Phone":"","Email":"ocsi@pec.acn.gov.it","Address":"Agenzia per la Cybersicurezza Nazionale - Via di Santa Susanna, 15 - 00187 Rome Italy","WWW":"https://www.ocsi.gov.it/","Fax":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":38,"ModDate":"October, 05 2022 12:14:23 +0000"},{"Code":"JP","Country":"Japan","Role":1,"Name":"JISEC - Japan IT Security Evaluation and Certification Scheme","Phone":"+81-3-5978-7538","Email":"jisec@ipa.go.jp","Address":"IT Security Center, Technology Headquarters\r\nInformation-technology Promotion Agency (IPA)\r\nBunkyo Green Court center office\r\n2-28-8 Hon-Komagome, Bunkyo-ku\r\nTokyo 113-6591, Japan","WWW":"https://www.ipa.go.jp/security/jisec/jisec_e/","Fax":"+81-3-5978-7548","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":34,"ModDate":"July, 04 2021 21:47:19 +0000"},{"Code":"JO","Country":"Jordan","Role":2,"Name":"National Cyber Security Center (NCSC)","Phone":"+(962) 6-590 0 500","Email":"info@ncso.jo","Address":"Jordan Common Criteria Scheme&#xd;&#xa;NCSC HQ&#xd;&#xa;AL Rawabi District&#xd;&#xa;7th circle&#xd;&#xa;Amman Jordan","WWW":"https://ncsc.jo/","Fax":"+(962) 6-590 0 501","Creator":1,"EntryDate":"","Editor":174,"ModDate":"December, 05 2024 11:24:23 +0000"},{"Code":"MY","Country":"Malaysia","Role":1,"Name":"CyberSecurity Malaysia","Phone":"603 - 8800 7999","Email":"mycc@cybersecurity.my","Address":"MyCC Scheme Manager, CyberSecurity Malaysia, Level 7 Tower 1, Menara Cyber Axis, Jalan Impact, 63000 Cyberjaya, Selangor Darul Ehsan, Malaysia","WWW":"https://iscb.cybersecurity.my/index.php/certification/product-certification/mycc/scheme-background","Fax":"603 - 8008 7000","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":80,"ModDate":"October, 27 2023 17:22:48 +0000"},{"Code":"NL","Country":"Netherlands","Role":1,"Name":"NSCIB operated by","Phone":"","Email":"nscib@trustcb.com","Address":"TrustCB B.V.","WWW":"https://www.trustcb.com/","Fax":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":8,"ModDate":"October, 11 2023 04:20:41 +0000"},{"Code":"NZ","Country":"New Zealand","Role":2,"Name":"National Cyber Security Centre","Phone":"64 4 498 7654","Email":"info@ncsc.govt.nz","Address":"National Cyber Security Centre\r\nPO Box 12209 \r\nThorndon \r\nWellington 6144","WWW":"https://www.ncsc.govt.nz/","Fax":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":144,"ModDate":"November, 01 2022 12:00:00 +0000"},{"Code":"NO","Country":"Norway","Role":1,"Name":"SERTIT","Phone":"47 67 86 40 00","Email":"sertit@nsm.no","Address":"P.O. Box 814, N-1306 Sandvika, Norway","WWW":"http://www.sertit.no/","Fax":"47 67 86 40 09","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":160,"ModDate":"October, 18 2024 13:19:52 +0000"},{"Code":"PK","Country":"Pakistan","Role":2,"Name":"Ministry of Defence","Phone":"&#x2b;92-51-9095395","Email":"info@commoncriteria.org.pk","Address":"PO Box 2855 &#x28;PC 319&#x29;&#xd;&#xa;C&#x2f;O CPO&#xd;&#xa;Islamabad&#xd;&#xa;Pakistan","WWW":"http&#x3a;&#x2f;&#x2f;www.commoncriteria.org.pk&#x2f;","Fax":"&#x2b;92-51-9290751","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"Code":"PL","Country":"Poland","Role":1,"Name":"NASK National Research Institute","Phone":"+48 22 380 82 00, +48 22 380 82 04","Email":"standard@nask.pl","Address":"NASK - Panstwowy Instytut Badawczy\r\n12 Kolska Str.\r\n01-045 Warszawa\r\nPoland","WWW":"https://en.nask.pl/certification","Fax":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":75,"ModDate":"October, 27 2023 11:31:04 +0000"},{"Code":"QA","Country":"Qatar","Role":1,"Name":"National Cyber Security Agency (NCSA)","Phone":"974 44652937","Email":"qccs@ncsa.gov.qa","Address":"Qatar Common Criteria Scheme\r\nP.O. Box 24100,\r\nWadi Al Sail Street,\r\nDoha, Qatar","WWW":"https://compliance.qcert.org/certification/qccs","Fax":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":111,"ModDate":"June, 21 2023 13:06:51 +0000"},{"Code":"KR","Country":"Republic of Korea","Role":1,"Name":"IT Security Certification Center(ITSCC)","Phone":"","Email":"itscc@nsr.re.kr","Address":"5th Floor, A-dong, 17, Changeop-ro, Sujeong-gu, Seongnam-si, Gyeonggi-do, Republic of Korea","WWW":"http://itscc.kr","Fax":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":32,"ModDate":"February, 01 2023 00:54:24 +0000"},{"Code":"SG","Country":"Singapore","Role":1,"Name":"Cyber Security Agency of Singapore","Phone":"+65 6323 5044","Email":"certification@csa.gov.sg","Address":"5 Maxwell Road, MND Complex","WWW":"https://go.gov.sg/common-criteria","Fax":"+65 6324 0017","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":41,"ModDate":"November, 09 2022 07:45:13 +0000"},{"Code":"SK","Country":"Slovakia","Role":2,"Name":"National Security Authority of Slovakia","Phone":"+421 2 6869 1111","Email":"podatelna@nbu.gov.sk","Address":"Budatínska 30,\r\n851 06 Bratislava\r\nSlovakia","WWW":"https://www.nbu.gov.sk/en/index.html","Fax":"+421 2 6869 1700","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":111,"ModDate":"September, 15 2022 10:46:28 +0000"},{"Code":"ES","Country":"Spain","Role":1,"Name":"Organismo de Certificaci&oacute;n de la Seguridad de las Tecnolog&iacute;as de la Informaci&oacute;n","Phone":"","Email":"organismo.certificacion@ccn.cni.es","Address":"Centro Criptol&oacute;gico Nacional&#xd;&#xa;Centro Nacional de Inteligencia&#xd;&#xa;Ministerio de Defensa&#xd;&#xa;C&#x2f;Argentona 30. 28023 MADRID, Spain","WWW":"https&#x3a;&#x2f;&#x2f;oc.ccn.cni.es","Fax":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"Code":"SE","Country":"Sweden","Role":1,"Name":"Swedish Certification Body for IT Security FMV/CSEC","Phone":"+46 8 782 40 00","Email":"csec@fmv.se","Address":"S-115 88 Stockholm, Sweden","WWW":"https://www.fmv.se/verksamhet/ovrig-verksamhet/csec/","Fax":"No fax","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":107,"ModDate":"August, 01 2021 21:09:18 +0000"},{"Code":"TR","Country":"Turkey","Role":1,"Name":"TSE (Turkish Standards Institution) Common Criteria Certification Scheme","Phone":"90 312 416 64 51","Email":"ccraturkey@tse.org.tr","Address":"Necatibey Cad. No:112 Bakanliklar 06100 Ankara, TURKEY","WWW":"https://en.tse.org.tr/KurumsalSablon?ID=666&ParentID=2312","Fax":"90 312 416 65 07","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":114,"ModDate":"August, 09 2022 15:42:36 +0000"},{"Code":"UK","Country":"United Kingdom","Role":2,"Name":"UK IT Security Evaluation and Certification Scheme","Phone":"44 &#x28;0&#x29;1242 221491, Ext 30074","Email":"cc@ncsc.gov.uk","Address":"NCSC Certification Body, Room A2J, Hubble Road, Cheltenham, Gloucestershire, GL51 0EX, United Kingdom","WWW":"http&#x3a;&#x2f;&#x2f;www.ncsc.gov.uk&#x2f;","Fax":"44 &#x28;0&#x29;1242 709194","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"Code":"US","Country":"United States","Role":1,"Name":"National Information Assurance Partnership","Phone":"","Email":"niap@niap-ccevs.org","Address":"Department of Defense\r\nATTN: NIAP, Suite 6982\r\n9800 Savage Road\r\nFt. Meade, MD 20755- 6982\r\nUSA","WWW":"https://www.niap-ccevs.org/","Fax":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":140,"ModDate":"October, 27 2023 13:21:29 +0000"}]
var categoriesList = [{"ID":"AC","Name":"Access Control Devices and Systems","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":"BD","Name":"Biometric Systems and Devices","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":"BP","Name":"Boundary Protection Devices and Systems","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":"DP","Name":"Data Protection","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":"DB","Name":"Databases","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":"DD","Name":"Detection Devices and Systems","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":"IC","Name":"ICs, Smart Cards and Smart Card-Related Devices and Systems","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":"KM","Name":"Key Management Systems","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":"MD","Name":"Mobility","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":"MF","Name":"Multi-Function Devices","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":"NS","Name":"Network and Network-Related Devices and Systems","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":"OS","Name":"Operating Systems","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":"OD","Name":"Other Devices and Systems","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":"DG","Name":"Products for Digital Signatures","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":"TC","Name":"Trusted Computing","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"}]
var augsList = [{"ID":93,"CC":"3.1","Scheme":"US","Abbr":"ADV_ARC.1","Name":"Security architecture description ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":94,"CC":"3.1","Scheme":"US","Abbr":"ADV_FSP.1","Name":"Basic functional specification ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":95,"CC":"3.1","Scheme":"US","Abbr":"ADV_FSP.2","Name":"Security-enforcing functional specification ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":96,"CC":"3.1","Scheme":"US","Abbr":"ADV_FSP.3","Name":"Functional specification with complete summary ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":97,"CC":"3.1","Scheme":"US","Abbr":"ADV_FSP.4","Name":"Complete functional specification ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":98,"CC":"3.1","Scheme":"US","Abbr":"ADV_FSP.5","Name":"Complete semi-formal functional specification with additional error information ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":99,"CC":"3.1","Scheme":"US","Abbr":"ADV_FSP.6","Name":"Complete semi-formal functional specification with additional formal specification ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":100,"CC":"3.1","Scheme":"US","Abbr":"ADV_IMP.1","Name":"Implementation representation of the TSF ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":101,"CC":"3.1","Scheme":"US","Abbr":"ADV_IMP.2","Name":"Implementation of the TSF ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":102,"CC":"3.1","Scheme":"US","Abbr":"ADV_INT.1","Name":"Well-structured subset of TSF internals ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":103,"CC":"3.1","Scheme":"US","Abbr":"ADV_INT.2","Name":"Well-structured internals ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":104,"CC":"3.1","Scheme":"US","Abbr":"ADV_INT.3","Name":"Minimally complex internals ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":105,"CC":"3.1","Scheme":"US","Abbr":"ADV_SPM.1","Name":"Formal TOE security policy model ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":106,"CC":"3.1","Scheme":"US","Abbr":"ADV_TDS.1","Name":"Basic design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":107,"CC":"3.1","Scheme":"US","Abbr":"ADV_TDS.2","Name":"Architectural design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":108,"CC":"3.1","Scheme":"US","Abbr":"ADV_TDS.3","Name":"Basic modular design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":109,"CC":"3.1","Scheme":"US","Abbr":"ADV_TDS.4","Name":"Semiformal modular design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":110,"CC":"3.1","Scheme":"US","Abbr":"ADV_TDS.5","Name":"Complete semiformal modular design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":111,"CC":"3.1","Scheme":"US","Abbr":"ADV_TDS.6","Name":"Complete semiformal modular design with formal high-level design presentation ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":112,"CC":"3.1","Scheme":"US","Abbr":"AGD_OPE.1","Name":"Operational user guidance ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":113,"CC":"3.1","Scheme":"US","Abbr":"AGD_PRE.1","Name":"Preparative procedures ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":114,"CC":"3.1","Scheme":"US","Abbr":"ALC_CMC.1","Name":"Labeling of the TOE ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":115,"CC":"3.1","Scheme":"US","Abbr":"ALC_CMC.2","Name":"Use of a CM system ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":116,"CC":"3.1","Scheme":"US","Abbr":"ALC_CMC.3","Name":"Authorization controls ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":117,"CC":"3.1","Scheme":"US","Abbr":"ALC_CMC.4","Name":"Production support, acceptance procedures and automation ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":118,"CC":"3.1","Scheme":"US","Abbr":"ALC_CMC.5","Name":"Advanced support ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":119,"CC":"3.1","Scheme":"US","Abbr":"ALC_CMS.1","Name":"TOE CM coverage ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":120,"CC":"3.1","Scheme":"US","Abbr":"ALC_CMS.2","Name":"Parts of the TOE CM coverage ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":121,"CC":"3.1","Scheme":"US","Abbr":"ALC_CMS.3","Name":"Implementation representation CM coverage ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":122,"CC":"3.1","Scheme":"US","Abbr":"ALC_CMS.4","Name":"Problem tracking CM coverage ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":123,"CC":"3.1","Scheme":"US","Abbr":"ALC_CMS.5","Name":"Development tools CM coverage ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":124,"CC":"3.1","Scheme":"US","Abbr":"ALC_DEL.1","Name":"Delivery procedures ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":125,"CC":"3.1","Scheme":"US","Abbr":"ALC_DVS.1","Name":"Identification of security measures ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":126,"CC":"3.1","Scheme":"US","Abbr":"ALC_DVS.2","Name":"Sufficiency of security measures","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":151,"CC":"3.1","Scheme":"US","Abbr":"ALC_FLR.1","Name":"Flaw Remediation - Basic ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":150,"CC":"3.1","Scheme":"US","Abbr":"ALC_FLR.2","Name":"Flaw Remediation - Flaw reporting procedures ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":127,"CC":"3.1","Scheme":"US","Abbr":"ALC_FLR.3","Name":"Flaw Remediation - Systematic flaw remediation ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":128,"CC":"3.1","Scheme":"US","Abbr":"ALC_LCD.1","Name":"Developer defined life-cycle model ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":129,"CC":"3.1","Scheme":"US","Abbr":"ALC_LCD.2","Name":"Measurable life-cycle model ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":175,"CC":"3.1","Scheme":"DE","Abbr":"ALC_PAM.1","Name":"ALC_PAM.1","Date":"","Creator":60,"EntryDate":"April, 26 2023 01:16:39 +0000","Editor":60,"ModDate":"April, 26 2023 01:16:39 +0000"},{"ID":130,"CC":"3.1","Scheme":"US","Abbr":"ALC_TAT.1","Name":"Well-defined development tools ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":131,"CC":"3.1","Scheme":"US","Abbr":"ALC_TAT.2","Name":"Compliance with implementation standards ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":132,"CC":"3.1","Scheme":"US","Abbr":"ALC_TAT.3","Name":"Compliance with implementation standards - all parts ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":162,"CC":"3.1","Scheme":"DE","Abbr":"ASE_CCL.1","Name":"ASE_CCL.1","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":167,"CC":"3.1","Scheme":"DE","Abbr":"ASE_ECD.1","Name":"ASE_ECD.1","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":163,"CC":"3.1","Scheme":"DE","Abbr":"ASE_INT.1","Name":"ASE_INT.1","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":164,"CC":"3.1","Scheme":"DE","Abbr":"ASE_OBJ.2","Name":"ASE_OBJ.2","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":165,"CC":"3.1","Scheme":"DE","Abbr":"ASE_REQ.2","Name":"ASE_REQ.2","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":166,"CC":"3.1","Scheme":"DE","Abbr":"ASE_SPD.1","Name":"ASE_SPD.1","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":168,"CC":"3.1","Scheme":"DE","Abbr":"ASE_TSS.1","Name":"ASE_TSS.1","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":153,"CC":"3.1","Scheme":"US","Abbr":"ASE_TSS.2","Name":"TOE Summary Specification with Architectural Design Summary ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":133,"CC":"3.1","Scheme":"US","Abbr":"ATE_COV.1","Name":"Evidence of coverage ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":134,"CC":"3.1","Scheme":"US","Abbr":"ATE_COV.2","Name":"Analysis of coverage ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":135,"CC":"3.1","Scheme":"US","Abbr":"ATE_COV.3","Name":"Rigorous analysis of coverage ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":136,"CC":"3.1","Scheme":"US","Abbr":"ATE_DPT.1","Name":"Testing: basic design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":137,"CC":"3.1","Scheme":"US","Abbr":"ATE_DPT.2","Name":"Testing: security enforcing modules ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":138,"CC":"3.1","Scheme":"US","Abbr":"ATE_DPT.3","Name":"Testing: modular design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":139,"CC":"3.1","Scheme":"US","Abbr":"ATE_DPT.4","Name":"Testing: implementation representation ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":140,"CC":"3.1","Scheme":"US","Abbr":"ATE_FUN.1","Name":"Functional testing ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":141,"CC":"3.1","Scheme":"US","Abbr":"ATE_FUN.2","Name":"Ordered functional testing ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":142,"CC":"3.1","Scheme":"US","Abbr":"ATE_IND.1","Name":"Independent testing - conformance ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":143,"CC":"3.1","Scheme":"US","Abbr":"ATE_IND.2","Name":"Independent testing - sample ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":144,"CC":"3.1","Scheme":"US","Abbr":"ATE_IND.3","Name":"Independent testing - complete ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":152,"CC":"3.1","Scheme":"US","Abbr":"AVA_CCA_(EXT).1","Name":"Systematic cryptographic module covert channel analysis ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":171,"CC":"3.1","Scheme":"NL","Abbr":"AVA_TEE.2","Name":"Low TEE vulnerability analysis","Date":"2019-10-10","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":145,"CC":"3.1","Scheme":"US","Abbr":"AVA_VAN.1","Name":"Vulnerability survey ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":146,"CC":"3.1","Scheme":"US","Abbr":"AVA_VAN.2","Name":"Vulnerability analysis ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":147,"CC":"3.1","Scheme":"US","Abbr":"AVA_VAN.3","Name":"Focused vulnerability analysis ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":148,"CC":"3.1","Scheme":"US","Abbr":"AVA_VAN.4","Name":"Methodical vulnerability analysis ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":149,"CC":"3.1","Scheme":"US","Abbr":"AVA_VAN.5","Name":"Advanced methodical vulnerability analysis ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":154,"CC":"3.1","Scheme":"","Abbr":"CAP-B","Name":"Composition assurance level B - Methodically composed ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":170,"CC":"3.1","Scheme":"DE","Abbr":"ND-PP","Name":"PP Compliant","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":169,"CC":"3.1","Scheme":"AU","Abbr":"PP","Name":"Protection Profile","Date":"2013-09-25","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":1,"CC":"3.1","Scheme":"US","Abbr":"Unk","Name":"Unknown","Date":"2001-01-01","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":25,"CC":"2.3","Scheme":"US","Abbr":"ACM_AUT.1","Name":"PCM automation - Partial CM automation ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":26,"CC":"2.3","Scheme":"US","Abbr":"ACM_AUT.2","Name":"CM Automation - Complete CM automation","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":27,"CC":"2.3","Scheme":"US","Abbr":"ACM_CAP.1","Name":"CM capabilities - Version numbers ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":28,"CC":"2.3","Scheme":"US","Abbr":"ACM_CAP.2","Name":"CM capabilities - Configuration items","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":29,"CC":"2.3","Scheme":"US","Abbr":"ACM_CAP.3","Name":"CM capabilities - Authorization controls ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":30,"CC":"2.3","Scheme":"US","Abbr":"ACM_CAP.4","Name":"CM capabilities - Generation support and acceptance procedures ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":31,"CC":"2.3","Scheme":"US","Abbr":"ACM_CAP.5","Name":"CM capabilities - Advanced support","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":24,"CC":"2.3","Scheme":"US","Abbr":"ACM_SCP.1","Name":"CM scope - TOE CM coverage","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":32,"CC":"2.3","Scheme":"US","Abbr":"ACM_SCP.2","Name":"CM scope - Problem tracking CM coverage ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":33,"CC":"2.3","Scheme":"US","Abbr":"ACM_SCP.3","Name":"CM scope - Development tools CM coverage ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":34,"CC":"2.3","Scheme":"US","Abbr":"ADO_DEL.1","Name":"Delivery - Delivery procedures ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":35,"CC":"2.3","Scheme":"US","Abbr":"ADO_DEL.2","Name":"Delivery - Detection of modification ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":36,"CC":"2.3","Scheme":"US","Abbr":"ADO_DEL.3","Name":"Delivery - Prevention of modification ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":41,"CC":"2.3","Scheme":"US","Abbr":"ADO_IGS.1","Name":"Installation, generation and start-up - Installation, generation and start-up procedures ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":42,"CC":"2.3","Scheme":"US","Abbr":"ADO_IGS.2","Name":"Installation, generation and start-up - Generation log ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":88,"CC":"2.3","Scheme":"US","Abbr":"ADV_ARC_EXP.1","Name":"Architectural Description","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":68,"CC":"2.3","Scheme":"US","Abbr":"ADV_DVS.2","Name":"Development security - Sufficiency of security measures ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":43,"CC":"2.3","Scheme":"US","Abbr":"ADV_FSP.1","Name":"Junctional Specification - Informal functional specification ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":44,"CC":"2.3","Scheme":"US","Abbr":"ADV_FSP.2","Name":"Functional Specification - Fully defined external interfaces ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":45,"CC":"2.3","Scheme":"US","Abbr":"ADV_FSP.3","Name":"Functional Specification - Semiformal functional specification ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":46,"CC":"2.3","Scheme":"US","Abbr":"ADV_FSP.4","Name":"Functional Specification - Formal functional specification ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":89,"CC":"2.3","Scheme":"US","Abbr":"ADV_FSP_EXP.1","Name":"Functional Specification with Complete Summary ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":47,"CC":"2.3","Scheme":"US","Abbr":"ADV_HLD.1","Name":"High-level design - Descriptive high-level design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":48,"CC":"2.3","Scheme":"US","Abbr":"ADV_HLD.2","Name":"High-level design - Security enforcing high-level design","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":49,"CC":"2.3","Scheme":"US","Abbr":"ADV_HLD.3","Name":"High-level design - Semiformal high-level design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":50,"CC":"2.3","Scheme":"US","Abbr":"ADV_HLD.4","Name":"High-level design - Semiformal high-level explanation ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":51,"CC":"2.3","Scheme":"US","Abbr":"ADV_HLD.5","Name":"High-level design - Formal high-level design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":90,"CC":"2.3","Scheme":"US","Abbr":"ADV_HLD_EXP.1","Name":"Security-Enforcing High-Level design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":22,"CC":"2.3","Scheme":"US","Abbr":"ADV_IMP.1","Name":"Development - Implementation representation - Subset of the implementation of the TSF ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":23,"CC":"2.3","Scheme":"US","Abbr":"ADV_IMP.2","Name":"Development - Implementation representation - Implementation of the TSF ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":52,"CC":"2.3","Scheme":"US","Abbr":"ADV_IMP.3","Name":"Implementation representation - Structured implementation of the TSF ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":53,"CC":"2.3","Scheme":"US","Abbr":"ADV_INT.1","Name":"TSF Internals - Modularity ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":54,"CC":"2.3","Scheme":"US","Abbr":"ADV_INT.2","Name":"TSF Internals - Reduction of complexity ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":55,"CC":"2.3","Scheme":"US","Abbr":"ADV_INT.3","Name":"TSF Internals - Minimization of complexity ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":87,"CC":"2.3","Scheme":"US","Abbr":"ADV_INT_EXP.1","Name":"Modular Decomposition ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":56,"CC":"2.3","Scheme":"US","Abbr":"ADV_LLD.1","Name":"Low-level design - Descriptive low-level design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":57,"CC":"2.3","Scheme":"US","Abbr":"ADV_LLD.2","Name":"Low-level design - Semiformal low-level design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":58,"CC":"2.3","Scheme":"US","Abbr":"ADV_LLD.3","Name":"Low-level design - Formal low-level design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":91,"CC":"2.3","Scheme":"US","Abbr":"ADV_LLD_EXP.1","Name":"Security-Enforcing Low-Level Design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":62,"CC":"2.3","Scheme":"US","Abbr":"ADV_RCR.1","Name":"Representation correspondence - Informal correspondence demonstration ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":63,"CC":"2.3","Scheme":"US","Abbr":"ADV_RCR.2","Name":"Representation correspondence - Semiformal correspondence demonstration ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":64,"CC":"2.3","Scheme":"US","Abbr":"ADV_RCR.3","Name":"Representation correspondence - Formal correspondence demonstration ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":7,"CC":"2.3","Scheme":"US","Abbr":"ADV_SPM.1","Name":"Security Policy Modeling - Informal TOE security policy model ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":8,"CC":"2.3","Scheme":"US","Abbr":"ADV_SPM.2","Name":"Security Policy Modeling - Semiformal TOE security policy model ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":9,"CC":"2.3","Scheme":"US","Abbr":"ADV_SPM.3","Name":"Security Policy Modeling - Formal TOE security policy model ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":65,"CC":"2.3","Scheme":"US","Abbr":"AGD_ADM.1","Name":"Guidance documents - Administrator documents ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":66,"CC":"2.3","Scheme":"US","Abbr":"AGD_USR.1","Name":"User Guidance - User Guidance ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":67,"CC":"2.3","Scheme":"US","Abbr":"ALC_DVS.1","Name":"Development security - Identification of security measures ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":161,"CC":"2.3","Scheme":"DE","Abbr":"ALC_DVS.2","Name":"ALC_DVS.2","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":5,"CC":"2.3","Scheme":"US","Abbr":"ALC_FLR.1","Name":"Flaw Remediation - Basic ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":6,"CC":"2.3","Scheme":"US","Abbr":"ALC_FLR.2","Name":"Flaw Remediation - Flaw reporting procedures ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":4,"CC":"2.3","Scheme":"US","Abbr":"ALC_FLR.3","Name":"Flaw Remediation - Systematic flaw remediation ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":69,"CC":"2.3","Scheme":"US","Abbr":"ALC_LCD.1","Name":"Life cycle definition - Developer defined life-cycle model ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":70,"CC":"2.3","Scheme":"US","Abbr":"ALC_LCD.2","Name":"Life cycle definition - Standardized life-cycle model ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":71,"CC":"2.3","Scheme":"US","Abbr":"ALC_LCD.3","Name":"Life cycle definition - Measurable life-cycle model ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":72,"CC":"2.3","Scheme":"US","Abbr":"ALC_TAT.1","Name":"Tools and techniques - Well-defined development tools ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":73,"CC":"2.3","Scheme":"US","Abbr":"ALC_TAT.2","Name":"Tools and Techniques - Compliance with implementation standards ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":74,"CC":"2.3","Scheme":"US","Abbr":"ALC_TAT.3","Name":"Tools and Techniques - Compliance with implementation standards - all parts ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":21,"CC":"2.3","Scheme":"US","Abbr":"AMA_AMP.1","Name":"Maintenance of Assurance - Assurance maintenance plan - Assurance maintenance plan ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":20,"CC":"2.3","Scheme":"US","Abbr":"AMA_CAT.1","Name":"Maintenance of Assurance - TOE component categorization report - TOE component categorization report ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":18,"CC":"2.3","Scheme":"US","Abbr":"AMA_EVD.1","Name":"Maintenance of Assurance - Evidence of maintenance process ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":19,"CC":"2.3","Scheme":"US","Abbr":"AMA_SIA.1","Name":"Maintenance of Assurance - Security Impact Analysis - Sampling of security impact analysis ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":75,"CC":"2.3","Scheme":"US","Abbr":"ATE_COV.1","Name":"Coverage - Evidence of coverage ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":76,"CC":"2.3","Scheme":"US","Abbr":"ATE_COV.2","Name":"Coverage - Analysis of coverage ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":77,"CC":"2.3","Scheme":"US","Abbr":"ATE_COV.3","Name":"Coverage - Rigorous analysis of coverage ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":78,"CC":"2.3","Scheme":"US","Abbr":"ATE_DPT.1","Name":"Depth - Testing: high-level design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":79,"CC":"2.3","Scheme":"US","Abbr":"ATE_DPT.2","Name":"Depth - Testing: low-level design ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":80,"CC":"2.3","Scheme":"US","Abbr":"ATE_DPT.3","Name":"Depth - Testing: Implementation representation ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":81,"CC":"2.3","Scheme":"US","Abbr":"ATE_FUN.1","Name":"Functional tests - Functional testing ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":82,"CC":"2.3","Scheme":"US","Abbr":"ATE_FUN.2","Name":"Functional tests - Ordered functional testing ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":61,"CC":"2.3","Scheme":"US","Abbr":"ATE_IND.1","Name":"Indpendent Testing - Independent testing, conformance ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":60,"CC":"2.3","Scheme":"US","Abbr":"ATE_IND.2","Name":"Independent Testing - Independent testing, sample ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":59,"CC":"2.3","Scheme":"US","Abbr":"ATE_IND.3","Name":"Independent Testing - Independent testing, complete ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":12,"CC":"2.3","Scheme":"US","Abbr":"AVA_CCA.1","Name":"Covert Channel Analysis - Covert channel analysis ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":13,"CC":"2.3","Scheme":"US","Abbr":"AVA_CCA.2","Name":"Covert Channel Analysis - Systematic covert channel analysis ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":14,"CC":"2.3","Scheme":"US","Abbr":"AVA_CCA.3","Name":"Covert Channel Analysis - Exhaustive covert channel analysis ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":92,"CC":"2.3","Scheme":"US","Abbr":"AVA_CCA_EXP.2","Name":"Systematic Cryptographic Module covert channel ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":15,"CC":"2.3","Scheme":"US","Abbr":"AVA_MSU.1","Name":"Misuse - Examination of guidance ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":16,"CC":"2.3","Scheme":"US","Abbr":"AVA_MSU.2","Name":"Misuse - Validation of analysis ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":17,"CC":"2.3","Scheme":"US","Abbr":"AVA_MSU.3","Name":"Misuse - Analysis and testing for insecure states ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":83,"CC":"2.3","Scheme":"US","Abbr":"AVA_SOF.1","Name":"Strength of TOE security functions - Strength of TOE security function evaluation ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":10,"CC":"2.3","Scheme":"US","Abbr":"AVA_VLA.1","Name":"Vulnerability Analysis - Developer vulnerability analysis ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":11,"CC":"2.3","Scheme":"US","Abbr":"AVA_VLA.2","Name":"Vulnerability Analysis - Independent vulnerability analysis ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":2,"CC":"2.3","Scheme":"US","Abbr":"AVA_VLA.3","Name":"Vulnerability Analysis - Moderately Resistant ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":3,"CC":"2.3","Scheme":"US","Abbr":"AVA_VLA.4","Name":"Vulnerability Analysis - Highly Resistant ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":174,"CC":"???","Scheme":"SE","Abbr":"ALC_TSU_EXT.1","Name":"ALC_TSU_EXT.1","Date":"2022-03-31","Creator":104,"EntryDate":"March, 31 2022 10:02:19 +0000","Editor":104,"ModDate":"March, 31 2022 10:02:19 +0000"},{"ID":157,"CC":"","Scheme":"","Abbr":"ALC_LLD.1","Name":"","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":155,"CC":"","Scheme":"","Abbr":"AMA_EVA.1","Name":" ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":156,"CC":"","Scheme":"","Abbr":"AMA_SIA.2","Name":" ","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":158,"CC":"","Scheme":"","Abbr":"ASE_OBJ.2","Name":"","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":159,"CC":"","Scheme":"","Abbr":"ASE_REQ.2","Name":"","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"},{"ID":160,"CC":"","Scheme":"","Abbr":"ASE_SPD.1","Name":"","Date":"","Creator":1,"EntryDate":"January, 01 2001 20:00:01 +0000","Editor":1,"ModDate":"January, 01 2001 20:00:01 +0000"}]
// console.log(augsList)
var countryObject = countryList.reduce(
(obj, item) => Object.assign(obj, { [item.Code]: item.Country }), {});
var categoriesObject = categoriesList.reduce(
(obj, item) => Object.assign(obj, { [item.ID]: item.Name }), {});
// console.log(categoriesObject)
for(let count = 0; count < ppList.length; count++)
{
ppList[count]['country_name'] = String(countryObject[String(ppList[count]['Scheme'])])
}
// console.log(ppList)
// console.log(maintList)
var searchParams = new URLSearchParams(window.location.search)
var archived = searchParams.get('archived')
let resultList = []
let version = -1
let country = -1
function createTable(tableData)
{
//clear table
let ppTableBody = document.getElementById("ppTableBody");
while (ppTableBody.hasChildNodes()) {
ppTableBody.removeChild(ppTableBody.firstChild);
}
//clear result number
let resultNumber = document.getElementById("resultNumber");
while (resultNumber.hasChildNodes()) {
resultNumber.removeChild(resultNumber.firstChild);
}
let lengthString = tableData.length.toString(); // Convert length to a string
let concatenatedString = "Number of results: "+lengthString;
resultNumber.textContent = concatenatedString
tableData.forEach(function(rowData)
{
let row = document.createElement('tr');
let rowArray = []
rowArray.push(rowData["Name"])
rowArray.push(rowData["Version"])
rowArray.push(rowData["eal_name"])
rowArray.push(formatTimestamp(rowData['Issue_Date']))
rowArray.push(rowData["country_name"])
rowArray.push(rowData["PDF_Cert"])
if (archived == 1) {
rowArray.push(formatTimestamp(rowData["Archived"]))
}
rowArray.push(rowData["Categories"])
var pdfCerts = []
var pdfCertNames = []
if (rowData["PDF_Cert"]) {
pdfCerts.push(rowData["PDF_Cert"])
pdfCertNames.push("Certification Report")
}
if (rowData["ID"]=="2019.0023" || rowData["ID"]=="2019.0024" || rowData["ID"]=="2019.0026") {
pdfCerts.push("PP-Config PSD-AO-KM-VI CR v1.0.pdf")
pdfCertNames.push("Certification Report for CFG PSD-AO-KM-VI V1.0")
}
if (rowData["ID"]=="2019.0024" || rowData["ID"]=="2019.0026") {
pdfCerts.push("PP-Config-PSD-KM-VI-CR-v1.0.pdf")
pdfCertNames.push("Certification Report for CFG_PSD-KM-VI_V1.0")
}
if (rowData["ID"]=="2019.0024") {
pdfCerts.push("PP-Config PSD-KM CR v1.0.pdf")
pdfCertNames.push("Certification Report for CFG_PSD-KM_V1.0")
}
if (rowData["ID"]=="2017.0015") {
pdfCerts.push("pp_md_v3.1-vr.pdf")
pdfCertNames.push("Certification Report for PP_MDF_V3.1")
pdfCerts.push("CFG_MDF-VPNC_V1.1_VR.pdf")
pdfCertNames.push("Certification Report for CFG_MDF-VPNC_V1.1")
}
else if (rowData["ID"]=="2019.0021") {
pdfCerts.push("CFG_MDM-MDM_Agent_V1.0_VR.pdf")
pdfCertNames.push("Certification Report for CFG_MDM-MDM_AGENT_V1.0")
pdfCerts.push("CFG_MDF-MDM_AGENT-%20VPNC_V1.0_VR.pdf")
pdfCertNames.push("Certification Report for CFG_MDM-MDM_AGENT-VPNC_V1.0")
}
else if (rowData["ID"]=="2019.0023" || rowData["ID"]=="2019.0024" || rowData["ID"]=="2019.0025" || rowData["ID"]=="2019.0026") {
pdfCerts.push("PP-Config-PSD-AO-KM-UA-VI-CR-v1.0.pdf")
pdfCertNames.push("Certification Report for CFG_PSD-AO-KM-UA-VI_V1.0")
}
else if (rowData["ID"]=="2017.0021") {
pdfCerts.push("mod_vpn_cli_v2.1-vr.pdf")
pdfCertNames.push("Certification Report for CFG_MDF-VPNC_V1.0")
pdfCerts.push("CFG_MDF-MDM_AGENT-%20VPNC_V1.0_VR.pdf")
pdfCertNames.push("Certification Report for CFG_MDM-MDM_AGENT-VPNC_V1.0")
pdfCerts.push("CFG_GPOS-VPNC_V1.0-VR.pdf")
pdfCertNames.push("Certification Report for CFG_GPOS-VPNC_V1.0")
}
else if (rowData["ID"]=="2021.0013") {
pdfCerts.push("CCCS-010 PPCR v1.0.pdf")
pdfCertNames.push("Certification Report for CFG_NDcPP-IPS-FW-VPNGW_V1.0")
}
else if (rowData["ID"]=="2021.0006") {
pdfCerts.push("CFG_NDcPP-VPNGW_V1.1_VR.pdf")
pdfCertNames.push("Certification Report for CFG_NDcPP-VPNGW_V1.1")
pdfCerts.push("CFG_NDcPP-FW-VPNGW_V1.1_VR.pdf")
pdfCertNames.push("Certification Report for CFG_NDcPP-FW-VPNGW_V1.1")
pdfCerts.push("CCCS-010 PPCR v1.0.pdf")
pdfCertNames.push("Certification Report for CFG_NDcPP-IPS-FW-VPNGW_V1.0")
pdfCerts.push("CFG_NDCPP-ESC_V1.0_VR.pdf")
pdfCertNames.push("Certification Report for CFG_NDcPP-ESC_V1.0")
}
else if (rowData["ID"]=="2019.0017") {
pdfCerts.push("cfg_app-fe_v1.0-vr.pdf")
pdfCertNames.push("Certification Report for CFG_APP-FE_V1.0")
}
else if (rowData["ID"]=="2020.0019") {
pdfCerts.push("CFG_NDCPP-ESC_V1.0_VR.pdf")
pdfCertNames.push("Certification Report for CFG_NDcPP-ESC_V1.0")
}
//TODO: dont hardcode filepath
//let filePath = window.location.origin + "/CCPortal/sandbox/files/ppfiles/";
let filePath = "https://" + window.location.hostname + "/nfs/ccpfiles/files/ppfiles/"
let imagePath = "/assets/images/flags/"
let num = 0
rowArray.forEach(function(cellData)
{
let cell = document.createElement('td');
let decodedText = decodeEntities(cellData);
if(num == 0)//name
{
// Create the link element
const ppLink = document.createElement('a');
ppLink.setAttribute('target', '_blank');
ppLink.href = filePath+String(rowData["PDF_PP"]) // Set the link URL
ppLink.textContent = decodedText; // Set the link text
//Create the Link Element
const sdLink = document.createElement('a');
sdLink.setAttribute('target', '_blank');
sdLink.href = filePath+String(rowData["PDF_SD"]);
sdLink.textContent = "Supporting Document"
// Create the link element
var maints = maintList.filter(maint => maint["PP_ID"] == rowData["ID"])
const maintLabel = document.createElement('div');
maintLabel.setAttribute("style", "border:2px ridge #fff;border-width:2px 0;padding:.5em 0;font-weight:bold;text-align:center");
maintLabel.textContent = "Maintenance Report(s)";
const ol = document.createElement('ol');
ol.setAttribute("style", "margin-top:-1em;margin-left:-1em");
maints.forEach(item => {
ol.appendChild(document.createElement('br'));
const li = document.createElement('li');
const date = document.createElement('span')
date.innerHTML = formatTimestamp(item.Date) + '&ndash;' + item.Name;
const maintLink = document.createElement('a');
maintLink.setAttribute('target', '_blank');
maintLink.href = filePath + item.PDF_Report;
maintLink.textContent = "Maintenance Report";
li.appendChild(date);
li.appendChild(document.createElement('br'));
li.appendChild(maintLink);
ol.appendChild(li);
})
cell.appendChild(ppLink);
cell.appendChild(document.createElement("br"));
if (rowData['PDF_SD'] != "") {
cell.appendChild(sdLink);
cell.appendChild(document.createElement("br"));
}
if (maints.length > 0) {
cell.appendChild(maintLabel);
cell.appendChild(document.createElement('br'));
cell.appendChild(ol);
}
}
else if (num == 2) //augs
{
cell.appendChild(document.createTextNode(decodedText));
cell.appendChild(document.createElement("br"))
var augsArray = rowData.Augs.split(",");
console.log(augsArray);
// var filteredAugs = augsList.filter(aug => augsArray.includes(String(aug.ID)))
augsList.forEach(aug => {
if (augsArray.includes(String(aug.ID))) {
cell.appendChild(document.createTextNode(aug.Abbr))
cell.appendChild(document.createElement("br"))
}
})
}
else if (num == 4) //Scheme
{
cell.style.textAlign = "center"
const schemeLink = document.createElement('a');
schemeLink.setAttribute('target', '_blank');
schemeLink.href = "/ccra/members/index.cfm#" + rowData.Scheme;
const schemeImg = document.createElement("img");
schemeImg.src = imagePath + rowData.Scheme.toLowerCase() + ".png";
schemeImg.setAttribute('alt', rowData.country_name);
schemeImg.setAttribute('title', rowData.country_name);
schemeLink.appendChild(schemeImg);
schemeLink.appendChild(document.createElement("br"));
schemeLink.appendChild(document.createTextNode(rowData.Scheme));
cell.appendChild(schemeLink);
}
else if (num == 5)//certficate
{
if(pdfCerts.length > 0)
{
pdfCerts.forEach((cert, idx) => {
// Create the link element
const certLink = document.createElement('a');
certLink.setAttribute('target', '_blank');
certLink.href = filePath + cert;
certLink.textContent = pdfCertNames[idx]; // Set the link text
cell.appendChild(certLink);
cell.appendChild(document.createElement("br"))
})
}
else {
const certLink = document.createElement('span');
certLink.textContent = "No*"; // Set the link text
cell.appendChild(certLink);
}
}
else if (archived == 1 && num == 7)
{
if (rowData['Categories'] != "") {
var categoryIds = rowData['Categories'].split(',');
console.log(categoryIds);
var categories = []
categoryIds.forEach(id => {
console.log(categoriesObject[id])
categories.push(categoriesObject[id])
});
cell.appendChild(document.createTextNode(categories.join(',')))
}
}
else if (archived != 1 && num == 6)
{
if (rowData['Categories'] != "") {
var categoryIds = rowData['Categories'].split(',');
var categories = []
categoryIds.forEach(id => {
categories.push(categoriesObject[id])
});
cell.appendChild(document.createTextNode(categories.join(',')))
}
}
else
{
cell.appendChild(document.createTextNode(decodedText));
}
row.appendChild(cell);
num++
});
if (rowData["Categories"] != "") {
ppTableBody.appendChild(row);
}
});
$('#ppTable2').trigger("update", [true])
//document.getElementById("ppTableBody").appendChild(ppTableBody);
}
function processList(country, keywords)
{
let resultList = []
let nothingSearched = false
resultList = ppList.filter( (obj) =>
{
let matchCountry = country == -1 || obj.country_name == country;
// let matchVersion =	version == -1 || obj.Version == version;
let matchKeywords = keywords === "" ||
Object.values(obj).some((value) =>
String(value).toLowerCase().includes(keywords.toLowerCase())
);
if (keywords == "" && country == -1) {
nothingSearched = true;
return true;
} else {
return matchKeywords && matchCountry;
}
});
// console.log(resultList);
populateDropdownOptions('#scheme', resultList, 'country_name', country);
// populateDropdownOptions('#version', resultList, 'Version', version);
if(nothingSearched)
{
createTable([]); // show no results in the search if nothing has been searched
}
else
{
createTable(resultList);
}
return resultList
}
function populateDropdownOptions(dropdownId, options, key, selectedValue) {
var dropdown = $(dropdownId);
var currentValue = dropdown.val(); // Get the current value of the dropdown
// Remove existing reset button, if any
dropdown.next('.reset-button').remove();
dropdown.empty();
var uniqueOptions = [...new Set(options.map((option) => option[key]))];
optionWording = ''
if(key == 'country_name')
{
optionWording = 'Countries'
}
if(key == 'Version')
{
optionWording = 'Versions'
}
dropdown.append($('<option></option>').val("-1").html("All " + optionWording)); // Add the default option
uniqueOptions.sort();
uniqueOptions.forEach(function(option) {
var isSelected = option === selectedValue ? 'selected' : '';
let optionName = option
if(option == "" && key == 'category_name')
{
optionName = "No Category"
}
dropdown.append($('<option ' + isSelected + '></option>').val(option).html(optionName));
});
dropdown.val(currentValue); // Set the dropdown value back to the current value
// Create reset button
var resetButton = $('<button type="button" class="reset-button">X</button>');
resetButton.click(function() {
dropdown.val("-1"); // Reset the dropdown to the default option
updateOptions()
});
// Append the reset button after the dropdown
dropdown.after(resetButton);
}
function updateOptions ()
{
country = $("#scheme").val()
// version = $("#version").val()
keywords = $("#keywords").val()
// console.log(country,version,keywords)
let filteredOptions = processList(country,keywords)
}
$("#scheme").change( function(){ updateOptions() });
$("#version").change( function(){ updateOptions() });
$('#keywords').on('keyup', function() { updateOptions() });
$(document).ready(function() { updateOptions() });
$('#resetAllButton').click(function() {
// Reset all filters and update options
//uncomment to also clear the keywords
$('#keywords').val('');
$('#scheme').val('-1');
// $('#version').val('-1');
updateOptions();
});
});
</script>
<div class="noprint" style="float:right;margin-top:-3.5em;margin-right:1em;white-space:nowrap">
<a href="./stats/index.cfm" title="View the Protection Profiles Statistics" class="button2">Statistics</a>
&nbsp;&nbsp;&nbsp;
<a href="pps.csv" title="Download the Protection Profiles List as a CSV file" class="button2">
<img src="/assets/images/icon_csv.gif" height="16" width="15" alt="" align="top"> Download CSV
</a>
&nbsp;&nbsp;&nbsp;
<a href="collaborativePP.cfm?cpp=1" title="View the Collaborative Protection Profiles List" class="button2">Collaborative Protection Profiles</a>
<a href="index.cfm?archived=1" title="View the Archived Protection Profiles List" class="button2">Archived Protection Profiles</a>
</div>
<table border="0" width="100%">
<tr>
<td>
</td>
<td>
<div class="noprint" style="font-size:100%; float:right;margin-top:-2.5em;margin-right:1em;white-space:nowrap">
&nbsp;&nbsp;&nbsp;
</div>
</td>
</tr>
</table>
<div class="msg_status">Protection Profiles List CSV file generated</div>
<br>
<div style="display: flex; align-items: center; padding-left:3%; padding-right:5%">
<strong style="margin-right: 10px;">Search:</strong>
<input style="flex-grow: 1;" type="text" id="keywords" name="keywords" placeholder="Search for Protection Profiles...">
</div>
<br/>
<style>
.selectBoxes {
width: 200px;
}
.select-container {
display: flex;
padding-left:3%;
padding-right:5%"
}
.select-container select {
margin-right: 0px;
}
table{
max-width: 1200px;
}
</style>
<div class = "select-container" >
<strong style="margin-right: 10px;">Filter by:</strong>
<br/>
<select class="selectBoxes" id="scheme" name="scheme" style="overflow:scroll" title="Select the publishing Scheme" >
<option value="-1">All Schemes</option>
<option value="AU" >
AU &ndash; Australia
</option>
<option value="CA" class="even" >
CA &ndash; Canada
</option>
<option value="DE" >
DE &ndash; Germany
</option>
<option value="ES" class="even" >
ES &ndash; Spain
</option>
<option value="FR" >
FR &ndash; France
</option>
<option value="IN" class="even" >
IN &ndash; India
</option>
<option value="IT" >
IT &ndash; Italy
</option>
<option value="JP" class="even" >
JP &ndash; Japan
</option>
<option value="KR" >
KR &ndash; Republic of Korea
</option>
<option value="MY" class="even" >
MY &ndash; Malaysia
</option>
<option value="NL" >
NL &ndash; Netherlands
</option>
<option value="NO" class="even" >
NO &ndash; Norway
</option>
<option value="PL" >
PL &ndash; Poland
</option>
<option value="QA" class="even" >
QA &ndash; Qatar
</option>
<option value="SE" >
SE &ndash; Sweden
</option>
<option value="SG" class="even" >
SG &ndash; Singapore
</option>
<option value="TR" >
TR &ndash; Turkey
</option>
<option value="US" class="even" >
US &ndash; United States
</option>
<option value="AT" >
AT &ndash; Austria
</option>
<option value="BE" class="even" >
BE &ndash; Belgium
</option>
<option value="CZ" >
CZ &ndash; Czech Republic
</option>
<option value="DK" class="even" >
DK &ndash; Denmark
</option>
<option value="ET" >
ET &ndash; Ethiopia
</option>
<option value="FI" class="even" >
FI &ndash; Finland
</option>
<option value="GR" >
GR &ndash; Greece
</option>
<option value="HU" class="even" >
HU &ndash; Hungary
</option>
<option value="ID" >
ID &ndash; Indonesia
</option>
<option value="IL" class="even" >
IL &ndash; Israel
</option>
<option value="JO" >
JO &ndash; Jordan
</option>
<option value="NZ" class="even" >
NZ &ndash; New Zealand
</option>
<option value="PK" >
PK &ndash; Pakistan
</option>
<option value="SK" class="even" >
SK &ndash; Slovakia
</option>
<option value="UK" >
UK &ndash; United Kingdom
</option>
</select>
</div>
<br/>
<div style="padding-left:3%; padding-right:5%">
<button type="button" id="resetAllButton"> Clear All Fields </button>
</div>
<br />
<strong>
<div id="resultNumber" style="padding-left:3%; padding-right:5%">
Number of results:
</div>
</strong>
<br /><br />
<table class="tablesorter" id="ppTable2" style="color:#fff;width:1100px;overflow:auto;margin-left: 1em;margin-top:-.5em">
<thead>
<tr><!-- zxcv class="title2" -->
<th id="col_1" class="text " style=";text-align:center;width:40%;max-width:40%">Protection Profile</th>
<th id="col_2" class="text " style=";text-align:center;width:8%;max-width:8%">Version</th>
<th id="col_3" class="text " style=";text-align:center;width:12%;max-width:12%">Assurance Level</th>
<th id="col_4" class="text " style=";text-align:center;width:8%;max-width:8%">Issued</th>
<th id="col_5" class="text " style=";text-align:center;width:8%;max-width:8%">Scheme</th>
<th id="col_6" class="text " style=";text-align:center;width:8%;max-width:8%">Certified</th>
<th id="col_7" class=" last_th" style=";text-align:center;width:0;max-width:0">Categories</th>
</tr>
</thead>
<!-- 2017.09.06 - Copied to CC Portal from NIAP site//KC -->
<!-- 2017.09.06 - Converted tabs to spaces//KC -->
<tbody id="ppTableBody" style="font-size:12px;">
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<h4 id="operations">
<a href="#" id="toggle">expand/collapse all categories</a>
</h4>
<style type="text/css">
.odd { background: #fff !important; }
.even{ background: #eef !important; }
</style>
<div id="white">

<!-- TABLE TO KEEP -->
<table class="tablesorter gridTable" id="tblAC"" style="width:97%;margin-left:1em;margin-top:-.5em;margin-bottom:1em;font-size:10pt;">
<thead>
<tr><!-- zxcv class="title2" -->
<th id="col_1" class="text " style=";text-align:center;width:56%;max-width:56%">Protection Profile</th>
<th id="col_2" class="text " style=";text-align:center;width:8%;max-width:8%">Version</th>
<th id="col_3" class="text " style=";text-align:center;width:12%;max-width:12%">Assurance Level</th>
<th id="col_4" class="text " style=";text-align:center;width:8%;max-width:8%">Issued</th>
<th id="col_5" class="text " style=";text-align:center;width:8%;max-width:8%">Scheme</th>
<th id="col_6" class="text last_th" style=";text-align:center;width:8%;max-width:8%">Certified</th>
</tr>
</thead>
<!-- 2017.09.06 - Copied to CC Portal from NIAP site//KC -->
<!-- 2017.09.06 - Converted tabs to spaces//KC -->
<style type="text/css">
table.tablesorter tbody td {
background-color: #fff;
}
table.tablesorter {
background-color: inherit;
}
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
border: inherit;
border-right: 1px solid #fff;
}
</style>
<caption style="font-weight:bold;font-size:larger">
<a name="AC" href="#AC" id="toggleAC" class="toggle">
<img src="/assets/images/plusicon.gif" border="0" height="11" width="11" class="toggle" style="margin-right:.5em"/>Access Control Devices and Systems &ndash; 7 Protection Profiles
</a>
</caption>
<tfoot></tfoot>
<tbody>
<tr class="">
<td>
<!--kc-sez---std-link-->
<a href="/nfs/ccpfiles/files/ppfiles/KECS-PP-0822-2017 Korean National PP for Single Sign On V1.0(eng).pdf" title="Protection Profile: KECS-PP-0822-2017 Korean National PP for Single Sign On V1.0(eng).pdf" target="_blank"><strong>Korean National Protection Profile for Single Sign On V1.0</strong></a><a name="2017.0019"></a>
<!-- Kluge 4 of 2019.06.18 -->
</td>
<td style="text-align:center">V1.0</td>
<td style="text-align:center;">
EAL1+
<br/>ATE_FUN.1
</td>
<td style="text-align:center">2017-08-18</td>
<td style="text-align:center"><img src="/assets/images/flags/kr.png" alt="KR &ndash; KR" title="KR &ndash; KR" height="32" width="32"/><br />KR</td>
<td style=text-align:center;">
<a href="/nfs/ccpfiles/files/ppfiles/KECS-CR-17-58 Korean National PP for Single Sign On V1.0(eng).pdf" target="_blank">Certification Report</a>
</td>
</tr>
</tbody>
</table>

<!-- TABLE TO KEEP -->
<table class="tablesorter gridTable" id="tblBD"" style="width:97%;margin-left:1em;margin-top:-.5em;margin-bottom:1em;font-size:10pt;">
<thead>
<tr><!-- zxcv class="title2" -->
<th id="col_1" class="text " style=";text-align:center;width:56%;max-width:56%">Protection Profile</th>
<th id="col_2" class="text " style=";text-align:center;width:8%;max-width:8%">Version</th>
<th id="col_3" class="text " style=";text-align:center;width:12%;max-width:12%">Assurance Level</th>
<th id="col_4" class="text " style=";text-align:center;width:8%;max-width:8%">Issued</th>
<th id="col_5" class="text " style=";text-align:center;width:8%;max-width:8%">Scheme</th>
<th id="col_6" class="text last_th" style=";text-align:center;width:8%;max-width:8%">Certified</th>
</tr>
</thead>
<!-- 2017.09.06 - Copied to CC Portal from NIAP site//KC -->
<!-- 2017.09.06 - Converted tabs to spaces//KC -->
<style type="text/css">
table.tablesorter tbody td {
background-color: #fff;
}
table.tablesorter {
background-color: inherit;
}
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
border: inherit;
border-right: 1px solid #fff;
}
</style>
<caption style="font-weight:bold;font-size:larger">
<a name="BD" href="#BD" id="toggleBD" class="toggle">
<img src="/assets/images/plusicon.gif" border="0" height="11" width="11" class="toggle" style="margin-right:.5em"/>Biometric Systems and Devices &ndash; 6 Protection Profiles
</a>
</caption>
<tfoot></tfoot>
<tbody>
<tr class="even">
<td>
<!--kc-sez---std-link-->
<a href="/nfs/ccpfiles/files/ppfiles/pp0062b_pdf.pdf" title="Protection Profile: pp0062b_pdf.pdf" target="_blank"><strong>Fingerprint Spoof Detection Protection Profile based on Organisational Security Policies &#x28;FSDPP_OSP&#x29;, Version 1.7</strong></a><a name="2010.0023"></a>
<!-- Kluge 4 of 2019.06.18 -->
</td>
<td style="text-align:center">1.7</td>
<td style="text-align:center;">
EAL2+
<br/>ALC_FLR.1
</td>
<td style="text-align:center">2010-02-25</td>
<td style="text-align:center"><img src="/assets/images/flags/de.png" alt="DE &ndash; DE" title="DE &ndash; DE" height="32" width="32"/><br />DE</td>
<td style=text-align:center;">
<a href="/nfs/ccpfiles/files/ppfiles/pp0062a_pdf.pdf" target="_blank">Certification Report</a>
</td>
</tr>
</tbody>
</table>

<!-- TABLE TO KEEP-->
<table class="tablesorter gridTable" id="tblOD"" style="width:97%;margin-left:1em;margin-top:-.5em;margin-bottom:1em;font-size:10pt;">
<thead>
<tr><!-- zxcv class="title2" -->
<th id="col_1" class="text " style=";text-align:center;width:56%;max-width:56%">Protection Profile</th>
<th id="col_2" class="text " style=";text-align:center;width:8%;max-width:8%">Version</th>
<th id="col_3" class="text " style=";text-align:center;width:12%;max-width:12%">Assurance Level</th>
<th id="col_4" class="text " style=";text-align:center;width:8%;max-width:8%">Issued</th>
<th id="col_5" class="text " style=";text-align:center;width:8%;max-width:8%">Scheme</th>
<th id="col_6" class="text last_th" style=";text-align:center;width:8%;max-width:8%">Certified</th>
</tr>
</thead>
<!-- 2017.09.06 - Copied to CC Portal from NIAP site//KC -->
<!-- 2017.09.06 - Converted tabs to spaces//KC -->
<style type="text/css">
table.tablesorter tbody td {
background-color: #fff;
}
table.tablesorter {
background-color: inherit;
}
table.tablesorter thead tr th, table.tablesorter tfoot tr th {
border: inherit;
border-right: 1px solid #fff;
}
</style>
<caption style="font-weight:bold;font-size:larger">
<a name="OD" href="#OD" id="toggleOD" class="toggle">
<img src="/assets/images/plusicon.gif" border="0" height="11" width="11" class="toggle" style="margin-right:.5em"/>Other Devices and Systems &ndash; 81 Protection Profiles
</a>
</caption>
<tfoot></tfoot>
<tbody>
<tr class="">
<td>
<!--kc-sez---std-link-->
<a href="/nfs/ccpfiles/files/ppfiles/HBYS_PP_07_09_2016_Updated.pdf" title="Protection Profile: HBYS_PP_07_09_2016_Updated.pdf" target="_blank"><strong>Protection Profile for Security Module of General-Purpose Health Informatics Software</strong></a><a name="2016.0007"></a>
<!-- Kluge 4 of 2019.06.18 -->
</td>
<td style="text-align:center">1.0</td>
<td style="text-align:center;">
EAL2
</td>
<td style="text-align:center">2016-09-20</td>
<td style="text-align:center"><img src="/assets/images/flags/tr.png" alt="TR &ndash; TR" title="TR &ndash; TR" height="32" width="32"/><br />TR</td>
<td style=text-align:center;">
<a href="/nfs/ccpfiles/files/ppfiles/HBYS_PP_CR.pdf" target="_blank">Certification Report</a>
</td>
</tr>
</table>

<!-- 2016.09.23 - Redirect cPP visitors to static.cfm UFN//CDF -->
<!-- 2016.09.28 - Temp change to allow auth IPs to view cPPs//KC -->
<!-- 2016.11.02 - Published changes; disabled redir in Wallaby �//KC -->
<!-- 2018.04.05 - LiverFluke0 changes re. cPPs//KC -->
<!-- 2018.05.18 - Eliminated "pseudo-directories" for the archived page//KC -->
<!-- 2019.06.18 - Kluged in another document: this one for 2017.0021 -->
<div id="footer" class="copy">
<p>&nbsp;</p>
</div>
<script type="text/javascript" src="/assets/js/searchhi.js"></script>
<!-- jstablesorter sppt -->
<!-- zxcv - Should be w/in JSTableSorter -->
<script type="text/javascript">
$(document).ready(function() {
$.tablesorter.defaults.widgets = ['zebra']; // add stripes
$.tablesorter.defaults.sortList = [[3,1]]; // default sort column(s)
$('.tablesorter').tablesorter({}); // enable sort & disable sort on specific column(s)
});
</script>
<!-- END jstablesorter sppt -->
<!--[if lt IE 8]>
<script src="/assets/js/ie7-js/IE8.js" type="text/javascript"></script>
<![endif]-->
<!-- Google Analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1394658-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<!-- 2017.09.07 - Added jstablesorter sppt//KC -->
</div>
</div>
</body>
</html>