blob: 2e0843718d1af90fa1acd83d956abb4336b44617 (
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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
|
# $FreeBSD$
#
COMMENT = Security tools
SUBDIR += ADMsmb
SUBDIR += ADMsnmp
SUBDIR += R-cran-ROAuth
SUBDIR += R-cran-digest
SUBDIR += R-cran-openssl
SUBDIR += aescrypt
SUBDIR += aespipe
SUBDIR += afl
SUBDIR += afterglow
SUBDIR += aide
SUBDIR += aimsniff
SUBDIR += amap
SUBDIR += amavis-stats
SUBDIR += amavisd-milter
SUBDIR += amavisd-new
SUBDIR += apache-xml-security-c
SUBDIR += apg
SUBDIR += arirang
SUBDIR += arm
SUBDIR += arpCounterattack
SUBDIR += asignify
SUBDIR += authforce
SUBDIR += autossh
SUBDIR += avcheck
SUBDIR += axTLS
SUBDIR += barnyard2
SUBDIR += barnyard2-sguil
SUBDIR += base
SUBDIR += bcrypt
SUBDIR += bcwipe
SUBDIR += bdc
SUBDIR += beecrypt
SUBDIR += belier
SUBDIR += bfbtester
SUBDIR += binwalk
SUBDIR += blindelephant
SUBDIR += botan110
SUBDIR += bro
SUBDIR += broccoli
SUBDIR += bruteblock
SUBDIR += bruteforceblocker
SUBDIR += bsdsfv
SUBDIR += bsmtrace
SUBDIR += bugs
SUBDIR += ca_root_nss
SUBDIR += calife
SUBDIR += ccrypt
SUBDIR += ccsrch
SUBDIR += certificate-transparency
SUBDIR += cfs
SUBDIR += cfv
SUBDIR += chaosreader
SUBDIR += checkpassword
SUBDIR += checkpassword-pam
SUBDIR += chkrootkit
SUBDIR += chntpw
SUBDIR += chroot_safe
SUBDIR += chrootuid
SUBDIR += ckpass
SUBDIR += cksfv
SUBDIR += cl-md5
SUBDIR += cl-md5-sbcl
SUBDIR += clamassassin
SUBDIR += clamav
SUBDIR += clamav-milter
SUBDIR += clamav-unofficial-sigs
SUBDIR += clambc
SUBDIR += clamcour
SUBDIR += clamd-stream-client
SUBDIR += clamsmtp
SUBDIR += clamtk
SUBDIR += clusterssh
SUBDIR += cmd5checkpw
SUBDIR += cops
SUBDIR += courier-authlib
SUBDIR += courier-authlib-base
SUBDIR += courierpassd
SUBDIR += courierpasswd
SUBDIR += courieruserinfo
SUBDIR += cp2fwb
SUBDIR += cracklib
SUBDIR += crank
SUBDIR += create-cert
SUBDIR += cryptlib
SUBDIR += cryptopp
SUBDIR += cryptstring
SUBDIR += cvm
SUBDIR += cyrus-sasl2
SUBDIR += cyrus-sasl2-gssapi
SUBDIR += cyrus-sasl2-ldapdb
SUBDIR += cyrus-sasl2-saslauthd
SUBDIR += cyrus-sasl2-srp
SUBDIR += d0_blind_id
SUBDIR += dcetest
SUBDIR += ddos_scan
SUBDIR += denyhosts
SUBDIR += destroy
SUBDIR += digest
SUBDIR += dirbuster
SUBDIR += dirmngr
SUBDIR += distcache
SUBDIR += dmitry
SUBDIR += doorman
SUBDIR += doscan
SUBDIR += dradis
SUBDIR += dropbear
SUBDIR += dsniff
SUBDIR += duo
SUBDIR += easy-rsa
SUBDIR += easy-rsa2
SUBDIR += easypg
SUBDIR += elixir-comeonin
SUBDIR += elixir-comeonin_i18n
SUBDIR += elixir-jose
SUBDIR += engine_pkcs11
SUBDIR += erlang-jose
SUBDIR += erlang-p1tls
SUBDIR += esteidfirefoxplugin
SUBDIR += expiretable
SUBDIR += f-prot
SUBDIR += fakebo
SUBDIR += fakeident
SUBDIR += fakeroot
SUBDIR += fastd
SUBDIR += fastd-devel
SUBDIR += fbopenssl
SUBDIR += fcheck
SUBDIR += fcrackzip
SUBDIR += fiked
SUBDIR += find-zlib
SUBDIR += firewalk
SUBDIR += fl0p
SUBDIR += flawfinder
SUBDIR += fpc-openssl
SUBDIR += fpm2
SUBDIR += fprint_demo
SUBDIR += fprintd
SUBDIR += fragroute
SUBDIR += fragrouter
SUBDIR += fsh
SUBDIR += fswatch
SUBDIR += ftimes
SUBDIR += fuzz
SUBDIR += fuzzdb
SUBDIR += fwanalog
SUBDIR += fwbuilder
SUBDIR += fwipe
SUBDIR += fwknop
SUBDIR += fwlogwatch
SUBDIR += gag
SUBDIR += gcipher
SUBDIR += gcr
SUBDIR += gnome-gpg
SUBDIR += gnome-keyring
SUBDIR += gnome-keyring-sharp
SUBDIR += gnome-password-generator
SUBDIR += gnome-ssh-askpass
SUBDIR += gnomint
SUBDIR += gnupg
SUBDIR += gnupg1
SUBDIR += gnupg20
SUBDIR += gnutls
SUBDIR += go.crypto
SUBDIR += goptlib
SUBDIR += gorilla
SUBDIR += govpn
SUBDIR += gpa
SUBDIR += gpasman
SUBDIR += gpass
SUBDIR += gpgdir
SUBDIR += gpgme
SUBDIR += gputty
SUBDIR += gringotts
SUBDIR += gsasl
SUBDIR += gsfv
SUBDIR += gss
SUBDIR += gstreamer1-plugins-dtls
SUBDIR += gtk-knocker
SUBDIR += gtkpasman
SUBDIR += gwee
SUBDIR += hackbot
SUBDIR += hamachi
SUBDIR += hashcat
SUBDIR += heimdal
SUBDIR += hitch
SUBDIR += hlfl
SUBDIR += hmap
SUBDIR += honeybadger
SUBDIR += honggfuzz
SUBDIR += hotssh
SUBDIR += hpenc
SUBDIR += hs-Crypto
SUBDIR += hs-DRBG
SUBDIR += hs-HsOpenSSL
SUBDIR += hs-RSA
SUBDIR += hs-SHA
SUBDIR += hs-certificate
SUBDIR += hs-cipher-aes
SUBDIR += hs-cipher-aes128
SUBDIR += hs-cipher-blowfish
SUBDIR += hs-cipher-camellia
SUBDIR += hs-cipher-des
SUBDIR += hs-cipher-rc4
SUBDIR += hs-clientsession
SUBDIR += hs-cprng-aes
SUBDIR += hs-crypto-api
SUBDIR += hs-crypto-cipher-types
SUBDIR += hs-crypto-conduit
SUBDIR += hs-crypto-numbers
SUBDIR += hs-crypto-pubkey
SUBDIR += hs-crypto-pubkey-types
SUBDIR += hs-crypto-random
SUBDIR += hs-crypto-random-api
SUBDIR += hs-cryptocipher
SUBDIR += hs-cryptohash
SUBDIR += hs-cryptohash-conduit
SUBDIR += hs-cryptohash-cryptoapi
SUBDIR += hs-cryptonite
SUBDIR += hs-digest
SUBDIR += hs-entropy
SUBDIR += hs-gnutls
SUBDIR += hs-monadcryptorandom
SUBDIR += hs-nonce
SUBDIR += hs-pem
SUBDIR += hs-pureMD5
SUBDIR += hs-pwstore-fast
SUBDIR += hs-skein
SUBDIR += hs-tls
SUBDIR += hs-x509
SUBDIR += hs-x509-store
SUBDIR += hs-x509-system
SUBDIR += hs-x509-validation
SUBDIR += httprint
SUBDIR += hydra
SUBDIR += i2p
SUBDIR += i2pd
SUBDIR += iaikpkcs11wrapper
SUBDIR += idea
SUBDIR += identify
SUBDIR += ifd-slb_rf60
SUBDIR += ike
SUBDIR += ike-scan
SUBDIR += integrit
SUBDIR += ipfcount
SUBDIR += ipfilter2dshield
SUBDIR += ipfmeta
SUBDIR += ipfw2dshield
SUBDIR += ipfwcount
SUBDIR += ipguard
SUBDIR += ipsec-tools
SUBDIR += ipv6toolkit
SUBDIR += isakmpd
SUBDIR += isnprober
SUBDIR += jbrofuzz
SUBDIR += john
SUBDIR += kc
SUBDIR += kedpm
SUBDIR += keepass
SUBDIR += keepassx
SUBDIR += keepassx2
SUBDIR += keybase
SUBDIR += keychain
SUBDIR += keynote
SUBDIR += keyprint
SUBDIR += kgpg-kde4
SUBDIR += knock
SUBDIR += knocker
SUBDIR += kpcli
SUBDIR += kqoauth
SUBDIR += krb5
SUBDIR += krb5-112
SUBDIR += krb5-113
SUBDIR += krb5-114
SUBDIR += krb5-appl
SUBDIR += kripp
SUBDIR += kstart
SUBDIR += kwalletmanager
SUBDIR += l0pht-watch
SUBDIR += l0phtcrack
SUBDIR += l5
SUBDIR += lasso
SUBDIR += lastpass-cli
SUBDIR += letsencrypt.sh
SUBDIR += libassuan
SUBDIR += libbeid
SUBDIR += libbf
SUBDIR += libbzrtp
SUBDIR += libcryptui
SUBDIR += libecc
SUBDIR += libfprint
SUBDIR += libgcrypt
SUBDIR += libgnome-keyring
SUBDIR += libgnomesu
SUBDIR += libgpg-error
SUBDIR += libgringotts
SUBDIR += libident
SUBDIR += libkpass
SUBDIR += libksba
SUBDIR += libmcrypt
SUBDIR += libntlm
SUBDIR += libotr
SUBDIR += libotr3
SUBDIR += libp11
SUBDIR += libprelude
SUBDIR += libpreludedb
SUBDIR += libpwquality
SUBDIR += libpwstor
SUBDIR += libressl
SUBDIR += libressl-devel
SUBDIR += libscrypt
SUBDIR += libsecret
SUBDIR += libsectok
SUBDIR += libsodium
SUBDIR += libsparkcrypto
SUBDIR += libssh
SUBDIR += libssh2
SUBDIR += libtasn1
SUBDIR += libtomcrypt
SUBDIR += libuecc
SUBDIR += libwhisker
SUBDIR += libyubikey
SUBDIR += libzrtpcppcore
SUBDIR += linux-c6-cyrus-sasl2
SUBDIR += linux-c6-gnutls
SUBDIR += linux-c6-libgcrypt
SUBDIR += linux-c6-libgpg-error
SUBDIR += linux-c6-libssh2
SUBDIR += linux-c6-libtasn1
SUBDIR += linux-c6-nss
SUBDIR += linux-c6-openssl
SUBDIR += linux-c6-openssl-compat
SUBDIR += linux-f10-cyrus-sasl2
SUBDIR += linux-f10-gnutls
SUBDIR += linux-f10-libgcrypt
SUBDIR += linux-f10-libgpg-error
SUBDIR += linux-f10-libssh2
SUBDIR += linux-f10-libtasn1
SUBDIR += linux-f10-nss
SUBDIR += linux-f10-openssl
SUBDIR += lockdown
SUBDIR += log2timeline
SUBDIR += logcheck
SUBDIR += lsh
SUBDIR += luasec
SUBDIR += lynis
SUBDIR += mac-robber
SUBDIR += maia
SUBDIR += mailzu
SUBDIR += makepasswd
SUBDIR += manipulate_data
SUBDIR += masscan
SUBDIR += massh
SUBDIR += matrixssl
SUBDIR += mbedtls
SUBDIR += mcrypt
SUBDIR += md4coll
SUBDIR += md5coll
SUBDIR += md5deep
SUBDIR += mdcrack
SUBDIR += medusa
SUBDIR += meek
SUBDIR += metasploit
SUBDIR += mhash
SUBDIR += mindterm-binary
SUBDIR += monkeysphere
SUBDIR += munge
SUBDIR += mussh
SUBDIR += nacl
SUBDIR += ncrack
SUBDIR += ncrypt
SUBDIR += nessus
SUBDIR += nessus-libnasl
SUBDIR += nessus-libraries
SUBDIR += nessus-plugins
SUBDIR += netpgp
SUBDIR += nettle
SUBDIR += nikto
SUBDIR += nist-kat
SUBDIR += nmap
SUBDIR += nmapsi4
SUBDIR += nss
SUBDIR += nss_compat_ossl
SUBDIR += oath-toolkit
SUBDIR += obfsclient
SUBDIR += obfsproxy
SUBDIR += ocaml-cryptgps
SUBDIR += ocaml-cryptokit
SUBDIR += ocaml-ssl
SUBDIR += oidentd
SUBDIR += oinkmaster
SUBDIR += op
SUBDIR += openbsm
SUBDIR += openbsm-devel
SUBDIR += openca-tools-forked
SUBDIR += opencdk
SUBDIR += openconnect
SUBDIR += opencryptoki
SUBDIR += openct
SUBDIR += openpgpsdk
SUBDIR += opensaml2
SUBDIR += opensc
SUBDIR += openscep
SUBDIR += openssh-askpass
SUBDIR += openssh-portable
SUBDIR += openssh-portable-devel
SUBDIR += openssl
SUBDIR += openssl_tpm_engine
SUBDIR += openvas-client
SUBDIR += openvas-libnasl
SUBDIR += openvas-libraries
SUBDIR += openvas-plugins
SUBDIR += openvas-server
SUBDIR += openvpn
SUBDIR += openvpn-admin
SUBDIR += openvpn-auth-ldap
SUBDIR += openvpn-auth-radius
SUBDIR += openvpn-devel
SUBDIR += openvpn-polarssl
SUBDIR += ophcrack
SUBDIR += orthrus
SUBDIR += osiris
SUBDIR += ossec-hids-client
SUBDIR += ossec-hids-local
SUBDIR += ossec-hids-server
SUBDIR += osslsigncode
SUBDIR += outguess
SUBDIR += p11-kit
SUBDIR += p5-Apache-Htpasswd
SUBDIR += p5-App-Genpass
SUBDIR += p5-App-TLSMe
SUBDIR += p5-Auth-YubikeyDecrypter
SUBDIR += p5-AuthCAS
SUBDIR += p5-Authen-Bitcard
SUBDIR += p5-Authen-Captcha
SUBDIR += p5-Authen-CyrusSASL
SUBDIR += p5-Authen-DecHpwd
SUBDIR += p5-Authen-Htpasswd
SUBDIR += p5-Authen-Krb5
SUBDIR += p5-Authen-Krb5-Simple
SUBDIR += p5-Authen-Libwrap
SUBDIR += p5-Authen-NTLM
SUBDIR += p5-Authen-OATH
SUBDIR += p5-Authen-PAAS
SUBDIR += p5-Authen-PAM
SUBDIR += p5-Authen-Passphrase
SUBDIR += p5-Authen-PluggableCaptcha
SUBDIR += p5-Authen-Radius
SUBDIR += p5-Authen-SASL
SUBDIR += p5-Authen-SASL-Cyrus
SUBDIR += p5-Authen-SASL-SASLprep
SUBDIR += p5-Authen-SCRAM
SUBDIR += p5-Authen-Simple
SUBDIR += p5-Authen-Simple-DBI
SUBDIR += p5-Authen-Simple-DBM
SUBDIR += p5-Authen-Simple-HTTP
SUBDIR += p5-Authen-Simple-Kerberos
SUBDIR += p5-Authen-Simple-LDAP
SUBDIR += p5-Authen-Simple-Net
SUBDIR += p5-Authen-Simple-PAM
SUBDIR += p5-Authen-Simple-Passwd
SUBDIR += p5-Authen-Simple-RADIUS
SUBDIR += p5-Authen-Simple-SMB
SUBDIR += p5-Authen-Simple-SSH
SUBDIR += p5-Authen-Smb
SUBDIR += p5-Authen-TacacsPlus
SUBDIR += p5-Authen-Ticket
SUBDIR += p5-Authen-TypeKey
SUBDIR += p5-Business-PayPal-EWP
SUBDIR += p5-Bytes-Random-Secure
SUBDIR += p5-CACertOrg-CA
SUBDIR += p5-CSP
SUBDIR += p5-Cisco-Hash
SUBDIR += p5-Crypt-Anubis
SUBDIR += p5-Crypt-AppleTwoFish
SUBDIR += p5-Crypt-Blowfish
SUBDIR += p5-Crypt-Blowfish_PP
SUBDIR += p5-Crypt-CAST5
SUBDIR += p5-Crypt-CAST5_PP
SUBDIR += p5-Crypt-CBC
SUBDIR += p5-Crypt-CBCeasy
SUBDIR += p5-Crypt-CFB
SUBDIR += p5-Crypt-Caesar
SUBDIR += p5-Crypt-Camellia_PP
SUBDIR += p5-Crypt-Chimera
SUBDIR += p5-Crypt-CipherSaber
SUBDIR += p5-Crypt-Cracklib
SUBDIR += p5-Crypt-Ctr
SUBDIR += p5-Crypt-DES
SUBDIR += p5-Crypt-DES_EDE3
SUBDIR += p5-Crypt-DES_PP
SUBDIR += p5-Crypt-DH
SUBDIR += p5-Crypt-DSA
SUBDIR += p5-Crypt-Dining
SUBDIR += p5-Crypt-ECB
SUBDIR += p5-Crypt-Eksblowfish
SUBDIR += p5-Crypt-Enigma
SUBDIR += p5-Crypt-GCrypt
SUBDIR += p5-Crypt-GOST
SUBDIR += p5-Crypt-GOST_PP
SUBDIR += p5-Crypt-GPG
SUBDIR += p5-Crypt-GeneratePassword
SUBDIR += p5-Crypt-HCE_MD5
SUBDIR += p5-Crypt-HCE_SHA
SUBDIR += p5-Crypt-IDEA
SUBDIR += p5-Crypt-Imail
SUBDIR += p5-Crypt-Juniper
SUBDIR += p5-Crypt-Khazad
SUBDIR += p5-Crypt-License
SUBDIR += p5-Crypt-Lite
SUBDIR += p5-Crypt-Loki97
SUBDIR += p5-Crypt-MySQL
SUBDIR += p5-Crypt-NULL
SUBDIR += p5-Crypt-OFB
SUBDIR += p5-Crypt-OICQ
SUBDIR += p5-Crypt-OTP
SUBDIR += p5-Crypt-OpenPGP
SUBDIR += p5-Crypt-OpenSSL-AES
SUBDIR += p5-Crypt-OpenSSL-Bignum
SUBDIR += p5-Crypt-OpenSSL-CA
SUBDIR += p5-Crypt-OpenSSL-DSA
SUBDIR += p5-Crypt-OpenSSL-EC
SUBDIR += p5-Crypt-OpenSSL-ECDSA
SUBDIR += p5-Crypt-OpenSSL-RSA
SUBDIR += p5-Crypt-OpenSSL-Random
SUBDIR += p5-Crypt-OpenSSL-X509
SUBDIR += p5-Crypt-PBKDF2
SUBDIR += p5-Crypt-PGPSimple
SUBDIR += p5-Crypt-PKCS10
SUBDIR += p5-Crypt-PWSafe3
SUBDIR += p5-Crypt-PassGen
SUBDIR += p5-Crypt-Passwd-XS
SUBDIR += p5-Crypt-PasswdMD5
SUBDIR += p5-Crypt-Password-Util
SUBDIR += p5-Crypt-Primes
SUBDIR += p5-Crypt-RC4
SUBDIR += p5-Crypt-RC5
SUBDIR += p5-Crypt-RC6
SUBDIR += p5-Crypt-RHash
SUBDIR += p5-Crypt-RIPEMD160
SUBDIR += p5-Crypt-RSA
SUBDIR += p5-Crypt-RSA-Yandex
SUBDIR += p5-Crypt-Rabbit
SUBDIR += p5-Crypt-RandPasswd
SUBDIR += p5-Crypt-Random
SUBDIR += p5-Crypt-Random-Seed
SUBDIR += p5-Crypt-Random-Source
SUBDIR += p5-Crypt-Random-TESHA2
SUBDIR += p5-Crypt-Rijndael
SUBDIR += p5-Crypt-Rijndael_PP
SUBDIR += p5-Crypt-SKey
SUBDIR += p5-Crypt-SMIME
SUBDIR += p5-Crypt-SSLeay
SUBDIR += p5-Crypt-Salt
SUBDIR += p5-Crypt-SaltedHash
SUBDIR += p5-Crypt-Serpent
SUBDIR += p5-Crypt-Shark
SUBDIR += p5-Crypt-Simple
SUBDIR += p5-Crypt-SmbHash
SUBDIR += p5-Crypt-Sodium
SUBDIR += p5-Crypt-Solitaire
SUBDIR += p5-Crypt-TEA
SUBDIR += p5-Crypt-T_e_a
SUBDIR += p5-Crypt-Tea_JS
SUBDIR += p5-Crypt-TripleDES
SUBDIR += p5-Crypt-Twofish
SUBDIR += p5-Crypt-Twofish2
SUBDIR += p5-Crypt-Twofish_PP
SUBDIR += p5-Crypt-URandom
SUBDIR += p5-Crypt-UnixCrypt
SUBDIR += p5-Crypt-UnixCrypt_XS
SUBDIR += p5-Crypt-X509
SUBDIR += p5-Crypt-XTEA
SUBDIR += p5-Crypt-xDBM_File
SUBDIR += p5-CryptX
SUBDIR += p5-Dancer-Plugin-Auth-Extensible
SUBDIR += p5-Dancer-Plugin-Auth-Extensible-Provider-Usergroup
SUBDIR += p5-Dancer-Plugin-Passphrase
SUBDIR += p5-Dancer2-Plugin-Auth-Extensible
SUBDIR += p5-Dancer2-Plugin-Auth-Extensible-Provider-DBIC
SUBDIR += p5-Dancer2-Plugin-Auth-Extensible-Provider-Usergroup
SUBDIR += p5-Dancer2-Plugin-Passphrase
SUBDIR += p5-Data-Entropy
SUBDIR += p5-Data-Password
SUBDIR += p5-Digest
SUBDIR += p5-Digest-Adler32
SUBDIR += p5-Digest-Bcrypt
SUBDIR += p5-Digest-BubbleBabble
SUBDIR += p5-Digest-CRC
SUBDIR += p5-Digest-Crc32
SUBDIR += p5-Digest-DJB
SUBDIR += p5-Digest-DMAC
SUBDIR += p5-Digest-EMAC
SUBDIR += p5-Digest-Elf
SUBDIR += p5-Digest-FNV
SUBDIR += p5-Digest-GOST
SUBDIR += p5-Digest-HMAC
SUBDIR += p5-Digest-Hashcash
SUBDIR += p5-Digest-Haval256
SUBDIR += p5-Digest-JHash
SUBDIR += p5-Digest-MD2
SUBDIR += p5-Digest-MD4
SUBDIR += p5-Digest-MD5
SUBDIR += p5-Digest-MD5-File
SUBDIR += p5-Digest-MD5-M4p
SUBDIR += p5-Digest-MD5-Reverse
SUBDIR += p5-Digest-ManberHash
SUBDIR += p5-Digest-MurmurHash
SUBDIR += p5-Digest-Nilsimsa
SUBDIR += p5-Digest-Pearson
SUBDIR += p5-Digest-Pearson-PurePerl
SUBDIR += p5-Digest-Perl-MD4
SUBDIR += p5-Digest-Perl-MD5
SUBDIR += p5-Digest-SHA
SUBDIR += p5-Digest-SHA-PurePerl
SUBDIR += p5-Digest-SHA1
SUBDIR += p5-Digest-SHA3
SUBDIR += p5-Digest-SV1
SUBDIR += p5-Digest-Tiger
SUBDIR += p5-Digest-Whirlpool
SUBDIR += p5-File-KeePass
SUBDIR += p5-File-KeePass-Agent
SUBDIR += p5-File-Scan
SUBDIR += p5-File-Scan-ClamAV
SUBDIR += p5-Filter-CBC
SUBDIR += p5-Filter-Crypto
SUBDIR += p5-GD-SecurityImage
SUBDIR += p5-GSSAPI
SUBDIR += p5-GnuPG
SUBDIR += p5-GnuPG-Interface
SUBDIR += p5-HTML-Email-Obfuscate
SUBDIR += p5-Heimdal-Kadm5
SUBDIR += p5-IO-Async-SSL
SUBDIR += p5-IO-Socket-SSL
SUBDIR += p5-MD5
SUBDIR += p5-Mcrypt
SUBDIR += p5-Module-Signature
SUBDIR += p5-Net-Daemon-SSL
SUBDIR += p5-Net-OpenID-Common
SUBDIR += p5-Net-OpenID-JanRain
SUBDIR += p5-Net-OpenID-Server
SUBDIR += p5-Net-Radius-Server
SUBDIR += p5-Net-SAML
SUBDIR += p5-Net-SSL-ExpireDate
SUBDIR += p5-Net-SSLGlue
SUBDIR += p5-Net-SSLeay
SUBDIR += p5-Net-Server-Mail-ESMTP-AUTH
SUBDIR += p5-Net-SinFP
SUBDIR += p5-Nmap-Parser
SUBDIR += p5-Nmap-Scanner
SUBDIR += p5-OpenCA-CRL
SUBDIR += p5-OpenCA-CRR
SUBDIR += p5-OpenCA-OpenSSL
SUBDIR += p5-OpenCA-PKCS7
SUBDIR += p5-OpenCA-REQ
SUBDIR += p5-OpenCA-X509
SUBDIR += p5-PBKDF2-Tiny
SUBDIR += p5-PGP
SUBDIR += p5-PGP-Sign
SUBDIR += p5-POE-Component-SSLify
SUBDIR += p5-POE-Filter-SSL
SUBDIR += p5-Parse-Snort
SUBDIR += p5-PerlCryptLib
SUBDIR += p5-SAVI-Perl
SUBDIR += p5-SHA
SUBDIR += p5-Safe-Hole
SUBDIR += p5-Session-Token
SUBDIR += p5-Snort-Rule
SUBDIR += p5-String-MkPasswd
SUBDIR += p5-Sudo
SUBDIR += p5-Text-Password-Pronounceable
SUBDIR += p5-Tie-EncryptedHash
SUBDIR += p5-Tree-Authz
SUBDIR += p5-Unix-Passwd-File
SUBDIR += p5-Yahoo-BBAuth
SUBDIR += p5-dicewaregen
SUBDIR += p5-openxpki
SUBDIR += p5-openxpki-i18n
SUBDIR += pad
SUBDIR += pam-modules
SUBDIR += pam-mysql
SUBDIR += pam-pgsql
SUBDIR += pam_fprint
SUBDIR += pam_google_authenticator
SUBDIR += pam_helper
SUBDIR += pam_jail
SUBDIR += pam_kde
SUBDIR += pam_krb5
SUBDIR += pam_krb5-rh
SUBDIR += pam_ldap
SUBDIR += pam_mkhomedir
SUBDIR += pam_ocra
SUBDIR += pam_p11
SUBDIR += pam_per_user
SUBDIR += pam_pseudo
SUBDIR += pam_pwdfile
SUBDIR += pam_require
SUBDIR += pam_search_list
SUBDIR += pam_ssh_agent_auth
SUBDIR += pam_yubico
SUBDIR += pamtester
SUBDIR += paperkey
SUBDIR += parano
SUBDIR += passivedns
SUBDIR += pbc
SUBDIR += pbnj
SUBDIR += pcsc-tools
SUBDIR += pear-Auth
SUBDIR += pear-Auth_HTTP
SUBDIR += pear-Auth_OpenID
SUBDIR += pear-Auth_PrefManager
SUBDIR += pear-Auth_SASL
SUBDIR += pear-Crypt_Blowfish
SUBDIR += pear-Crypt_CBC
SUBDIR += pear-Crypt_CHAP
SUBDIR += pear-Crypt_DiffieHellman
SUBDIR += pear-Crypt_GPG
SUBDIR += pear-Crypt_HMAC2
SUBDIR += pear-Crypt_MicroID
SUBDIR += pear-Crypt_RC4
SUBDIR += pear-Crypt_RSA
SUBDIR += pear-Crypt_XXTEA
SUBDIR += pear-File_HtAccess
SUBDIR += pear-File_Passwd
SUBDIR += pear-File_SMBPasswd
SUBDIR += pear-HTML_Crypt
SUBDIR += pear-Horde_Auth
SUBDIR += pear-Horde_Crypt
SUBDIR += pear-Horde_Crypt_Blowfish
SUBDIR += pear-Horde_Group
SUBDIR += pear-Horde_Oauth
SUBDIR += pear-Horde_Perms
SUBDIR += pear-Horde_Secret
SUBDIR += pear-Horde_Share
SUBDIR += pear-LiveUser
SUBDIR += pear-LiveUser_Admin
SUBDIR += pear-Net_Portscan
SUBDIR += pear-Text_Password
SUBDIR += pecl-crack
SUBDIR += pecl-crypto
SUBDIR += pecl-gnupg
SUBDIR += pecl-pam
SUBDIR += pecl-scrypt
SUBDIR += pecl-ssh2
SUBDIR += pecl-taint
SUBDIR += pecl-tcpwrap
SUBDIR += pev
SUBDIR += pft
SUBDIR += pgp
SUBDIR += pgpdump
SUBDIR += pgpgpg
SUBDIR += pgpin
SUBDIR += php-suhosin
SUBDIR += php55-filter
SUBDIR += php55-hash
SUBDIR += php55-mcrypt
SUBDIR += php55-openssl
SUBDIR += php56-filter
SUBDIR += php56-hash
SUBDIR += php56-mcrypt
SUBDIR += php56-openssl
SUBDIR += php70-filter
SUBDIR += php70-hash
SUBDIR += php70-mcrypt
SUBDIR += php70-openssl
SUBDIR += phpdeadlock
SUBDIR += phpsecinfo
SUBDIR += pidentd
SUBDIR += pidgin-encryption
SUBDIR += pidgin-otr
SUBDIR += pinentry
SUBDIR += pinentry-curses
SUBDIR += pinentry-gnome3
SUBDIR += pinentry-gtk2
SUBDIR += pinentry-qt4
SUBDIR += pinentry-tty
SUBDIR += pixiewps
SUBDIR += pkcrack
SUBDIR += pkcs11-dump
SUBDIR += pkcs11-gateway
SUBDIR += pkcs11-helper
SUBDIR += pkesh
SUBDIR += pks
SUBDIR += pktsuckers
SUBDIR += please
SUBDIR += polarssl13
SUBDIR += poly1305aes
SUBDIR += pond
SUBDIR += portsentry
SUBDIR += ppars
SUBDIR += proftpd-mod_clamav
SUBDIR += proxycheck
SUBDIR += proxytunnel
SUBDIR += pscan
SUBDIR += pssh
SUBDIR += pulledpork
SUBDIR += pure-sfv
SUBDIR += putty
SUBDIR += pvk
SUBDIR += pwauth
SUBDIR += pwman
SUBDIR += pwman3
SUBDIR += pxytest
SUBDIR += py-AccessControl
SUBDIR += py-PF
SUBDIR += py-Products.PlonePAS
SUBDIR += py-Products.PluggableAuthService
SUBDIR += py-RestrictedPython
SUBDIR += py-scrypt
SUBDIR += py-SecretStorage
SUBDIR += py-acme
SUBDIR += py-artifacts
SUBDIR += py-bcrypt
SUBDIR += py-borg.localrole
SUBDIR += py-cerealizer
SUBDIR += py-certifi
SUBDIR += py-clamav
SUBDIR += py-cpe
SUBDIR += py-cracklib
SUBDIR += py-crits
SUBDIR += py-cryptkit
SUBDIR += py-cryptography
SUBDIR += py-cybox
SUBDIR += py-dfvfs
SUBDIR += py-ecdsa
SUBDIR += py-ed25519ll
SUBDIR += py-fail2ban
SUBDIR += py-fchksum
SUBDIR += py-flask-httpauth
SUBDIR += py-gnupg
SUBDIR += py-gnutls
SUBDIR += py-gpsoauth
SUBDIR += py-htpasswd
SUBDIR += py-itsdangerous
SUBDIR += py-kerberos
SUBDIR += py-keyczar
SUBDIR += py-keyring
SUBDIR += py-keyrings.alt
SUBDIR += py-letsencrypt
SUBDIR += py-libnacl
SUBDIR += py-m2crypto
SUBDIR += py-mcrypt
SUBDIR += py-mhash
SUBDIR += py-oauth2client
SUBDIR += py-oauthlib
SUBDIR += py-openssl
SUBDIR += py-paramiko
SUBDIR += py-passlib
SUBDIR += py-pbkdf2
SUBDIR += py-pgpdump
SUBDIR += py-plaso
SUBDIR += py-plone.app.openid
SUBDIR += py-plone.keyring
SUBDIR += py-plone.openid
SUBDIR += py-plone.protect
SUBDIR += py-plone.session
SUBDIR += py-potr
SUBDIR += py-pow
SUBDIR += py-pyaff4
SUBDIR += py-pyclamd
SUBDIR += py-pycrypto
SUBDIR += py-pycryptodome
SUBDIR += py-pycryptopp
SUBDIR += py-pydeep
SUBDIR += py-pyelliptic
SUBDIR += py-pylibacl
SUBDIR += py-pymacaroons-pynacl
SUBDIR += py-pyme
SUBDIR += py-pynacl
SUBDIR += py-pyotp
SUBDIR += py-pyptlib
SUBDIR += py-pysaml2
SUBDIR += py-pyscard
SUBDIR += py-pysha3
SUBDIR += py-python-gnupg
SUBDIR += py-python-openid
SUBDIR += py-python-registry
SUBDIR += py-rekall
SUBDIR += py-rekall-core
SUBDIR += py-rekall_gui
SUBDIR += py-requests-kerberos
SUBDIR += py-rsa
SUBDIR += py-service_identity
SUBDIR += py-signedjson
SUBDIR += py-slowaes
SUBDIR += py-ssh
SUBDIR += py-sslstrip
SUBDIR += py-stem
SUBDIR += py-stix
SUBDIR += py-tlslite
SUBDIR += py-trustedpickle
SUBDIR += py-twistedConch
SUBDIR += py-twofish
SUBDIR += py-volatility
SUBDIR += py-xmlsec
SUBDIR += py-yara
SUBDIR += py-yara-editor
SUBDIR += py-zope.app.authentication
SUBDIR += py-zope.app.localpermission
SUBDIR += py-zope.app.principalannotation
SUBDIR += py-zope.app.security
SUBDIR += py-zope.app.securitypolicy
SUBDIR += py-zope.authentication
SUBDIR += py-zope.login
SUBDIR += py-zope.password
SUBDIR += py-zope.pluggableauth
SUBDIR += py-zope.principalannotation
SUBDIR += py-zope.principalregistry
SUBDIR += py-zope.security
SUBDIR += py-zope.securitypolicy
SUBDIR += py-zope.session
SUBDIR += qtkeychain-qt4
SUBDIR += qtkeychain-qt5
SUBDIR += quantis
SUBDIR += quantis-kmod
SUBDIR += racoon2
SUBDIR += radamsa
SUBDIR += radiusniff
SUBDIR += rainbowcrack
SUBDIR += ranpwd
SUBDIR += ratproxy
SUBDIR += rats
SUBDIR += razorback-api
SUBDIR += razorback-archiveInflate
SUBDIR += razorback-clamavNugget
SUBDIR += razorback-dispatcher
SUBDIR += razorback-fileInject
SUBDIR += razorback-fsMonitor
SUBDIR += razorback-fsWalk
SUBDIR += razorback-masterNugget
SUBDIR += razorback-officeCat
SUBDIR += razorback-pdfFox
SUBDIR += razorback-scriptNugget
SUBDIR += razorback-swfScanner
SUBDIR += razorback-syslogNugget
SUBDIR += razorback-virusTotal
SUBDIR += razorback-yaraNugget
SUBDIR += rcracki_mt
SUBDIR += rdigest
SUBDIR += regripper
SUBDIR += regripperplugins
SUBDIR += reop
SUBDIR += retranslator
SUBDIR += revealrk
SUBDIR += revelation
SUBDIR += rhash
SUBDIR += rifiuti2
SUBDIR += rkhunter
SUBDIR += rndpassw
SUBDIR += ruby-camellia
SUBDIR += ruby-hmac
SUBDIR += ruby-password
SUBDIR += ruby-tcpwrap
SUBDIR += rubygem-attr_encrypted
SUBDIR += rubygem-bcrypt
SUBDIR += rubygem-bcrypt-ruby
SUBDIR += rubygem-devise-two-factor
SUBDIR += rubygem-doorkeeper
SUBDIR += rubygem-encryptor
SUBDIR += rubygem-ezcrypto
SUBDIR += rubygem-gpgr
SUBDIR += rubygem-gssapi
SUBDIR += rubygem-jugyo-twitter_oauth
SUBDIR += rubygem-metasploit-concern
SUBDIR += rubygem-metasploit-credential
SUBDIR += rubygem-metasploit-model
SUBDIR += rubygem-metasploit-payloads
SUBDIR += rubygem-metasploit_data_models
SUBDIR += rubygem-net-scp
SUBDIR += rubygem-net-sftp
SUBDIR += rubygem-net-ssh
SUBDIR += rubygem-net-ssh-gateway
SUBDIR += rubygem-net-ssh-multi
SUBDIR += rubygem-nmap-parser
SUBDIR += rubygem-omniauth
SUBDIR += rubygem-omniauth-bitbucket
SUBDIR += rubygem-omniauth-cas3
SUBDIR += rubygem-omniauth-gitlab
SUBDIR += rubygem-omniauth-multipassword
SUBDIR += rubygem-omniauth-saml
SUBDIR += rubygem-omniauth-shibboleth
SUBDIR += rubygem-origami
SUBDIR += rubygem-pyu-ruby-sasl
SUBDIR += rubygem-rack-oauth2
SUBDIR += rubygem-razorback-scriptNugget
SUBDIR += rubygem-recog
SUBDIR += rubygem-roauth
SUBDIR += rubygem-ruby-hmac
SUBDIR += rubygem-ruby-rc4
SUBDIR += rubygem-ruby-saml
SUBDIR += rubygem-scrypt
SUBDIR += rubygem-six
SUBDIR += rubygem-sshkey
SUBDIR += rubygem-sshkit
SUBDIR += rubygem-twitter_oauth
SUBDIR += s2n
SUBDIR += safesh
SUBDIR += samba-virusfilter
SUBDIR += sancp
SUBDIR += sasp
SUBDIR += scamp
SUBDIR += scanhill
SUBDIR += scanlogd
SUBDIR += scanssh
SUBDIR += scrypt
SUBDIR += seahorse
SUBDIR += seccure
SUBDIR += secpanel
SUBDIR += sectok
SUBDIR += secure_delete
SUBDIR += sguil
SUBDIR += sha
SUBDIR += shibboleth2-sp
SUBDIR += shimmer
SUBDIR += shishi
SUBDIR += shttpscanner
SUBDIR += sig2dot
SUBDIR += signify
SUBDIR += signing-party
SUBDIR += silktools
SUBDIR += sinfp
SUBDIR += skipfish
SUBDIR += sks
SUBDIR += slurpie
SUBDIR += slush
SUBDIR += smap
SUBDIR += smtpscan
SUBDIR += smurflog
SUBDIR += sniff
SUBDIR += snoopy
SUBDIR += snort
SUBDIR += snort-rep
SUBDIR += snortreport
SUBDIR += snortsam
SUBDIR += snortsnarf
SUBDIR += softether
SUBDIR += softhsm
SUBDIR += softhsm2
SUBDIR += spass
SUBDIR += spike-proxy
SUBDIR += spybye
SUBDIR += sqlmap
SUBDIR += sqlninja
SUBDIR += srm
SUBDIR += ssdeep
SUBDIR += ssh-copy-id
SUBDIR += ssh-multiadd
SUBDIR += ssh_askpass_gtk2
SUBDIR += sshblock
SUBDIR += sshguard
SUBDIR += sshguard-ipfilter
SUBDIR += sshguard-ipfw
SUBDIR += sshguard-null
SUBDIR += sshguard-pf
SUBDIR += sshit
SUBDIR += sshpass
SUBDIR += ssl-admin
SUBDIR += sslscan
SUBDIR += sslsniffer
SUBDIR += sslsplit
SUBDIR += sslwrap
SUBDIR += sssd
SUBDIR += ssss
SUBDIR += sst
SUBDIR += starttls
SUBDIR += stegdetect
SUBDIR += steghide
SUBDIR += stoken
SUBDIR += strobe
SUBDIR += strongswan
SUBDIR += stud
SUBDIR += stunnel
SUBDIR += subversion-gnome-keyring
SUBDIR += subversion-kwallet
SUBDIR += subweb
SUBDIR += sudo
SUBDIR += sudoscript
SUBDIR += super
SUBDIR += suricata
SUBDIR += swatch
SUBDIR += switzerland
SUBDIR += symbion-sslproxy
SUBDIR += tclgpg
SUBDIR += tclsasl
SUBDIR += tcpcrypt
SUBDIR += tinc
SUBDIR += tinyca
SUBDIR += titus
SUBDIR += tlswrap
SUBDIR += tmux-cssh
SUBDIR += tor
SUBDIR += tor-devel
SUBDIR += tpm-tools
SUBDIR += tpmmanager
SUBDIR += trinokiller
SUBDIR += tripwire
SUBDIR += tripwire-131
SUBDIR += tripwire12
SUBDIR += trousers
SUBDIR += truecrack
SUBDIR += truecrypt
SUBDIR += tsshbatch
SUBDIR += tthsum
SUBDIR += umit
SUBDIR += unhide
SUBDIR += unicornscan
SUBDIR += unssh
SUBDIR += vault
SUBDIR += vinetto
SUBDIR += vlock
SUBDIR += vlog
SUBDIR += vm-to-tor
SUBDIR += vnccrack
SUBDIR += vpnc
SUBDIR += vuxml
SUBDIR += vxquery
SUBDIR += w3af
SUBDIR += wapiti
SUBDIR += webfwlog
SUBDIR += webscarab
SUBDIR += webshag
SUBDIR += whatweb
SUBDIR += wipe
SUBDIR += wolfssl
SUBDIR += wpa_supplicant
SUBDIR += xca
SUBDIR += xinetd
SUBDIR += xml-security
SUBDIR += xmlsec1
SUBDIR += xorsearch
SUBDIR += xspy
SUBDIR += yafic
SUBDIR += yapet
SUBDIR += yara
SUBDIR += yersinia
SUBDIR += ykclient
SUBDIR += ykpers
SUBDIR += yubikey-personalization-gui
SUBDIR += zebedee
SUBDIR += zenmap
SUBDIR += zxid
SUBDIR += zzuf
.include <bsd.port.subdir.mk>
|