forked from github/codeql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKnownAlgorithmConstants.qll
More file actions
2971 lines (2947 loc) · 102 KB
/
KnownAlgorithmConstants.qll
File metadata and controls
2971 lines (2947 loc) · 102 KB
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
import cpp
private import experimental.quantum.OpenSSL.LibraryDetector
predicate resolveAlgorithmFromExpr(Expr e, string normalizedName, string algType) {
resolveAlgorithmFromCall(e, normalizedName, algType)
or
resolveAlgorithmFromLiteral(e, normalizedName, algType)
}
class KnownOpenSSLAlgorithmConstant extends Expr {
KnownOpenSSLAlgorithmConstant() { resolveAlgorithmFromExpr(this, _, _) }
string getNormalizedName() { resolveAlgorithmFromExpr(this, result, _) }
string getAlgType() { resolveAlgorithmFromExpr(this, _, result) }
}
class KnownOpenSSLCipherAlgorithmConstant extends KnownOpenSSLAlgorithmConstant {
string algType;
KnownOpenSSLCipherAlgorithmConstant() {
resolveAlgorithmFromExpr(this, _, algType) and
algType.toLowerCase().matches("%encryption")
}
int getExplicitKeySize() {
exists(string name |
name = this.getNormalizedName() and
resolveAlgorithmFromExpr(this, name, algType) and
result = name.regexpCapture(".*-(\\d*)", 1).toInt()
)
}
}
class KnownOpenSSLPaddingAlgorithmConstant extends KnownOpenSSLAlgorithmConstant {
string algType;
KnownOpenSSLPaddingAlgorithmConstant() {
resolveAlgorithmFromExpr(this, _, algType) and
algType.toLowerCase().matches("%padding")
}
}
class KnownOpenSSLBlockModeAlgorithmConstant extends KnownOpenSSLAlgorithmConstant {
string algType;
KnownOpenSSLBlockModeAlgorithmConstant() {
resolveAlgorithmFromExpr(this, _, algType) and
algType.toLowerCase().matches("%block_mode")
}
}
class KnownOpenSSLHashAlgorithmConstant extends KnownOpenSSLAlgorithmConstant {
string algType;
KnownOpenSSLHashAlgorithmConstant() {
resolveAlgorithmFromExpr(this, _, algType) and
algType.toLowerCase().matches("%hash")
}
int getExplicitDigestLength() {
exists(string name |
name = this.getNormalizedName() and
resolveAlgorithmFromExpr(this, name, "HASH") and
result = name.regexpCapture(".*-(\\d*)$", 1).toInt()
)
}
}
class KnownOpenSSLEllipticCurveAlgorithmConstant extends KnownOpenSSLAlgorithmConstant {
KnownOpenSSLEllipticCurveAlgorithmConstant() {
exists(string algType |
resolveAlgorithmFromExpr(this, _, algType) and
algType.toLowerCase().matches("elliptic_curve")
)
}
}
/**
* Resolves a call to a 'direct algorithm getter', e.g., EVP_MD5()
* This approach to fetching algorithms was used in OpenSSL 1.0.2.
* The strategy for resolving these calls is to parse the target name
* and resolve the name as though it were a known literal.
* There are a few exceptions where the name doesn't directly match the
* known literal set. If that occurs, users must add the name to the
* set of aliases. E.g., EVP_dss() and EVP_dss1() needed such mappings
* alias = "dss" and target = "dsa"
* or
* alias = "dss1" and target = "dsaWithSHA1"
*/
predicate resolveAlgorithmFromCall(Call c, string normalized, string algType) {
isPossibleOpenSSLFunction(c.getTarget()) and
exists(string name, string parsedTargetName |
parsedTargetName =
c.getTarget().getName().replaceAll("EVP_", "").toLowerCase().replaceAll("_", "-") and
name = resolveAlgorithmAlias(parsedTargetName) and
knownOpenSSLAlgorithmLiteral(name, _, normalized, algType)
)
}
/**
* Resolves literal `e` to a known algorithm name, nid, normalized name, and algType
* if `e` resolves to a known algorithm.
* If this predicate does not hold, then `e` can be interpreted as being of `UNKNOWN` type.
*/
predicate resolveAlgorithmFromLiteral(Literal e, string normalized, string algType) {
exists(int nid |
nid = getPossibleNidFromLiteral(e) and knownOpenSSLAlgorithmLiteral(_, nid, normalized, algType)
)
or
exists(string name |
name = resolveAlgorithmAlias(e.getValue()) and
knownOpenSSLAlgorithmLiteral(name, _, normalized, algType)
)
}
bindingset[name]
string resolveAlgorithmAlias(string name) {
exists(string lower | lower = name.toLowerCase() |
// The result is an alias algorithm name if known
result = getAlgorithmAlias(lower)
or
// or the name is itself a known algorithm
knownOpenSSLAlgorithmLiteral(lower, _, _, _) and result = lower
)
}
private int getPossibleNidFromLiteral(Literal e) {
result = e.getValue().toInt() and
not e instanceof CharLiteral and
not e instanceof StringLiteral and
// ASSUMPTION, no negative numbers are allowed
// RATIONALE: this is a performance improvement to avoid having to trace every number
not exists(UnaryMinusExpr u | u.getOperand() = e) and
// OPENSSL has a special macro for getting every line, ignore it
not exists(MacroInvocation mi | mi.getExpr() = e and mi.getMacroName() = "OPENSSL_LINE") and
// Filter out cases where an int is assigned into a pointer, e.g., char* x = NULL;
not exists(Assignment a |
a.getRValue() = e and a.getLValue().getType().getUnspecifiedType() instanceof PointerType
) and
not exists(Initializer i |
i.getExpr() = e and
i.getDeclaration().getADeclarationEntry().getUnspecifiedType() instanceof PointerType
) and
// Filter out cases where an int is returned into a pointer, e.g., return NULL;
not exists(ReturnStmt r |
r.getExpr() = e and
r.getEnclosingFunction().getType().getUnspecifiedType() instanceof PointerType
)
}
string getAlgorithmAlias(string alias) {
customAliases(result, alias)
or
defaultAliases(result, alias)
}
/**
* Finds aliases of known alagorithms defined by users (through obj_name_add and various macros pointing to this function)
*
* The `target` and `alias` are converted to lowercase to be of a standard form.
*/
predicate customAliases(string target, string alias) {
exists(Call c | c.getTarget().getName().toLowerCase() = "obj_name_add" |
target = c.getArgument(2).getValue().toLowerCase() and
alias = c.getArgument(0).getValue().toLowerCase()
)
}
/**
* A hard-coded mapping of known algorithm aliases in OpenSSL.
* This was derived by applying the same kind of logic foun din `customAliases` to the
* OpenSSL code base directly.
*
* The `target` and `alias` are converted to lowercase to be of a standard form.
*/
predicate defaultAliases(string target, string alias) {
alias = "aes128" and target = "aes-128-cbc"
or
alias = "aes192" and target = "aes-192-cbc"
or
alias = "aes256" and target = "aes-256-cbc"
or
alias = "aes128-wrap" and target = "id-aes128-wrap"
or
alias = "aes192-wrap" and target = "id-aes192-wrap"
or
alias = "aes256-wrap" and target = "id-aes256-wrap"
or
alias = "aes128-wrap-pad" and target = "id-aes128-wrap-pad"
or
alias = "aes192-wrap-pad" and target = "id-aes192-wrap-pad"
or
alias = "aes256-wrap-pad" and target = "id-aes256-wrap-pad"
or
alias = "aes-128-wrap" and target = "id-aes128-wrap"
or
alias = "aes-192-wrap" and target = "id-aes192-wrap"
or
alias = "aes-256-wrap" and target = "id-aes256-wrap"
or
alias = "aria128" and target = "aria-128-cbc"
or
alias = "aria192" and target = "aria-192-cbc"
or
alias = "aria256" and target = "aria-256-cbc"
or
alias = "aes128" and target = "aes-128-cbc"
or
alias = "bf" and target = "bf-cbc"
or
alias = "blowfish" and target = "bf-cbc"
or
alias = "camellia128" and target = "camellia-128-cbc"
or
alias = "camellia192" and target = "camellia-192-cbc"
or
alias = "camellia256" and target = "camellia-256-cbc"
or
alias = "cast" and target = "cast5-cbc"
or
alias = "cast-cbc" and target = "cast5-cbc"
or
alias = "des" and target = "des-cbc"
or
alias = "des-ede-ecb" and target = "des-ede"
or
alias = "des-ede3-ecb" and target = "des-ede3"
or
alias = "des3" and target = "des-ede3-cbc"
or
alias = "des3-wrap" and target = "id-smime-alg-cms3deswrap"
or
alias = "desx" and target = "desx-cbc"
or
alias = "dss" and target = "dsa"
or
alias = "dss1" and target = "dsaWithSHA1"
or
alias = "idea" and target = "idea-cbc"
or
alias = "rc2" and target = "rc2-cbc"
or
alias = "rc2-128" and target = "rc2-cbc"
or
alias = "rc2-40" and target = "rc2-40-cbc"
or
alias = "rc2-64" and target = "rc2-64-cbc"
or
alias = "ripemd" and target = "ripemd160"
or
alias = "rmd160" and target = "ripemd160"
or
alias = "rsa-sha1-2" and target = "rsa-sha1"
or
alias = "seed" and target = "seed-cbc"
or
alias = "sm4" and target = "sm4-cbc"
or
alias = "ssl3-md5" and target = "md5"
or
alias = "ssl3-sha1" and target = "sha1"
}
predicate tbd(string normalized, string algType) {
knownOpenSSLAlgorithmLiteral(_, _, normalized, algType) and
algType = "HASH"
}
/**
* Enumeration of all known crypto algorithms for openSSL
* `name` is all lower case (caller's must ensure they pass in lower case)
* `nid` is the numeric id of the algorithm,
* `normalized` is the normalized name of the algorithm (e.g., "AES128" for "aes-128-cbc")
* `algType` is the type of algorithm (e.g., "SYMMETRIC_ENCRYPTION")
*/
predicate knownOpenSSLAlgorithmLiteral(string name, int nid, string normalized, string algType) {
name = "rsa" and nid = 19 and normalized = "RSA" and algType = "ASYMMETRIC_ENCRYPTION"
or
name = "prime192v1" and nid = 409 and normalized = "PRIME192V1" and algType = "ELLIPTIC_CURVE"
or
name = "prime256v1" and nid = 415 and normalized = "PRIME256V1" and algType = "ELLIPTIC_CURVE"
or
name = "pbkdf2" and nid = 69 and normalized = "PBKDF2" and algType = "KEY_DERIVATION"
or
name = "dsa" and nid = 116 and normalized = "DSA" and algType = "SIGNATURE"
or
name = "gost2001" and nid = 811 and normalized = "GOST" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "gost2012_256" and nid = 979 and normalized = "GOST" and algType = "ELLIPTIC_CURVE" // TODO: Verify algorithm type
or
name = "gost2012_512" and nid = 980 and normalized = "GOST" and algType = "ELLIPTIC_CURVE" // TODO: Verify algorithm type
or
name = "ed25519" and nid = 1087 and normalized = "ED25519" and algType = "ELLIPTIC_CURVE"
or
name = "ed448" and nid = 1088 and normalized = "ED448" and algType = "ELLIPTIC_CURVE"
or
name = "md2" and nid = 3 and normalized = "MD2" and algType = "HASH"
or
name = "sha" and nid = 41 and normalized = "SHA" and algType = "HASH"
or
name = "sha1" and nid = 64 and normalized = "SHA1" and algType = "HASH"
or
name = "scrypt" and nid = 973 and normalized = "SCRYPT" and algType = "KEY_DERIVATION"
or
name = "pkcs7" and nid = 20 and normalized = "PKCS7" and algType = "SYMMETRIC_PADDING"
or
name = "md4" and nid = 257 and normalized = "MD4" and algType = "HASH"
or
name = "md5" and nid = 4 and normalized = "MD5" and algType = "HASH"
or
name = "sha224" and nid = 675 and normalized = "SHA-224" and algType = "HASH"
or
name = "sha256" and nid = 672 and normalized = "SHA-256" and algType = "HASH"
or
name = "sha384" and nid = 673 and normalized = "SHA-384" and algType = "HASH"
or
name = "sha512" and nid = 674 and normalized = "SHA-512" and algType = "HASH"
or
name = "sha512-224" and nid = 1094 and normalized = "SHA-512-224" and algType = "HASH"
or
name = "sha512-256" and nid = 1095 and normalized = "SHA-512-256" and algType = "HASH"
or
name = "sha3-224" and nid = 1096 and normalized = "SHA3-224" and algType = "HASH"
or
name = "sha3-256" and nid = 1097 and normalized = "SHA3-256" and algType = "HASH"
or
name = "sha3-384" and nid = 1098 and normalized = "SHA3-384" and algType = "HASH"
or
name = "sha3-512" and nid = 1099 and normalized = "SHA3-512" and algType = "HASH"
or
name = "shake128" and nid = 1100 and normalized = "SHAKE-128" and algType = "HASH"
or
name = "shake256" and nid = 1101 and normalized = "SHAKE-256" and algType = "HASH"
or
name = "mdc2" and nid = 95 and normalized = "MDC2" and algType = "HASH"
or
name = "blake2b512" and nid = 1056 and normalized = "BLAKE2B" and algType = "HASH"
or
name = "blake2s256" and nid = 1057 and normalized = "BLAKE2S" and algType = "HASH"
or
name = "sm3" and nid = 1143 and normalized = "SM3" and algType = "HASH"
or
name = "aes-128-cbc" and nid = 419 and normalized = "AES-128" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-128-cbc" and nid = 419 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "aes-128-ecb" and nid = 418 and normalized = "AES-128" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-128-ecb" and nid = 418 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "aes-192-cbc" and nid = 423 and normalized = "AES-192" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-192-cbc" and nid = 423 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "aes-192-ecb" and nid = 422 and normalized = "AES-192" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-192-ecb" and nid = 422 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "aes-256-cbc" and nid = 427 and normalized = "AES-256" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-256-cbc" and nid = 427 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "aes-256-ecb" and nid = 426 and normalized = "AES-256" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-256-ecb" and nid = 426 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "aria-128-cbc" and nid = 1066 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "aria-128-cbc" and
nid = 1066 and
normalized = "ARIA-128" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-128-cfb" and nid = 1067 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "aria-128-cfb" and
nid = 1067 and
normalized = "ARIA-128" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-128-ctr" and nid = 1069 and normalized = "CTR" and algType = "BLOCK_MODE"
or
name = "aria-128-ctr" and
nid = 1069 and
normalized = "ARIA-128" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-128-ecb" and nid = 1065 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "aria-128-ecb" and
nid = 1065 and
normalized = "ARIA-128" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-128-ofb" and nid = 1068 and normalized = "OFB" and algType = "BLOCK_MODE"
or
name = "aria-128-ofb" and
nid = 1068 and
normalized = "ARIA-128" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-128-cfb1" and nid = 1080 and normalized = "CFB1" and algType = "BLOCK_MODE"
or
name = "aria-128-cfb1" and
nid = 1080 and
normalized = "ARIA-128" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-128-cfb8" and
nid = 1083 and
normalized = "ARIA-128" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-128-cfb8" and nid = 1083 and normalized = "CFB8" and algType = "BLOCK_MODE"
or
name = "aria-192-cbc" and nid = 1071 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "aria-192-cbc" and
nid = 1071 and
normalized = "ARIA-192" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-192-cfb" and nid = 1072 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "aria-192-cfb" and
nid = 1072 and
normalized = "ARIA-192" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-192-ctr" and nid = 1074 and normalized = "CTR" and algType = "BLOCK_MODE"
or
name = "aria-192-ctr" and
nid = 1074 and
normalized = "ARIA-192" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-192-ecb" and nid = 1070 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "aria-192-ecb" and
nid = 1070 and
normalized = "ARIA-192" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-192-ofb" and nid = 1073 and normalized = "OFB" and algType = "BLOCK_MODE"
or
name = "aria-192-ofb" and
nid = 1073 and
normalized = "ARIA-192" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-192-cfb1" and nid = 1081 and normalized = "CFB1" and algType = "BLOCK_MODE"
or
name = "aria-192-cfb1" and
nid = 1081 and
normalized = "ARIA-192" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-192-cfb8" and
nid = 1084 and
normalized = "ARIA-192" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-192-cfb8" and nid = 1084 and normalized = "CFB8" and algType = "BLOCK_MODE"
or
name = "aria-256-cbc" and nid = 1076 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "aria-256-cbc" and
nid = 1076 and
normalized = "ARIA-256" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-256-cfb" and nid = 1077 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "aria-256-cfb" and
nid = 1077 and
normalized = "ARIA-256" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-256-ctr" and nid = 1079 and normalized = "CTR" and algType = "BLOCK_MODE"
or
name = "aria-256-ctr" and
nid = 1079 and
normalized = "ARIA-256" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-256-ecb" and nid = 1075 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "aria-256-ecb" and
nid = 1075 and
normalized = "ARIA-256" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-256-ofb" and nid = 1078 and normalized = "OFB" and algType = "BLOCK_MODE"
or
name = "aria-256-ofb" and
nid = 1078 and
normalized = "ARIA-256" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-256-cfb1" and nid = 1082 and normalized = "CFB1" and algType = "BLOCK_MODE"
or
name = "aria-256-cfb1" and
nid = 1082 and
normalized = "ARIA-256" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-256-cfb8" and
nid = 1085 and
normalized = "ARIA-256" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aria-256-cfb8" and nid = 1085 and normalized = "CFB8" and algType = "BLOCK_MODE"
or
name = "camellia-128-cbc" and
nid = 751 and
normalized = "CAMELLIA-128" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "camellia-128-cbc" and nid = 751 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "camellia-128-ecb" and
nid = 754 and
normalized = "CAMELLIA-128" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "camellia-128-ecb" and nid = 754 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "camellia-192-cbc" and
nid = 752 and
normalized = "CAMELLIA-192" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "camellia-192-cbc" and nid = 752 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "camellia-192-ecb" and
nid = 755 and
normalized = "CAMELLIA-192" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "camellia-192-ecb" and nid = 755 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "camellia-256-cbc" and
nid = 753 and
normalized = "CAMELLIA-256" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "camellia-256-cbc" and nid = 753 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "camellia-256-ecb" and
nid = 756 and
normalized = "CAMELLIA-256" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "camellia-256-ecb" and nid = 756 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "rc4" and nid = 5 and normalized = "RC4" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "rc4-40" and nid = 97 and normalized = "RC4-40" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-ecb" and nid = 29 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-ecb" and nid = 29 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "des-ede" and nid = 32 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-ede3" and nid = 33 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-ede3" and nid = 33 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "des-cbc" and nid = 31 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-cbc" and nid = 31 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "des-ede-cbc" and nid = 43 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-ede-cbc" and nid = 43 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "des-ede-cbc" and nid = 43 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "des-ede3-cbc" and nid = 44 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-ede3-cbc" and nid = 44 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "des-cfb" and nid = 30 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-cfb" and nid = 30 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "des-ede-cfb" and nid = 60 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-ede-cfb" and nid = 60 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "des-ede3-cfb" and nid = 61 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-ede3-cfb" and nid = 61 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "des-ofb" and nid = 45 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-ofb" and nid = 45 and normalized = "OFB" and algType = "BLOCK_MODE"
or
name = "des-ede-ofb" and nid = 62 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-ede-ofb" and nid = 62 and normalized = "OFB" and algType = "BLOCK_MODE"
or
name = "des-ede3-ofb" and nid = 63 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-ede3-ofb" and nid = 63 and normalized = "OFB" and algType = "BLOCK_MODE"
or
name = "idea-cbc" and nid = 34 and normalized = "IDEA" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "idea-cbc" and nid = 34 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "idea-ecb" and nid = 36 and normalized = "IDEA" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "idea-ecb" and nid = 36 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "idea-cfb" and nid = 35 and normalized = "IDEA" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "idea-cfb" and nid = 35 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "idea-ofb" and nid = 46 and normalized = "IDEA" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "idea-ofb" and nid = 46 and normalized = "OFB" and algType = "BLOCK_MODE"
or
name = "seed-cbc" and nid = 777 and normalized = "SEED" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "seed-cbc" and nid = 777 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "seed-ecb" and nid = 776 and normalized = "SEED" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "seed-ecb" and nid = 776 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "seed-cfb" and nid = 779 and normalized = "SEED" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "seed-cfb" and nid = 779 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "seed-ofb" and nid = 778 and normalized = "SEED" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "seed-ofb" and nid = 778 and normalized = "OFB" and algType = "BLOCK_MODE"
or
name = "rc2-cbc" and nid = 37 and normalized = "RC2-128" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "rc2-cbc" and nid = 37 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "rc2-ecb" and nid = 38 and normalized = "RC2" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "rc2-ecb" and nid = 38 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "rc2-cfb" and nid = 39 and normalized = "RC2" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "rc2-cfb" and nid = 39 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "rc2-ofb" and nid = 40 and normalized = "RC2" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "rc2-ofb" and nid = 40 and normalized = "OFB" and algType = "BLOCK_MODE"
or
name = "rc2-64-cbc" and nid = 166 and normalized = "RC2-64" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "rc2-64-cbc" and nid = 166 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "rc2-40-cbc" and nid = 98 and normalized = "RC2-40" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "rc2-40-cbc" and nid = 98 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "bf-cbc" and nid = 91 and normalized = "BF" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "bf-cbc" and nid = 91 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "bf-ecb" and nid = 92 and normalized = "BF" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "bf-ecb" and nid = 92 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "bf-cfb" and nid = 93 and normalized = "BF" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "bf-cfb" and nid = 93 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "bf-ofb" and nid = 94 and normalized = "BF" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "bf-ofb" and nid = 94 and normalized = "OFB" and algType = "BLOCK_MODE"
or
name = "cast5-cbc" and nid = 108 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "cast5-cbc" and nid = 108 and normalized = "CAST5" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "cast5-ecb" and nid = 109 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "cast5-ecb" and nid = 109 and normalized = "CAST5" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "cast5-cfb" and nid = 110 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "cast5-cfb" and nid = 110 and normalized = "CAST5" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "cast5-ofb" and nid = 111 and normalized = "OFB" and algType = "BLOCK_MODE"
or
name = "cast5-ofb" and nid = 111 and normalized = "CAST5" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "sm4-cbc" and nid = 1134 and normalized = "SM4" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "sm4-cbc" and nid = 1134 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "sm4-ecb" and nid = 1133 and normalized = "SM4" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "sm4-ecb" and nid = 1133 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "sm4-cfb" and nid = 1137 and normalized = "SM4" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "sm4-cfb" and nid = 1137 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "sm4-ofb" and nid = 1135 and normalized = "SM4" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "sm4-ofb" and nid = 1135 and normalized = "OFB" and algType = "BLOCK_MODE"
or
name = "sm4-ctr" and nid = 1139 and normalized = "SM4" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "sm4-ctr" and nid = 1139 and normalized = "CTR" and algType = "BLOCK_MODE"
or
name = "aes-128-gcm" and nid = 895 and normalized = "AES-128" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-128-gcm" and nid = 895 and normalized = "GCM" and algType = "BLOCK_MODE"
or
name = "secp160r1" and nid = 709 and normalized = "SECP160R1" and algType = "ELLIPTIC_CURVE"
or
name = "ripemd160" and nid = 117 and normalized = "RIPEMD160" and algType = "HASH"
or
name = "whirlpool" and nid = 804 and normalized = "WHIRLPOOL" and algType = "HASH"
or
name = "rc5-cbc" and nid = 120 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "rc5-cbc" and nid = 120 and normalized = "RC5" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "pss" and nid = 435 and normalized = "PSS" and algType = "ASYMMETRIC_PADDING"
or
name = "id-aes128-wrap" and
nid = 788 and
normalized = "AES-128" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "id-aes192-wrap" and
nid = 789 and
normalized = "AES-192" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "id-aes256-wrap" and
nid = 790 and
normalized = "AES-256" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "id-aes128-wrap-pad" and
nid = 897 and
normalized = "AES-128" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "id-aes192-wrap-pad" and
nid = 900 and
normalized = "AES-192" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "id-aes256-wrap-pad" and
nid = 903 and
normalized = "AES-256" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "chacha20" and nid = 1019 and normalized = "CHACHA20" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "secp112r1" and nid = 704 and normalized = "SECP112R1" and algType = "ELLIPTIC_CURVE"
or
name = "secp112r2" and nid = 705 and normalized = "SECP112R2" and algType = "ELLIPTIC_CURVE"
or
name = "secp128r1" and nid = 706 and normalized = "SECP128R1" and algType = "ELLIPTIC_CURVE"
or
name = "secp128r2" and nid = 707 and normalized = "SECP128R2" and algType = "ELLIPTIC_CURVE"
or
name = "secp160k1" and nid = 708 and normalized = "SECP160K1" and algType = "ELLIPTIC_CURVE"
or
name = "secp160r2" and nid = 710 and normalized = "SECP160R2" and algType = "ELLIPTIC_CURVE"
or
name = "secp192k1" and nid = 711 and normalized = "SECP192K1" and algType = "ELLIPTIC_CURVE"
or
name = "secp224k1" and nid = 712 and normalized = "SECP224K1" and algType = "ELLIPTIC_CURVE"
or
name = "secp224r1" and nid = 713 and normalized = "SECP224R1" and algType = "ELLIPTIC_CURVE"
or
name = "secp256k1" and nid = 714 and normalized = "SECP256K1" and algType = "ELLIPTIC_CURVE"
or
name = "secp384r1" and nid = 715 and normalized = "SECP384R1" and algType = "ELLIPTIC_CURVE"
or
name = "secp521r1" and nid = 716 and normalized = "SECP521R1" and algType = "ELLIPTIC_CURVE"
or
name = "prime192v2" and nid = 410 and normalized = "PRIME192V2" and algType = "ELLIPTIC_CURVE"
or
name = "prime192v3" and nid = 411 and normalized = "PRIME192V3" and algType = "ELLIPTIC_CURVE"
or
name = "prime239v1" and nid = 412 and normalized = "PRIME239V1" and algType = "ELLIPTIC_CURVE"
or
name = "prime239v2" and nid = 413 and normalized = "PRIME239V2" and algType = "ELLIPTIC_CURVE"
or
name = "prime239v3" and nid = 414 and normalized = "PRIME239V3" and algType = "ELLIPTIC_CURVE"
or
name = "sect113r1" and nid = 717 and normalized = "SECT113R1" and algType = "ELLIPTIC_CURVE"
or
name = "sect113r2" and nid = 718 and normalized = "SECT113R2" and algType = "ELLIPTIC_CURVE"
or
name = "sect131r1" and nid = 719 and normalized = "SECT131R1" and algType = "ELLIPTIC_CURVE"
or
name = "sect131r2" and nid = 720 and normalized = "SECT131R2" and algType = "ELLIPTIC_CURVE"
or
name = "sect163k1" and nid = 721 and normalized = "SECT163K1" and algType = "ELLIPTIC_CURVE"
or
name = "sect163r1" and nid = 722 and normalized = "SECT163R1" and algType = "ELLIPTIC_CURVE"
or
name = "sect163r2" and nid = 723 and normalized = "SECT163R2" and algType = "ELLIPTIC_CURVE"
or
name = "sect193r1" and nid = 724 and normalized = "SECT193R1" and algType = "ELLIPTIC_CURVE"
or
name = "sect193r2" and nid = 725 and normalized = "SECT193R2" and algType = "ELLIPTIC_CURVE"
or
name = "sect233k1" and nid = 726 and normalized = "SECT233K1" and algType = "ELLIPTIC_CURVE"
or
name = "sect233r1" and nid = 727 and normalized = "SECT233R1" and algType = "ELLIPTIC_CURVE"
or
name = "sect239k1" and nid = 728 and normalized = "SECT239K1" and algType = "ELLIPTIC_CURVE"
or
name = "sect283k1" and nid = 729 and normalized = "SECT283K1" and algType = "ELLIPTIC_CURVE"
or
name = "sect283r1" and nid = 730 and normalized = "SECT283R1" and algType = "ELLIPTIC_CURVE"
or
name = "sect409k1" and nid = 731 and normalized = "SECT409K1" and algType = "ELLIPTIC_CURVE"
or
name = "sect409r1" and nid = 732 and normalized = "SECT409R1" and algType = "ELLIPTIC_CURVE"
or
name = "sect571k1" and nid = 733 and normalized = "SECT571K1" and algType = "ELLIPTIC_CURVE"
or
name = "sect571r1" and nid = 734 and normalized = "SECT571R1" and algType = "ELLIPTIC_CURVE"
or
name = "c2pnb163v1" and nid = 684 and normalized = "C2PNB163V1" and algType = "ELLIPTIC_CURVE"
or
name = "c2pnb163v2" and nid = 685 and normalized = "C2PNB163V2" and algType = "ELLIPTIC_CURVE"
or
name = "c2pnb163v3" and nid = 686 and normalized = "C2PNB163V3" and algType = "ELLIPTIC_CURVE"
or
name = "c2pnb176v1" and nid = 687 and normalized = "C2PNB176V1" and algType = "ELLIPTIC_CURVE"
or
name = "c2tnb191v1" and nid = 688 and normalized = "C2TNB191V1" and algType = "ELLIPTIC_CURVE"
or
name = "c2tnb191v2" and nid = 689 and normalized = "C2TNB191V2" and algType = "ELLIPTIC_CURVE"
or
name = "c2tnb191v3" and nid = 690 and normalized = "C2TNB191V3" and algType = "ELLIPTIC_CURVE"
or
name = "c2pnb208w1" and nid = 693 and normalized = "C2PNB208W1" and algType = "ELLIPTIC_CURVE"
or
name = "c2tnb239v1" and nid = 694 and normalized = "C2TNB239V1" and algType = "ELLIPTIC_CURVE"
or
name = "c2tnb239v2" and nid = 695 and normalized = "C2TNB239V2" and algType = "ELLIPTIC_CURVE"
or
name = "c2tnb239v3" and nid = 696 and normalized = "C2TNB239V3" and algType = "ELLIPTIC_CURVE"
or
name = "c2pnb272w1" and nid = 699 and normalized = "C2PNB272W1" and algType = "ELLIPTIC_CURVE"
or
name = "c2pnb304w1" and nid = 700 and normalized = "C2PNB304W1" and algType = "ELLIPTIC_CURVE"
or
name = "c2tnb359v1" and nid = 701 and normalized = "C2TNB359V1" and algType = "ELLIPTIC_CURVE"
or
name = "c2pnb368w1" and nid = 702 and normalized = "C2PNB368W1" and algType = "ELLIPTIC_CURVE"
or
name = "c2tnb431r1" and nid = 703 and normalized = "C2TNB431R1" and algType = "ELLIPTIC_CURVE"
or
name = "pkcs5" and nid = 187 and normalized = "PKCS5" and algType = "KEY_DERIVATION"
or
name = "aes-256-gcm" and nid = 901 and normalized = "AES-256" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-256-gcm" and nid = 901 and normalized = "GCM" and algType = "BLOCK_MODE"
or
name = "chacha20-poly1305" and nid = 1018 and normalized = "POLY1305" and algType = "HASH"
or
name = "chacha20-poly1305" and
nid = 1018 and
normalized = "CHACHA20POLY1305" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "rsadsi" and nid = 1 and normalized = "RSA" and algType = "ASYMMETRIC_ENCRYPTION"
or
name = "pkcs7-data" and nid = 21 and normalized = "PKCS7" and algType = "SYMMETRIC_PADDING"
or
name = "desx-cbc" and nid = 80 and normalized = "DESX" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "desx-cbc" and nid = 80 and normalized = "CBC" and algType = "BLOCK_MODE"
or
name = "md5-sha1" and nid = 114 and normalized = "SHA1" and algType = "HASH"
or
name = "rc5-ecb" and nid = 121 and normalized = "ECB" and algType = "BLOCK_MODE"
or
name = "rc5-ecb" and nid = 121 and normalized = "RC5" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "rc5-cfb" and nid = 122 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "rc5-cfb" and nid = 122 and normalized = "RC5" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "rc5-ofb" and nid = 123 and normalized = "OFB" and algType = "BLOCK_MODE"
or
name = "rc5-ofb" and nid = 123 and normalized = "RC5" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "id-alg-des40" and nid = 323 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "id-alg-dh-sig-hmac-sha1" and nid = 325 and normalized = "SHA1" and algType = "HASH"
or
name = "aes-128-ofb" and nid = 420 and normalized = "AES-128" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-128-ofb" and nid = 420 and normalized = "OFB" and algType = "BLOCK_MODE"
or
name = "aes-128-cfb" and nid = 421 and normalized = "AES-128" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-128-cfb" and nid = 421 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "aes-192-ofb" and nid = 424 and normalized = "AES-192" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-192-ofb" and nid = 424 and normalized = "OFB" and algType = "BLOCK_MODE"
or
name = "aes-192-cfb" and nid = 425 and normalized = "AES-192" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-192-cfb" and nid = 425 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "aes-256-ofb" and nid = 428 and normalized = "AES-256" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-256-ofb" and nid = 428 and normalized = "OFB" and algType = "BLOCK_MODE"
or
name = "aes-256-cfb" and nid = 429 and normalized = "AES-256" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-256-cfb" and nid = 429 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "des-cdmf" and nid = 643 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-128-cfb1" and
nid = 650 and
normalized = "AES-128" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-128-cfb1" and nid = 650 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "aes-192-cfb1" and
nid = 651 and
normalized = "AES-192" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-192-cfb1" and nid = 651 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "aes-256-cfb1" and
nid = 652 and
normalized = "AES-256" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-256-cfb1" and nid = 652 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "aes-128-cfb8" and
nid = 653 and
normalized = "AES-128" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-128-cfb8" and nid = 653 and normalized = "CFB8" and algType = "BLOCK_MODE"
or
name = "aes-192-cfb8" and
nid = 654 and
normalized = "AES-192" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-192-cfb8" and nid = 654 and normalized = "CFB8" and algType = "BLOCK_MODE"
or
name = "aes-256-cfb8" and
nid = 655 and
normalized = "AES-256" and
algType = "SYMMETRIC_ENCRYPTION"
or
name = "aes-256-cfb8" and nid = 655 and normalized = "CFB8" and algType = "BLOCK_MODE"
or
name = "des-cfb1" and nid = 656 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-cfb1" and nid = 656 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "des-cfb8" and nid = 657 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-cfb8" and nid = 657 and normalized = "CFB8" and algType = "BLOCK_MODE"
or
name = "des-ede3-cfb1" and nid = 658 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-ede3-cfb1" and nid = 658 and normalized = "CFB" and algType = "BLOCK_MODE"
or
name = "des-ede3-cfb8" and nid = 659 and normalized = "DES" and algType = "SYMMETRIC_ENCRYPTION"
or
name = "des-ede3-cfb8" and nid = 659 and normalized = "CFB8" and algType = "BLOCK_MODE"
or
name = "c2onb191v4" and nid = 691 and normalized = "C2ONB191V4" and algType = "ELLIPTIC_CURVE"
or
name = "c2onb191v5" and nid = 692 and normalized = "C2ONB191V5" and algType = "ELLIPTIC_CURVE"
or
name = "c2onb239v4" and nid = 697 and normalized = "C2ONB239V4" and algType = "ELLIPTIC_CURVE"
or
name = "c2onb239v5" and nid = 698 and normalized = "C2ONB239V5" and algType = "ELLIPTIC_CURVE"
or
name = "camellia-128-cfb" and
nid = 757 and
normalized = "CAMELLIA-128" and