-
Notifications
You must be signed in to change notification settings - Fork 765
/
中国计算机学会推荐际术议和期刊目录.m
3306 lines (3162 loc) · 63.4 KB
/
中国计算机学会推荐际术议和期刊目录.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
一、 A类
序号 刊物简称 刊物全称 出版社 网址
[1 TOCS ACM Transactions on Computer Systems ACM ](http://dblp.uni-trier.de/db/journals/tocs/)
[2 TOS ACM Transactions on Storage ACM ](http://dblp.uni-trier.de/db/journals/tos/)
[3 TCAD IEEE Transactions on Computer-Aided Design of Integrated Circuits And System IEEE ](http://dblp.uni-trier.de/db/journals/tcad/)
[4 TC IEEE Transactions on Computers IEEE](http://dblp.uni-trier.de/db/journals/tc/index.html)
[5 TPDS IEEE Transactions on Parallel and Distributed Systems IEEE](http://dblp.uni-trier.de/db/journals/tpds/)
二、 B类
序号
刊物简称 刊物简称
刊物全称 刊物全称
出版社
网址
1
TACO
ACM Transactions on Architecture and Code Optimization
ACM
http://dblp.uni-trier.de/db/journals/taco/
2
TAAS
ACM Transactions on Autonomous and Adaptive Systems
ACM
http://dblp.uni-trier.de/db/journals/taas/
3
TODAES
ACM Transactions on Design Automation of Electronic Systems
ACM
http://dblp.uni-trier.de/db/journals/todaes/
4
TECS
ACM Transactions on Embedded Computing Systems
ACM
http://dblp.uni-trier.de/db/journals/tecs/
5
TRETS
ACM Transactions on Reconfigurable Technology and Systems
ACM
http://dblp.uni-trier.de/db/journals/trets/
6
TVLSI
IEEE Transactions on Very Large Scale Integration (VLSI) Systems
IEEE
http://dblp.uni-trier.de/db/journals/tvlsi/
7
JPDC
Journal of Parallel and Distributed Computing
Elsevier
http://dblp.uni-trier.de/db/journals/jpdc/
8
JSA
Journal of Systems Architecture: Embedded Software Design
Elsevier
http://dblp.uni-trier.de/db/journals/jsa/
9
PARCO
Parallel Computing
Elsevier
http://dblp.uni-trier.de/db/conf/parco/
10
Performance Evaluation: An International Journal
Elsevier
http://www.journals.elsevier.com/performance-evaluation/
15
SIGMETRICS
International Conference on Measurement and Modeling of Computer Systems
ACM
http://dblp.uni-trier.de/db/conf/sigmetrics/
16
PACT
International Conference on Parallel Architectures and Compilation Techniques
IEEE/ACM
http://dblp.uni-trier.de/db/conf/IEEEpact/
17
ICPP
International Conference on Parallel Processing
http://dblp.uni-trier.de/db/conf/icpp/
18
ICS
International Conference on Supercomputing
ACM
http://dblp.uni-trier.de/db/conf/ics/
19
VEE
International Conference on Virtual Execution Environments
ACM
http://dblp.uni-trier.de/db/conf/vee/
20
IPDPS
International Parallel & Distributed Processing Symposium
IEEE
http://dblp.uni-trier.de/db/conf/ipps/
21
Performance
International Symposium on Computer Performance Modeling, Measurements and Evaluation
ACM
http://dblp.uni-trier.de/db/conf/performance/
22
HPDC
International Symposium on High Performance Distributed Computing
IEEE
http://dblp.uni-trier.de/db/conf/hpdc/
23
ITC
International Test Conference
IEEE
http://dblp.uni-trier.de/db/conf/itc/
24
LISA
Large Installation System Administration Conference
USENIX
http://dblp.uni-trier.de/db/conf/lisa/
25
MSST
Mass Storage Systems and Technologies
IEEE
http://dblp.uni-trier.de/db/conf/mss/
26
RTAS
Real-Time and Embedded Technology and Applications Symposium
IEEE
http://dblp.uni-trier.de/db/conf/rtas/
三、 C类
序号 会议简称 会议全称 出版社 网址
1
CF
ACM International Conference on Computing Frontiers
ACM
http://dblp.uni-trier.de/db/conf/cf
2
SYSTOR
ACM International Systems and Storage Conference
ACM
http://dblp.uni-trier.de/db/conf/systor/index.html
3
NOCS
ACM/IEEE International Symposium on Networks-on-Chip
ACM/IEEE
http://dblp.uni-trier.de/db/conf/nocs
4
ASAP
Application-Specific Systems, Architectures, and Processors
IEEE
http://dblp.uni-trier.de/db/conf/asap
5
ASP-DAC
Asia and South Pacific Design Automation Conference
ACM/IEEE
http://dblp.uni-trier.de/db/conf/aspdac
6
Euro-Par
European Conference on Parallel and Distributed Computing
Springer
http://dblp.uni-trier.de/db/conf/europar/
7
ETS
European Test Symposium
IEEE
http://dblp.uni-trier.de/db/conf/ets/
8
FPL
Field Programmable Logic and Applications
IEEE
http://dblp.uni-trier.de/db/conf/fpl/
9
FCCM
Field-Programmable Custom Computing Machines
IEEE
http://dblp.uni-trier.de/db/conf/fccm/
10
GLSVLSI
Great Lakes Symposium on VLSI
ACM/IEEE
http://dblp.uni-trier.de/db/conf/glvlsi/
11
ATS
IEEE Asian Test Symposium
IEEE
http://dblp.uni-trier.de/db/conf/ats/
12
HPCC
IEEE International Conference on High Performance Computing and Communications
IEEE
http://dblp.uni-trier.de/db/conf/hpcc/
13
HiPC
IEEE International Conference on High Performance Computing, Data and Analytics
IEEE/ ACM
http://dblp.uni-trier.de/db/conf/hipc/index.html
14
MASCOTS
IEEE International Symposium on Modeling, Analysis, and Simulation of Computer and Telecommunication Systems
IEEE
http://dblp.uni-trier.de/db/conf/mascots/
15
ISPA
IEEE International Symposium on Parallel and Distributed Processing with Applications
IEEE
http://dblp.uni-trier.de/db/conf/ispa/
16
CCGRID
IEEE/ACM International Symposium on Cluster, Cloud and Grid Computing
ACM/IEEE
http://dblp.uni-trier.de/db/conf/ccgrid/
17
NPC
IFIP International Conference on Network and Parallel Computing
Springer
http://dblp.uni-trier.de/db/conf/npc/
18
ICA3PP
International Conference on Algorithms and Architectures for Parallel Processing
IEEE
http://dblp.uni-trier.de/db/conf/ica3pp/
19
CASES
International Conference on Compilers, Architectures, and Synthesis for Embedded Systems
ACM
http://dblp.uni-trier.de/db/conf/cases/index.html
20
FPT
International Conference on Field-Programmable Technology
IEEE
http://dblp.uni-trier.de/db/conf/fpt/
21
ICPADS
International Conference on Parallel and Distributed Systems
IEEE
http://dblp.uni-trier.de/db/conf/icpads/
22
ISCAS
International Symposium on Circuits and Systems
IEEE
http://dblp.uni-trier.de/db/conf/iscas/
23
ISLPED
International Symposium on Low Power Electronics and Design
ACM/IEEE
http://dblp.uni-trier.de/db/conf/islped/
24
ISPD
International Symposium on Physical Design
ACM
http://dblp.uni-trier.de/db/conf/ispd/
25
HotI
Symposium on High-Performance Interconnects
IEEE
http://dblp.uni-trier.de/db/conf/hoti/
26
VTS
VLSI Test Symposium
IEEE
http://dblp.uni-trier.de/db/conf/vts/
中国计算机学会推荐际术
一、 A类
序号
刊物简称
刊物全称
出版社
网址
1
JSAC
IEEE Journal of Selected Areas in Communications
IEEE
http://dblp.uni-trier.de/db/journals/jsac/
2
TMC
IEEE Transactions on Mobile Computing
IEEE
http://dblp.uni-trier.de/db/journals/tmc/
3
TON
IEEE/ACM Transactions on Networking
IEEE/ACM
http://dblp.uni-trier.de/db/journals/ton/
二、 B类
序号
刊物简称
刊物全称
出版社
网址
1
TOIT
ACM Transactions on Internet Technology
ACM
http://dblp.uni-trier.de/db/journals/toit/
2
TOMCCAP
ACM Transactions on Multimedia Computing, Communications and Applications
ACM
http://dblp.uni-trier.de/db/journals/tomccap/
3
TOSN
ACM Transactions on Sensor Networks
ACM
http://dblp.uni-trier.de/db/journals/tosn/
4
CN
Computer Networks
Elsevier
http://dblp.uni-trier.de/db/journals/cn/
5
TCOM
IEEE Transactions on Communications
IEEE
http://dblp.uni-trier.de/db/journals/tcom/
6
TWC
IEEE Transactions on Wireless Communications
IEEE
http://dblp.uni-trier.de/db/journals/twc/
三、 C类
序号
刊物简称
刊物全称
出版社
网址
1
Ad Hoc Networks
Elsevier
http://dblp.uni-trier.de/db/journals/adhoc/
2
CC
Computer Communications
Elsevier
http://dblp.uni-trier.de/db/journals/comcom/
3
TNSM
IEEE Transactions on Network and Service Management
IEEE
http://dblp.uni-trier.de/db/journals/tnsm/
4
IET Communications
IET
http://dblp.uni-trier.de/db/journals/iet-com/
5
JNCA
Journal of Network and Computer Applications
Elsevier
http://dblp.uni-trier.de/db/journals/jnca/
6
MONET
Mobile Networks & Applications
Springer
http://dblp.uni-trier.de/db/journals/monet/
7
Networks
Wiley
http://dblp.uni-trier.de/db/journals/networks/
8
PPNA
Peer-to-Peer Networking and Applications
Springer
http://dblp.uni-trier.de/db/journals/ppna/
9
WCMC
Wireless Communications & Mobile Computing
Wiley.
http://dblp.uni-trier.de/db/journals/wicomm/
10
Wireless Networks
Springer
http://dblp.uni-trier.de/db/journals/winet/
一、 A类
序号
会议简称
会议全称
出版社
网址
1
SIGCOMM
ACM International Conference on Applications, Technologies, Architectures, and Protocols for Computer Communication
ACM
http://dblp.uni-trier.de/db/conf/sigcomm/index.html
2
MobiCom
ACM International Conference on Mobile Computing and Networking
ACM
http://dblp.uni-trier.de/db/conf/mobicom/
3
INFOCOM
IEEE International Conference on Computer Communications
IEEE
http://dblp.uni-trier.de/db/conf/infocom/
4
NSDI
Symposium on Network System Design and Implementation
USENIX
http://dblp.uni-trier.de/db/conf/nsdi/
二、 B类
序号
会议简称
会议全称
出版社
网址
1
SenSys
ACM Conference on Embedded Networked Sensor Systems
ACM
http://dblp.uni-trier.de/db/conf/sensys/
2
CoNEXT
ACM International Conference on Emerging Networking Experiments and Technologies
ACM
http://dblp.uni-trier.de/db/conf/conext/
3
SECON
IEEE Communications Society Conference on Sensor and Ad Hoc Communications and Networks
IEEE
http://dblp.uni-trier.de/db/conf/secon/
4
IPSN
International Conference on Information Processing in Sensor Networks
IEEE/ACM
http://dblp.uni-trier.de/db/conf/ipsn/
5
MobiSys
International Conference on Mobile Systems, Applications, and Services
ACM
http://dblp.uni-trier.de/db/conf/mobisys/
6
ICNP
International Conference on Network Protocols
IEEE
http://dblp.uni-trier.de/db/conf/icnp/
7
MobiHoc
International Symposium on Mobile Ad Hoc Networking and Computing
ACM/IEEE
http://dblp.uni-trier.de/db/conf/mobihoc/
8
NOSSDAV
International Workshop on Network and Operating System Support for Digital Audio and Video
ACM
http://dblp.uni-trier.de/db/conf/nossdav/
9
IWQoS
International Workshop on Quality of Service
IEEE
http://dblp.uni-trier.de/db/conf/iwqos/
10
IMC
Internet Measurement Conference
ACM/USENIX
http://dblp.uni-trier.de/db/conf/imc/
三、 C类
序号
会议简称
会议全称
出版社
网址
1
ANCS
Architectures for Networking and Communications Systems
ACM/IEEE
http://dblp.uni-trier.de/db/conf/ancs/
2
APNOMS
Asia-Pacific Network Operations and Management Symposium
IFIP/IEEE
http://dblp.uni-trier.de/db/conf/apnoms/
3
FORTE
Formal Techniques for Networked and Distributed Systems
Springer
http://dblp.uni-trier.de/db/conf/forte/
4
LCN
IEEE Conference on Local Computer Networks
IEEE
http://dblp.uni-trier.de/db/conf/lcn/
5
GLOBECOM
IEEE Global Communications Conference
IEEE
http://dblp.uni-trier.de/db/conf/globecom/
6
ICC
IEEE International Conference on Communications
IEEE
http://dblp.uni-trier.de/db/conf/icc/
7
ICCCN
IEEE International Conference on Computer Communications and Networks
IEEE
http://dblp.uni-trier.de/db/conf/icccn/
8
MASS
IEEE International Conference on Mobile Ad-hoc and Sensor Systems
IEEE
http://dblp.uni-trier.de/db/conf/mass/index.html
9
P2P
IEEE International Conference on Peer-to-Peer Computing
IEEE
http://dblp.uni-trier.de/db/conf/p2p/
10
IPCCC
IEEE International Performance Computing and Communications Conference
IEEE
http://dblp.uni-trier.de/db/conf/ipccc/
11
WoWMoM
IEEE International Symposium on a World of Wireless, Mobile and Multimedia Networks
IEEE
http://dblp.uni-trier.de/db/conf/wowmom/
12
ISCC
IEEE Symposium on Computers and Communications
IEEE
http://dblp.uni-trier.de/db/conf/iscc/
13
WCNC
IEEE Wireless Communications & Networking Conference
IEEE
http://dblp.uni-trier.de/db/conf/wcnc/
14
Networking
IFIP International Conferences on Networking
IFIP
http://dblp.uni-trier.de/db/conf/networking/index.html
15
IM
IFIP/IEEE International Symposium on Integrated Network Management
IFIP/IEEE
http://dblp.uni-trier.de/db/conf/im/index.html
16
MSN
International Conference on Mobile Ad-hoc and Sensor Networks
IEEE
https://dblp.uni-trier.de/db/conf/msn/
17
MSWiM
International Conference on Modeling, Analysis and Simulation of Wireless and Mobile Systems
ACM
http://dblp.uni-trier.de/db/conf/mswim/
18
WASA
International Conference on Wireless Algorithms, Systems, and Applications
Springer
http://dblp.uni-trier.de/db/conf/wasa/
19
HotNets
The Workshop on Hot Topics in Networks
ACM
http://dblp.uni-trier.de/db/conf/hotnets/
(网络与信息安全)
一、 A类
序号
刊物简称
刊物全称
出版社
网址
1
TDSC
IEEE Transactions on Dependable and Secure Computing
IEEE
http://dblp.uni-trier.de/db/journals/tdsc/
2
TIFS
IEEE Transactions on Information Forensics and Security
IEEE
http://dblp.uni-trier.de/db/journals/tifs/
3
Journal of Cryptology
Springer
http://dblp.uni-trier.de/db/journals/joc/
二、 B类
序号
刊物简称
刊物全称
出版社
网址
1
TOPS
ACM Transactions on Privacy and Security
ACM
https://tops.acm.org/
2
Computers & Security
Elsevier
http://dblp.uni-trier.de/db/journals/compsec/
3
Designs, Codes and Cryptography
Springer
http://dblp.uni-trier.de/db/journals/dcc/
4
JCS
Journal of Computer Security
IOS Press
http://dblp.uni-trier.de/db/journals/jcs/
三、 C类
序号
刊物简称
刊物全称
出版社
网址
1
CLSR
Computer Law and Security Review
Elsevier
http://www.journals.elsevier.com/computer-law-and-security-review/
2
EURASIP Journal on Information Security
Springer
http://dblp.uni-trier.de/db/journals/ejisec/
3
IET Information Security
IET
http://dblp.uni-trier.de/db/journals/iet-ifs/
4
IMCS
Information Management & Computer Security
Emerald
http://dblp.uni-trier.de/db/journals/imcs/
5
IJICS
International Journal of Information and Computer Security
Inderscience
http://dblp.uni-trier.de/db/journals/ijics/
6
IJISP
International Journal of Information Security and Privacy
Idea Group Inc
http://dblp.uni-trier.de/db/journals/ijisp/
7
JISA
Journal of Information Security and Application
Elsevier
https://dblp.uni-trier.de/db/journals/istr/
8
SCN
Security and Communication Networks
Wiley
http://dblp.uni-trier.de/db/journals/scn/
一、 A类
序号
会议简称
会议全称
出版社
网址
1
CCS
ACM Conference on Computer and Communications Security
ACM
http://dblp.uni-trier.de/db/conf/ccs/
2
EUROCRYPT
European Cryptology Conference
Springer
http://dblp.uni-trier.de/db/conf/eurocrypt/
3
S&P
IEEE Symposium on Security and Privacy
IEEE
http://dblp.uni-trier.de/db/conf/sp/
4
CRYPTO
International Cryptology Conference
Springer
http://dblp.uni-trier.de/db/conf/crypto/
5
USENIX Security
Usenix Security Symposium
USENIX Association
http://dblp.uni-trier.de/db/conf/uss/
二、 B类
序号
会议简称
会议全称
出版社
网址
1
ACSAC
Annual Computer Security Applications Conference
IEEE
http://dblp.uni-trier.de/db/conf/acsac/
2
ASIACRYPT
Annual International Conference on the Theory and Application of Cryptology and Information Security
Springer
http://dblp.uni-trier.de/db/conf/asiacrypt/
3
ESORICS
European Symposium on Research in Computer Security
Springer
http://dblp.uni-trier.de/db/conf/esorics/
4
FSE
Fast Software Encryption
Springer
http://dblp.uni-trier.de/db/conf/fse/
5
CSFW
IEEE Computer Security Foundations Workshop
IEEE
http://dblp.uni-trier.de/db/conf/csfw/
6
SRDS
IEEE International Symposium on Reliable Distributed Systems
IEEE
http://dblp.uni-trier.de/db/conf/srds/
7
CHES
International Conference on Cryptographic Hardware and Embedded Systems
Springer
http://dblp.uni-trier.de/db/conf/ches/
8
DSN
International Conference on Dependable Systems and Networks
IEEE/IFIP
http://dblp.uni-trier.de/db/conf/dsn/
9
RAID
International Symposium on Recent Advances in Intrusion Detection
Springer
http://dblp.uni-trier.de/db/conf/raid/
10
PKC
International Workshop on Practice and Theory in Public Key Cryptography
Springer
http://dblp.uni-trier.de/db/conf/pkc/
11
NDSS
ISOC Network and Distributed System Security Symposium
ISOC
http://dblp.uni-trier.de/db/conf/ndss/
12
TCC
Theory of Cryptography Conference
Springer
http://dblp.uni-trier.de/db/conf/tcc/
三、 C类
序号
会议简称
会议全称
出版社
网址
1
WiSec
ACM Conference on Security and Privacy in Wireless and Mobile Networks
ACM
http://dblp.uni-trier.de/db/conf/wisec/
2
SACMAT
ACM Symposium on Access Control Models and Technologies
ACM
http://dblp.uni-trier.de/db/conf/sacmat/
3
DRM
ACM Workshop on Digital Rights Management
ACM
http://dblp.uni-trier.de/db/conf/drm/
4
IH&MMSec
ACM Workshop on Information Hiding and Multimedia Security
ACM
http://dblp.uni-trier.de/db/conf/ih/
5
ACNS
Applied Cryptography and Network Security
Springer
http://dblp.uni-trier.de/db/conf/acns/
6
AsiaCCS
Asia Conference on Computer and Communications Security
ACM
http://dblp.uni-trier.de/db/conf/ccs/
7
ACISP
Australasia Conference on Information Security and Privacy
Springer
http://dblp.uni-trier.de/db/conf/acisp/
8
CT-RSA
Cryptographer's Track at RSA Conference
Springer
http://dblp.uni-trier.de/db/conf/ctrsa/
9
DIMVA
Detection of Intrusions and Malware & Vulnerability Assessment
http://dblp.uni-trier.de/db/conf/dimva/
10
DFRWS
Digital Forensic Research Workshop
Elsevier
http://dblp.uni-trier.de/db/conf/dfrws/
11
FC
Financial Cryptography and Data Security
Springer
http://dblp.uni-trier.de/db/conf/fc/
12
TrustCom
IEEE International Conference on Trust, Security and Privacy in Computing and Communications
IEEE
http://dblp.uni-trier.de/db/conf/trustcom/
13
SEC
IFIP International Information Security Conference
Springer
http://dblp.uni-trier.de/db/conf/sec/
14
IFIP WG 11.9
IFIP WG 11.9 International Conference on Digital Forensics
Springer
*http://www.ifip119.org/Conferences/
15
ISC
Information Security Conference
Springer
http://dblp.uni-trier.de/db/conf/isw/
16
ICDF2C
International Conference on Digital Forensics & Cyber Crime
Springer
http://dblp.uni-trier.de/db/conf/icdf2c/
17
ICICS
International Conference on Information and Communications Security
Springer
http://dblp.uni-trier.de/db/conf/icics/
18
SecureComm
International Conference on Security and Privacy in Communication Networks
ACM
http://dblp.uni-trier.de/db/conf/securecomm/
19
NSPW
New Security Paradigms Workshop
ACM
http://dblp.uni-trier.de/db/conf/nspw/
20
PAM
Passive and Active Measurement Conference
Springer
http://dblp.uni-trier.de/db/conf/pam/
21
PETS
Privacy Enhancing Technologies Symposium
Springer
http://dblp.uni-trier.de/db/conf/pet/
22
SAC
Selected Areas in Cryptography
Springer
http://dblp.uni-trier.de/db/conf/sacrypt/
23
SOUPS
Symposium On Usable Privacy and Security
USENIX
http://dblp.uni-trier.de/db/conf/soups/
24
HotSec
USENIX Workshop on Hot Topics in Security
USENIX
http://www.usenix.org/events/
## (软件工程 系统软件 程序设计语言)
一、 A类
序号
刊物简称
刊物全称
出版社
网址
1
TOPLAS
ACM Transactions on Programming Languages & Systems
ACM
http://dblp.uni-trier.de/db/journals/toplas/
2
TOSEM
ACM Transactions on Software Engineering and Methodology
ACM
http://dblp.uni-trier.de/db/journals/tosem/
3
TSE
IEEE Transactions on Software Engineering
IEEE
http://dblp.uni-trier.de/db/journals/tse/
二、 B类
序号
刊物简称
刊物全称
出版社
网址
1
ASE
Automated Software Engineering
Springer
http://dblp.uni-trier.de/db/journals/ase/
2
ESE
Empirical Software Engineering
Springer
http://dblp.uni-trier.de/db/journals/ese/
3
TSC
IEEE Transactions on Service Computing
IEEE
http://dblp.uni-trier.de/db/journals/tsc/
4
IETS
IET Software
IET
https://dblp.uni-trier.de/db/journals/iet-sen/
5
IST
Information and Software Technology
Elsevier
http://dblp.uni-trier.de/db/journals/infsof/index.html
6
JFP
Journal of Functional Programming
Cambridge University Press
http://dblp.uni-trier.de/db/journals/jfp/
7
Journal of Software: Evolution and Process
Wiley
http://dblp.uni-trier.de/db/journals/smr/
8
JSS
Journal of Systems and Software
Elsevier
http://dblp.uni-trier.de/db/journals/jss/
9
RE
Requirements Engineering
Springer
http://dblp.uni-trier.de/db/journals/re/