scanoss 0.15.6 → 0.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/CHANGELOG.md +53 -87
  2. package/LICENSE +20 -20
  3. package/README.md +75 -3
  4. package/assets/ReportHTMLTemplate/index.html +11 -8
  5. package/assets/data/scanoss-crypto-library-rules.json +2930 -0
  6. package/build/main/cli/bin/cli-bin.js +6 -2
  7. package/build/main/cli/commands/crypto.js +14 -7
  8. package/build/main/cli/commands/scan.js +68 -25
  9. package/build/main/sdk/Cryptography/Algorithm/Components/ComponentAlgorithmScanner.d.ts +19 -0
  10. package/build/main/sdk/Cryptography/Algorithm/Components/ComponentAlgorithmScanner.js +27 -0
  11. package/build/main/sdk/Cryptography/Algorithm/Files/AlgorithmProcessor.d.ts +1 -0
  12. package/build/main/sdk/Cryptography/Algorithm/Files/AlgorithmProcessor.js +39 -0
  13. package/build/main/sdk/Cryptography/Algorithm/Files/FileAlgorithmScanner.d.ts +42 -0
  14. package/build/main/sdk/Cryptography/Algorithm/Files/FileAlgorithmScanner.js +87 -0
  15. package/build/main/sdk/Cryptography/{CryptoDef/CryptoDef.d.ts → Algorithm/Files/Helper/Helper.d.ts} +1 -1
  16. package/build/main/sdk/Cryptography/{CryptoDef/CryptoDef.js → Algorithm/Files/Helper/Helper.js} +1 -1
  17. package/build/main/sdk/Cryptography/{Scanneable → Algorithm/Files/Scanneable}/CryptoItem.d.ts +2 -2
  18. package/build/main/sdk/Cryptography/{Scanneable → Algorithm/Files/Scanneable}/CryptoItem.js +1 -1
  19. package/build/main/sdk/Cryptography/BaseCryptographyScanner.d.ts +25 -0
  20. package/build/main/sdk/Cryptography/BaseCryptographyScanner.js +23 -0
  21. package/build/main/sdk/Cryptography/CryptoCfg.d.ts +32 -5
  22. package/build/main/sdk/Cryptography/CryptoCfg.js +35 -5
  23. package/build/main/sdk/Cryptography/CryptographyScanner.d.ts +15 -21
  24. package/build/main/sdk/Cryptography/CryptographyScanner.js +31 -41
  25. package/build/main/sdk/Cryptography/CryptographyTypes.d.ts +47 -3
  26. package/build/main/sdk/Cryptography/Helper/ResultCollector/Component/ComponentCryptographyResultColletor.d.ts +32 -0
  27. package/build/main/sdk/Cryptography/Helper/ResultCollector/Component/ComponentCryptographyResultColletor.js +66 -0
  28. package/build/main/sdk/Cryptography/Helper/ResultCollector/File/FileCryptographyResultCollector.d.ts +36 -0
  29. package/build/main/sdk/Cryptography/Helper/ResultCollector/File/FileCryptographyResultCollector.js +65 -0
  30. package/build/main/sdk/Cryptography/Hint/Components/ComponentHintScanner.d.ts +19 -0
  31. package/build/main/sdk/Cryptography/Hint/Components/ComponentHintScanner.js +27 -0
  32. package/build/main/sdk/Cryptography/Hint/Files/FileHintScanner.d.ts +35 -0
  33. package/build/main/sdk/Cryptography/Hint/Files/FileHintScanner.js +69 -0
  34. package/build/main/sdk/Cryptography/Hint/Files/HintProcessor.d.ts +1 -0
  35. package/build/main/sdk/Cryptography/Hint/Files/HintProcessor.js +34 -0
  36. package/build/main/sdk/Filtering/Filtering.js +1 -2
  37. package/build/main/sdk/Logger.d.ts +2 -0
  38. package/build/main/sdk/Logger.js +7 -2
  39. package/build/main/sdk/Report/DataLayer/DataLayerTypes.d.ts +8 -4
  40. package/build/main/sdk/Report/DataLayer/DataProviders/CryptographyDataProvider.d.ts +7 -7
  41. package/build/main/sdk/Report/DataLayer/DataProviders/CryptographyDataProvider.js +71 -11
  42. package/build/main/sdk/Services/Grpc/BaseService.js +1 -1
  43. package/build/main/sdk/Services/Grpc/CryptographyService.d.ts +3 -0
  44. package/build/main/sdk/Services/Grpc/CryptographyService.js +16 -1
  45. package/build/main/sdk/Services/Grpc/scanoss/api/cryptography/v2/scanoss-cryptography_grpc_pb.d.ts +72 -0
  46. package/build/main/sdk/Services/Grpc/scanoss/api/cryptography/v2/scanoss-cryptography_grpc_pb.js +87 -3
  47. package/build/main/sdk/Services/Grpc/scanoss/api/cryptography/v2/scanoss-cryptography_pb.js +1987 -127
  48. package/build/main/sdk/Utils/Concurrency/Job.d.ts +8 -0
  49. package/build/main/sdk/Utils/Concurrency/Job.js +17 -0
  50. package/build/main/sdk/Utils/Concurrency/JobProcessor.d.ts +10 -0
  51. package/build/main/sdk/Utils/Concurrency/JobProcessor.js +51 -0
  52. package/build/main/sdk/Utils/Concurrency/WorkerPool.d.ts +14 -0
  53. package/build/main/sdk/Utils/Concurrency/WorkerPool.js +69 -0
  54. package/build/main/sdk/Utils/Concurrency/types.d.ts +18 -0
  55. package/build/main/sdk/Utils/Concurrency/types.js +3 -0
  56. package/build/main/sdk/scanner/Scanner.d.ts +1 -1
  57. package/build/main/sdk/scanner/Scanner.js +16 -6
  58. package/build/main/sdk/scanner/ScannerTypes.js +1 -1
  59. package/build/main/tsconfig.tsbuildinfo +1 -1
  60. package/build/module/cli/bin/cli-bin.js +6 -2
  61. package/build/module/cli/commands/crypto.js +14 -7
  62. package/build/module/cli/commands/scan.js +89 -46
  63. package/build/module/sdk/Cryptography/Algorithm/Components/ComponentAlgorithmScanner.d.ts +19 -0
  64. package/build/module/sdk/Cryptography/Algorithm/Components/ComponentAlgorithmScanner.js +23 -0
  65. package/build/module/sdk/Cryptography/Algorithm/Files/AlgorithmProcessor.d.ts +1 -0
  66. package/build/module/sdk/Cryptography/Algorithm/Files/AlgorithmProcessor.js +36 -0
  67. package/build/module/sdk/Cryptography/Algorithm/Files/FileAlgorithmScanner.d.ts +42 -0
  68. package/build/module/sdk/Cryptography/Algorithm/Files/FileAlgorithmScanner.js +80 -0
  69. package/build/module/sdk/Cryptography/{CryptoDef/CryptoDef.d.ts → Algorithm/Files/Helper/Helper.d.ts} +1 -1
  70. package/build/module/sdk/Cryptography/{CryptoDef/CryptoDef.js → Algorithm/Files/Helper/Helper.js} +1 -1
  71. package/build/module/sdk/Cryptography/{Scanneable → Algorithm/Files/Scanneable}/CryptoItem.d.ts +2 -2
  72. package/build/module/sdk/Cryptography/{Scanneable → Algorithm/Files/Scanneable}/CryptoItem.js +1 -1
  73. package/build/module/sdk/Cryptography/BaseCryptographyScanner.d.ts +25 -0
  74. package/build/module/sdk/Cryptography/BaseCryptographyScanner.js +21 -0
  75. package/build/module/sdk/Cryptography/CryptoCfg.d.ts +32 -5
  76. package/build/module/sdk/Cryptography/CryptoCfg.js +39 -6
  77. package/build/module/sdk/Cryptography/CryptographyScanner.d.ts +15 -21
  78. package/build/module/sdk/Cryptography/CryptographyScanner.js +32 -39
  79. package/build/module/sdk/Cryptography/CryptographyTypes.d.ts +47 -3
  80. package/build/module/sdk/Cryptography/Helper/ResultCollector/Component/ComponentCryptographyResultColletor.d.ts +32 -0
  81. package/build/module/sdk/Cryptography/Helper/ResultCollector/Component/ComponentCryptographyResultColletor.js +60 -0
  82. package/build/module/sdk/Cryptography/Helper/ResultCollector/File/FileCryptographyResultCollector.d.ts +36 -0
  83. package/build/module/sdk/Cryptography/Helper/ResultCollector/File/FileCryptographyResultCollector.js +59 -0
  84. package/build/module/sdk/Cryptography/Hint/Components/ComponentHintScanner.d.ts +19 -0
  85. package/build/module/sdk/Cryptography/Hint/Components/ComponentHintScanner.js +23 -0
  86. package/build/module/sdk/Cryptography/Hint/Files/FileHintScanner.d.ts +35 -0
  87. package/build/module/sdk/Cryptography/Hint/Files/FileHintScanner.js +62 -0
  88. package/build/module/sdk/Cryptography/Hint/Files/HintProcessor.d.ts +1 -0
  89. package/build/module/sdk/Cryptography/Hint/Files/HintProcessor.js +31 -0
  90. package/build/module/sdk/Filtering/Filtering.js +1 -2
  91. package/build/module/sdk/Logger.d.ts +2 -0
  92. package/build/module/sdk/Logger.js +8 -2
  93. package/build/module/sdk/Report/DataLayer/DataLayerTypes.d.ts +8 -4
  94. package/build/module/sdk/Report/DataLayer/DataProviders/CryptographyDataProvider.d.ts +7 -7
  95. package/build/module/sdk/Report/DataLayer/DataProviders/CryptographyDataProvider.js +73 -14
  96. package/build/module/sdk/Services/Grpc/BaseService.js +1 -1
  97. package/build/module/sdk/Services/Grpc/CryptographyService.d.ts +3 -0
  98. package/build/module/sdk/Services/Grpc/CryptographyService.js +16 -1
  99. package/build/module/sdk/Services/Grpc/scanoss/api/cryptography/v2/scanoss-cryptography_grpc_pb.d.ts +72 -0
  100. package/build/module/sdk/Services/Grpc/scanoss/api/cryptography/v2/scanoss-cryptography_grpc_pb.js +87 -3
  101. package/build/module/sdk/Services/Grpc/scanoss/api/cryptography/v2/scanoss-cryptography_pb.js +1987 -127
  102. package/build/module/sdk/Utils/Concurrency/Job.d.ts +8 -0
  103. package/build/module/sdk/Utils/Concurrency/Job.js +14 -0
  104. package/build/module/sdk/Utils/Concurrency/JobProcessor.d.ts +10 -0
  105. package/build/module/sdk/Utils/Concurrency/JobProcessor.js +47 -0
  106. package/build/module/sdk/Utils/Concurrency/WorkerPool.d.ts +14 -0
  107. package/build/module/sdk/Utils/Concurrency/WorkerPool.js +65 -0
  108. package/build/module/sdk/Utils/Concurrency/types.d.ts +18 -0
  109. package/build/module/sdk/Utils/Concurrency/types.js +2 -0
  110. package/build/module/sdk/scanner/Scanner.d.ts +1 -1
  111. package/build/module/sdk/scanner/Scanner.js +16 -7
  112. package/build/module/sdk/scanner/ScannerTypes.js +1 -1
  113. package/build/module/tsconfig.module.tsbuildinfo +1 -1
  114. package/package.json +1 -1
  115. package/build/main/sdk/Cryptography/CryptoProvider/LocalCrypto.d.ts +0 -21
  116. package/build/main/sdk/Cryptography/CryptoProvider/LocalCrypto.js +0 -37
  117. package/build/main/sdk/Cryptography/Worker/ThreadPool.d.ts +0 -21
  118. package/build/main/sdk/Cryptography/Worker/ThreadPool.js +0 -87
  119. package/build/main/sdk/Cryptography/Worker/Worker.d.ts +0 -15
  120. package/build/main/sdk/Cryptography/Worker/Worker.js +0 -69
  121. package/build/main/sdk/Cryptography/utils/adapters/cryptoAdapters.d.ts +0 -8
  122. package/build/main/sdk/Cryptography/utils/adapters/cryptoAdapters.js +0 -15
  123. package/build/module/sdk/Cryptography/CryptoProvider/LocalCrypto.d.ts +0 -21
  124. package/build/module/sdk/Cryptography/CryptoProvider/LocalCrypto.js +0 -36
  125. package/build/module/sdk/Cryptography/Worker/ThreadPool.d.ts +0 -21
  126. package/build/module/sdk/Cryptography/Worker/ThreadPool.js +0 -89
  127. package/build/module/sdk/Cryptography/Worker/Worker.d.ts +0 -15
  128. package/build/module/sdk/Cryptography/Worker/Worker.js +0 -66
  129. package/build/module/sdk/Cryptography/utils/adapters/cryptoAdapters.d.ts +0 -8
  130. package/build/module/sdk/Cryptography/utils/adapters/cryptoAdapters.js +0 -12
  131. /package/assets/data/{defaultCryptoRules.json → scanoss-crypto-algorithm-rules.json} +0 -0
@@ -0,0 +1,2930 @@
1
+ [
2
+ {
3
+ "id": "library/webcrypto",
4
+ "name": "Web Cryptography API",
5
+ "description": "A JavaScript API for performing basic cryptographic operations in web applications.",
6
+ "keywords": [
7
+ "window.crypto.subtle",
8
+ "crypto.subtle.",
9
+ "crypto.getRandomValues",
10
+ "NodeWebCrypto",
11
+ "WebCryptoAPI"
12
+ ],
13
+ "url": "https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API",
14
+ "category": "library",
15
+ "purl": "pkg:generic/webcrypto",
16
+ "tags": [
17
+ "JavaScript"
18
+ ]
19
+ },
20
+ {
21
+ "id": "library/mbedtls",
22
+ "name": "Mbed TLS",
23
+ "description": "An open source, portable, easy to use, readable and flexible SSL library (formerly known as PolarSSL).",
24
+ "keywords": [
25
+ "mbedtls/",
26
+ "mbedtls_ssl_",
27
+ "mbedtls_aes_",
28
+ "mbedtls_sha",
29
+ "mbedtls_x509_",
30
+ "mbedtls_key",
31
+ "mbedtls_err",
32
+ "mbedtls_net",
33
+ "mbedtls_ctr",
34
+ "mbedtls_entropy_context",
35
+ "mbedtls_pk_context",
36
+ "mbedtls_entropy_",
37
+ "mbedtls_pk_",
38
+ "mbedtls_md5",
39
+ "mbedtls_ecp_",
40
+ "mbedtls_ecdsa_",
41
+ "mbedtls_mpi",
42
+ "mbedtls_rsa_",
43
+ "mbedtls_md_",
44
+ "mbedtls_dhm_context",
45
+ "mbedtls_gcm",
46
+ "mbedtls_cipher_",
47
+ "mbedtls_ecdh_context",
48
+ "mbedtls_hmac_",
49
+ "mbedtls_debug_",
50
+ "mbedtls_timing_",
51
+ "mbedtls_check_return",
52
+ "mbedtls_platform_",
53
+ "mbedtls_base64_",
54
+ "mbedtls_asn1_"
55
+ ],
56
+ "url": "https://tls.mbed.org/",
57
+ "category": "library",
58
+ "purl": "pkg:github/ARMmbed/mbedtls",
59
+ "tags": [
60
+ "C"
61
+ ]
62
+ },
63
+ {
64
+ "id": "library/passlib",
65
+ "name": "Passlib",
66
+ "description": "A password hashing library for Python 2 & 3, which provides cross-platform implementations of over 30 password hashing algorithms.",
67
+ "keywords": [
68
+ "from passlib.hash",
69
+ "passlib.context",
70
+ "CryptContext",
71
+ "passlib.hash",
72
+ "passlib.pwd",
73
+ "passlib.registry",
74
+ "passlib.crypto",
75
+ "passlib.exc",
76
+ "passlib.ifc",
77
+ "passlib.utils"
78
+ ],
79
+ "url": "https://passlib.readthedocs.io/",
80
+ "category": "library",
81
+ "purl": "pkg:pypi/passlib",
82
+ "tags": [
83
+ "Python"
84
+ ]
85
+ },
86
+ {
87
+ "id": "library/jose-jwt",
88
+ "name": "JOSE & JWT Libraries",
89
+ "description": "Libraries for handling JSON Object Signing and Encryption (JOSE) and JSON Web Tokens (JWT).",
90
+ "keywords": [
91
+ "jose.jwk",
92
+ "jose.jwt",
93
+ "jwt.sign",
94
+ "JsonWebToken",
95
+ "BadJOSEException",
96
+ "JOSEObjectType",
97
+ "JOSEHandler",
98
+ "JWSCreator",
99
+ "JWSProvider",
100
+ "JWEProvider",
101
+ "JWECreator",
102
+ "JWTVerificationException",
103
+ "JOSEObjectCodec",
104
+ "JWTClaimsVerifier",
105
+ "JWTVerifierBuilder",
106
+ "JWTValidator"
107
+ ],
108
+ "url": "https://jwt.io/",
109
+ "category": "library",
110
+ "purl": "pkg:npm/jsonwebtoken",
111
+ "tags": [
112
+ "JavaScript"
113
+ ]
114
+ },
115
+ {
116
+ "id": "library/nss",
117
+ "name": "Network Security Services (NSS)",
118
+ "description": "A set of libraries designed to support cross-platform development of security-enabled client and server applications.",
119
+ "keywords": [
120
+ "NSS_Init",
121
+ "#include <nss.h>"
122
+ ],
123
+ "url": "https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS",
124
+ "category": "library",
125
+ "purl": "pkg:github/nss-dev/nss",
126
+ "tags": [
127
+ "C"
128
+ ]
129
+ },
130
+ {
131
+ "id": "library/openssl",
132
+ "name": "OpenSSL",
133
+ "description": "A robust, full-featured open-source toolkit implementing the Secure Sockets Layer (SSL) and Transport Layer Security (TLS) protocols.",
134
+ "keywords": [
135
+ "include <openssl/",
136
+ "openssl/ssl.h",
137
+ "openssl/crypto.h",
138
+ "openssl/err.h",
139
+ "libssl.",
140
+ "libcrypto.",
141
+ "libeay32.dll",
142
+ "ssleay32.dll",
143
+ "pyopenssl",
144
+ "crypto.X509"
145
+ ],
146
+ "url": "https://www.openssl.org/docs/",
147
+ "category": "library",
148
+ "purl": "pkg:github/openssl/openssl",
149
+ "tags": [
150
+ "C"
151
+ ]
152
+ },
153
+ {
154
+ "id": "library/bouncycastle",
155
+ "name": "BouncyCastle",
156
+ "description": "A collection of APIs used in cryptography, including lightweight cryptography for Java and C#.",
157
+ "keywords": [
158
+ "org.bouncycastle.",
159
+ "bcprov-jdk",
160
+ "bcpkix-jdk",
161
+ "bcmail-jdk",
162
+ "bcpg-jdk",
163
+ "bctls-jdk",
164
+ "Org.BouncyCastle.",
165
+ "BouncyCastle.NetCore",
166
+ "Portable.BouncyCastle",
167
+ "BouncyCastleProvider"
168
+ ],
169
+ "url": "https://www.bouncycastle.org/documentation.html",
170
+ "category": "library",
171
+ "purl": "pkg:github/bouncycastle/bc-java",
172
+ "tags": [
173
+ "Java"
174
+ ]
175
+ },
176
+ {
177
+ "id": "library/libsodium",
178
+ "name": "libsodium",
179
+ "description": "A modern, easy-to-use software library for encryption, decryption, signatures, password hashing, and more.",
180
+ "keywords": [
181
+ "crypto_secretbox_",
182
+ "crypto_box_seal",
183
+ "crypto_sign",
184
+ "crypto_generichash",
185
+ "crypto_pwhash",
186
+ "crypto_box_keypair",
187
+ "crypto_sign_keypair",
188
+ "crypto_aead_xchacha20poly1305",
189
+ "sodium_memzero",
190
+ "sodium_mlock",
191
+ "sodium_munlock",
192
+ "sodium_memcmp",
193
+ "sodium_increment",
194
+ "sodium.h",
195
+ "libsodium",
196
+ "sodium_version_H"
197
+ ],
198
+ "url": "https://libsodium.gitbook.io/doc/",
199
+ "category": "library",
200
+ "purl": "pkg:github/jedisct1/libsodium",
201
+ "tags": [
202
+ "C"
203
+ ]
204
+ },
205
+ {
206
+ "id": "package/cryptojs",
207
+ "name": "CryptoJS",
208
+ "description": "A self-contained Python package of low-level cryptographic primitives.",
209
+ "keywords": [
210
+ "require(\"crypto-js\");",
211
+ "CryptoJS."
212
+ ],
213
+ "url": "https://cryptojs.gitbook.io/docs/",
214
+ "category": "package",
215
+ "purl": "pkg:npm/crypto-js",
216
+ "tags": [
217
+ "JavaScript"
218
+ ]
219
+ },
220
+ {
221
+ "id": "package/nodjs-crypto",
222
+ "name": "CryptoJS",
223
+ "description": "A built-in NodeJS module",
224
+ "keywords": [
225
+ "require(\"crypto\");",
226
+ "node:crypto"
227
+ ],
228
+ "url": "https://nodejs.org/api/crypto.html",
229
+ "category": "package",
230
+ "purl": "pkg:npm/node",
231
+ "tags": [
232
+ "JavaScript"
233
+ ]
234
+ },
235
+ {
236
+ "id": "package/bcryptjs",
237
+ "name": "BcryptJS",
238
+ "description": "Package for encrypting passwords using secure hashes",
239
+ "keywords": [
240
+ "require(\"bcryptjs\");",
241
+ "bcrypt."
242
+ ],
243
+ "url": " https://github.com/dcodeIO/bcrypt.js",
244
+ "category": "package",
245
+ "purl": "pkg:npm/bcryptjs",
246
+ "tags": [
247
+ "JavaScript"
248
+ ]
249
+ },
250
+ {
251
+ "id": "package/openpgp-js",
252
+ "name": "OpenPGP.js",
253
+ "description": "End-to-end implementation of OpenPGP standard",
254
+ "keywords": [
255
+ "require(\"openpgp\");",
256
+ "openpgp."
257
+ ],
258
+ "url": "https://openpgpjs.org/",
259
+ "category": "package",
260
+ "purl": "pkg:npm/openpgp",
261
+ "tags": [
262
+ "JavaScript"
263
+ ]
264
+ },
265
+ {
266
+ "id": "library/tweennacl-js",
267
+ "name": "TweetNaCl.js",
268
+ "description": "Lightwight library for modern cryptography",
269
+ "keywords": [
270
+ "require(\"tweetnacl\");",
271
+ "nacl.util = require(\"tweetnacl-util\");"
272
+ ],
273
+ "url": "https://github.com/dchest/tweetnacl-js",
274
+ "category": "library",
275
+ "purl": "pkg:npm/tweennacl",
276
+ "tags": [
277
+ "JavaScript"
278
+ ]
279
+ },
280
+ {
281
+ "id": "package/pycryptodome",
282
+ "name": "PyCryptodome",
283
+ "description": "A self-contained Python package of low-level cryptographic primitives.",
284
+ "keywords": [
285
+ "Cryptodome.",
286
+ "pycryptodome"
287
+ ],
288
+ "url": "https://pycryptodome.readthedocs.io/en/latest/",
289
+ "category": "package",
290
+ "purl": "pkg:github/Legrandin/pycryptodome",
291
+ "tags": [
292
+ "Python"
293
+ ]
294
+ },
295
+ {
296
+ "id": "library/cryptography",
297
+ "name": "Cryptography (Python package)",
298
+ "description": "A Python library providing cryptographic recipes and primitives to developers.",
299
+ "keywords": [
300
+ "cryptography.hazmat",
301
+ "cryptography.fernet",
302
+ "cryptography.x509"
303
+ ],
304
+ "url": "https://cryptography.io/en/latest/",
305
+ "category": "library",
306
+ "purl": "pkg:pypi/cryptography",
307
+ "tags": [
308
+ "Python"
309
+ ]
310
+ },
311
+ {
312
+ "id": "library/nacl",
313
+ "name": "NaCl (Networking and Cryptography Library)",
314
+ "description": "A high-speed software library for network communication, encryption, decryption, signatures, etc.",
315
+ "keywords": [
316
+ "crypto_auth",
317
+ "crypto_core",
318
+ "crypto_hash",
319
+ "crypto_onetimeauth",
320
+ "crypto_scalarmult",
321
+ "crypto_stream",
322
+ "crypto_verify",
323
+ "libnacl.",
324
+ "nacl.h",
325
+ "crypto_secretbox",
326
+ "crypto_sign",
327
+ "crypto_box",
328
+ "libsodium (NaCl fork)"
329
+ ],
330
+ "url": "https://nacl.cr.yp.to/",
331
+ "category": "library",
332
+ "purl": "pkg:github/dedis/nacl",
333
+ "tags": [
334
+ "C"
335
+ ]
336
+ },
337
+ {
338
+ "id": "library/magical-crypto-friends",
339
+ "name": "MCF (Magical Crypto Friends)",
340
+ "description": "A modern cryptographic library providing a common API for multiple cryptographic backends.",
341
+ "keywords": [
342
+ "MCFContext",
343
+ "MCF::Key",
344
+ "MCF::Hash",
345
+ "MCF_init",
346
+ "MCF_encrypt",
347
+ "MCF_decrypt",
348
+ "MCF_cipher_",
349
+ "MCF_hash_",
350
+ "MCF_hmac_",
351
+ "MCF_kdf_",
352
+ "MCF_rsa_",
353
+ "MCF_ecdsa_",
354
+ "MCF_curve25519_",
355
+ "MCF_ed25519_",
356
+ "MCF_secure_",
357
+ "MCF_aead_",
358
+ "MCF_poly1305_",
359
+ "MCF_constant_",
360
+ "MCF_asn1_",
361
+ "MCF_pem_",
362
+ "MCF_crypto_",
363
+ "MCF_signature_",
364
+ "MCF_threshold_",
365
+ "MCF_oblivious_",
366
+ "MCF_commitment_"
367
+ ],
368
+ "url": "https://github.com/blockstream/mcf",
369
+ "category": "library",
370
+ "purl": "pkg:github/blockstream/mcf",
371
+ "tags": [
372
+ "C++"
373
+ ]
374
+ },
375
+ {
376
+ "id": "sdk/awskms",
377
+ "name": "AWS Key Management Service (KMS)",
378
+ "description": "A managed service that makes it easy to create and control the encryption keys used to encrypt your data.",
379
+ "keywords": [
380
+ "GenerateDataKey",
381
+ "ScheduleKeyDeletion",
382
+ "EnableKey",
383
+ "ListAliases",
384
+ "KeyPolicy",
385
+ "CustomerMasterKeySpec",
386
+ "MultiRegionKey",
387
+ "ReplicateKey",
388
+ "UpdatePrimaryRegion",
389
+ "aws-kms",
390
+ "AWSKMS",
391
+ "KmsClient",
392
+ "aws-sdk-kms",
393
+ "boto3.client('kms')",
394
+ "new AWS.KMS"
395
+ ],
396
+ "url": "https://docs.aws.amazon.com/kms/latest/developerguide/overview.html",
397
+ "category": "sdk",
398
+ "purl": "pkg:aws/kms",
399
+ "tags": [
400
+ "Generic"
401
+ ]
402
+ },
403
+ {
404
+ "id": "framework/spring-security",
405
+ "name": "Spring Security",
406
+ "description": "Spring Security provides security services for the Spring IO Platform.",
407
+ "keywords": [
408
+ "SecurityContextHolder.getContext",
409
+ "SecurityContext.getAuthentication",
410
+ "UserDetailsService.loadUserByUsername",
411
+ "@PreAuthorize(",
412
+ "@PostAuthorize("
413
+ ],
414
+ "url": "https://spring.io/projects/spring-security",
415
+ "category": "framework",
416
+ "purl": "pkg:github/spring-projects/spring-security",
417
+ "tags": [
418
+ "Java"
419
+ ]
420
+ },
421
+ {
422
+ "id": "library/googletink",
423
+ "name": "Google Tink",
424
+ "description": "A multi-language, cross-platform library that provides cryptographic APIs that are secure, easy to use correctly, and hard(er) to misuse.",
425
+ "keywords": [
426
+ "com.google.crypto.tink",
427
+ "google/cloud/tink",
428
+ "github.com/google/tink",
429
+ "KeysetHandle",
430
+ "KeysetManager",
431
+ "KeysetReader",
432
+ "KeysetWriter",
433
+ "KeyTemplate",
434
+ "CleartextKeysetHandle",
435
+ "DeterministicAead",
436
+ "StreamingAead",
437
+ "KmsClient",
438
+ "KmsAead",
439
+ "GcpKmsClient",
440
+ "AwsKmsClient",
441
+ "Registry.registerKeyManager",
442
+ "AeadFactory.getPrimitive",
443
+ "MacFactory.getPrimitive",
444
+ "tink.proto",
445
+ "tink_bindings",
446
+ "tinkey",
447
+ "google-crypto-tink",
448
+ "tink-gcpkms",
449
+ "tink-awskms",
450
+ "google-cloud/tink'",
451
+ "tink-testing-server",
452
+ "tinkey create-keyset",
453
+ "tinkey create-public-keyset",
454
+ "TinkException"
455
+ ],
456
+ "url": "https://developers.google.com/tink",
457
+ "category": "library",
458
+ "purl": "pkg:github/google/tink",
459
+ "tags": [
460
+ "Java",
461
+ "Python",
462
+ "Go",
463
+ "C"
464
+ ]
465
+ },
466
+ {
467
+ "id": "sdk/microsoftcng",
468
+ "name": "Microsoft Cryptography Next Generation (CNG)",
469
+ "description": "A suite of cryptographic APIs that are part of the Windows operating system, used to perform cryptographic operations.",
470
+ "keywords": [
471
+ "NCryptDeleteKey",
472
+ "NCryptOpenStorageProvider",
473
+ "NCryptOpenKey",
474
+ "NCryptImportKey",
475
+ "NCryptExportKey",
476
+ "NCryptSignHash",
477
+ "NCryptVerifySignature",
478
+ "NCryptSecretAgreement",
479
+ "ICngAsymmetricAlgorithmProvider",
480
+ "ICngSymmetricAlgorithmProvider",
481
+ "ICngKey",
482
+ "bcrypt.h",
483
+ "ncrypt.h",
484
+ "bcrypt.dll",
485
+ "ncrypt.dll",
486
+ "NCryptCreatePersistedKey",
487
+ "BCryptEncrypt",
488
+ "BCryptDecrypt",
489
+ "Microsoft CNG"
490
+ ],
491
+ "url": "https://docs.microsoft.com/en-us/windows/win32/seccng/cng-portal",
492
+ "category": "sdk",
493
+ "purl": "pkg:github/microsoft/CNG",
494
+ "tags": [
495
+ "C"
496
+ ]
497
+ },
498
+ {
499
+ "id": "framework/javajca-jce",
500
+ "name": "Java Cryptography Architecture/Java Cryptography Extension (JCA/JCE)",
501
+ "description": "A framework for accessing and developing cryptographic functionality for the Java platform.",
502
+ "keywords": [
503
+ "SecretKeySpec",
504
+ "IvParameterSpec",
505
+ "PBEKeySpec",
506
+ "X509EncodedKeySpec",
507
+ "PKCS8EncodedKeySpec",
508
+ "GCMParameterSpec",
509
+ "DHParameterSpec",
510
+ "KeyStore.PrivateKeyEntry",
511
+ "java.security.egd",
512
+ "javax.net.ssl.keyStore",
513
+ "javax.net.ssl.trustStore",
514
+ "java.policy",
515
+ "java.login.config",
516
+ "JceSecurity",
517
+ "KeyStore.getDefaultType",
518
+ "AlgorithmParameters.getInstance",
519
+ "AlgorithmParameterGenerator.getInstance",
520
+ "CertificateFactory.getInstance",
521
+ "jarsigner",
522
+ "javax.crypto",
523
+ "java.security",
524
+ "Cipher.getInstance",
525
+ "javax.crypto.spec.SecretKeySpec",
526
+ "javax.crypto.Cipher"
527
+ ],
528
+ "url": "https://docs.oracle.com/javase/8/docs/technotes/guides/security/crypto/CryptoSpec.html",
529
+ "category": "framework",
530
+ "purl": "pkg:github/oracle/jdk8u",
531
+ "tags": [
532
+ "Java"
533
+ ]
534
+ },
535
+ {
536
+ "id": "library/gnutls",
537
+ "name": "GnuTLS",
538
+ "description": "GnuTLS is an implementation of the SSL, TLS, and DTLS protocols that is compatible with various operating systems. It is part of the GNU project.",
539
+ "keywords": [
540
+ "gnutls/gnutls.h",
541
+ "gnutls_",
542
+ "GNUTLS_",
543
+ "libgnutls.so"
544
+ ],
545
+ "url": "https://www.gnutls.org/documentation.html",
546
+ "category": "library",
547
+ "purl": "pkg:github/gnutls/gnutls",
548
+ "tags": [
549
+ "C"
550
+ ]
551
+ },
552
+ {
553
+ "id": "library/crypto-browserify",
554
+ "name": "crypto-browserify",
555
+ "description": "A port of node's crypto module to the browser.",
556
+ "keywords": [
557
+ "require('browserify"
558
+ ],
559
+ "url": "https://browserify.org/",
560
+ "category": "library",
561
+ "purl": "pkg:github/browserify/crypto-browserify",
562
+ "tags": [
563
+ "JavaScript"
564
+ ]
565
+ },
566
+ {
567
+ "id": "library/wolfssl",
568
+ "name": "WolfSSL",
569
+ "description": "(CyaSSL) WolfSSL is a lightweight, open-source SSL/TLS library designed for resource-constrained environments such as embedded devices.",
570
+ "keywords": [
571
+ "wolfssl/options.h",
572
+ "wolfssl/ssl.h",
573
+ "wolfssl/wolfcrypt/",
574
+ "wolfSSL_CTX_new",
575
+ "wolfSSL_new",
576
+ "wolfSSL_connect",
577
+ "wolfSSL_accept",
578
+ "libwolfssl.so"
579
+ ],
580
+ "url": "https://www.wolfssl.com/docs/",
581
+ "category": "library",
582
+ "purl": "pkg:github/wolfSSL/wolfssl",
583
+ "tags": [
584
+ "C"
585
+ ]
586
+ },
587
+ {
588
+ "id": "library/boringssl",
589
+ "name": "BoringSSL",
590
+ "description": "BoringSSL is a cryptographic library forked from OpenSSL, designed by Google to meet their specific needs for speed, security, and maintainability.",
591
+ "keywords": [
592
+ "EVP_has_aes_hardware",
593
+ "boringssl_prefix_symbols.h",
594
+ "openssl/is_boringssl.h",
595
+ "OPENSSL_IS_BORINGSSL",
596
+ "boringssl.h"
597
+ ],
598
+ "url": "https://boringssl.googlesource.com/boringssl/",
599
+ "category": "library",
600
+ "purl": "pkg:googlesource/boringssl",
601
+ "tags": [
602
+ "C"
603
+ ]
604
+ },
605
+ {
606
+ "id": "library/paramiko",
607
+ "name": "paramiko",
608
+ "description": "Paramiko is a pure-Python 1 (3.6+) implementation of the SSHv2 protocol 2, providing both client and server functionality.",
609
+ "keywords": [
610
+ "paramiko.",
611
+ "import paramiko",
612
+ "from paramiko"
613
+ ],
614
+ "url": "https://www.paramiko.org/",
615
+ "category": "library",
616
+ "purl": "pkg:github/paramiko/paramiko",
617
+ "tags": [
618
+ "Python"
619
+ ]
620
+ },
621
+ {
622
+ "id": "library/crypto++",
623
+ "name": "Crypto++",
624
+ "description": "Crypto++: free C++ Class Library of Cryptographic Schemes.",
625
+ "keywords": [
626
+ "cryptopp/",
627
+ "CryptoPP::"
628
+ ],
629
+ "url": "https://cryptopp.com/",
630
+ "category": "library",
631
+ "purl": "pkg:github/weidai11/cryptopp",
632
+ "tags": [
633
+ "C"
634
+ ]
635
+ },
636
+ {
637
+ "id": "library/keyczar",
638
+ "name": "Google Keyczar ",
639
+ "description": "Keyczar is an open source cryptographic toolkit designed to make it easier and safer to use cryptography in applications",
640
+ "keywords": [
641
+ "keyczar.",
642
+ "KeyczarReader",
643
+ "KeyczarToolbox"
644
+ ],
645
+ "url": " https://github.com/google/keyczar",
646
+ "category": "library",
647
+ "purl": "pkg:github/google/keyczar"
648
+ },
649
+ {
650
+ "id": "library/themis",
651
+ "name": "Themis Cryptographic Library ",
652
+ "description": "Themis is an open-source high-level cryptographic services library that provides secure data handling, storage and messaging for mobile and server platforms",
653
+ "keywords": [
654
+ "themis/"
655
+ ],
656
+ "url": "https://github.com/cossacklabs/themis",
657
+ "category": "library",
658
+ "purl": "pkg:github/cossacklabs/themis",
659
+ "tags": [
660
+ "Generic"
661
+ ]
662
+ },
663
+ {
664
+ "id": "library/ring",
665
+ "name": "Ring",
666
+ "description": "Safe, fast, small crypto using Rust with BoringSSL's cryptography primitives.",
667
+ "keywords": [
668
+
669
+ "ring::digest",
670
+ "ring::hmac",
671
+ "ring::aead",
672
+ "ring::agreement",
673
+ "ring::error",
674
+ "ring::hkdf",
675
+ "ring::pbkdf2",
676
+ "ring::rand",
677
+ "ring::signature",
678
+ "ring::test"
679
+ ],
680
+ "url": "https://github.com/briansmith/ring",
681
+ "category": "library",
682
+ "purl": "pkg:cargo/ring",
683
+ "tags": [
684
+ "Rust"
685
+ ]
686
+ },
687
+ {
688
+ "id": "library/spongy-castle",
689
+ "name": "Spongy Castle (Android)",
690
+ "description": "Spongy Castle is a repackaged version of Bouncy Castle cryptographic library specifically for Android. It provides a clean library that can be used in conjunction with canonical Bouncy Castle deployments",
691
+ "keywords": [
692
+ "org.spongycastle"
693
+ ],
694
+ "url": "https://rtyley.github.io/spongycastle/",
695
+ "category": "library",
696
+ "purl": "pkg:maven/com.madgag/spongycastle-core",
697
+ "tags": [
698
+ "Generic"
699
+ ]
700
+ },
701
+ {
702
+ "id": "library/chilkat",
703
+ "name": "Chilkat",
704
+ "description": "A comprehensive cross-platform software component library that provides implementations of various internet protocols, encryption, compression, and data manipulation algorithms",
705
+ "keywords": [
706
+ "Chilkat.",
707
+ "CkGlobal",
708
+ "CkCrypt2"
709
+ ],
710
+ "url": "https://www.chilkatsoft.com/",
711
+ "category": "library",
712
+ "purl": "pkg:generic/chilkat",
713
+ "tags": [
714
+ "Generic"
715
+ ]
716
+ },
717
+ {
718
+ "id": "protocol/ssl",
719
+ "name": "Secure Sockets Layer",
720
+ "description": "SSL (Secure Sockets Layer) is a cryptographic protocol designed to provide secure communications over computer networks",
721
+ "keywords": [
722
+ " SSL_",
723
+ " ssl_",
724
+ "::ssl::",
725
+ "::SSL::",
726
+ "::SSL->",
727
+ "SslConnector",
728
+ "SslAcceptor.accept",
729
+ "SslStream",
730
+ "crypto.constants.SSL_OP_NO_TLSv1",
731
+ "ssl.create_default_context",
732
+ "ssl.wrap_socket",
733
+ "SSLContext.load_cert_chain",
734
+ "SSLContext.load_verify_locations",
735
+ "SSLContext.wrap_socket",
736
+ "SSLStream.AuthenticateAsClient",
737
+ "SSLStream.AuthenticateAsServer",
738
+ "SSLContext#verify_mode=",
739
+ "SSLContext#add_certificate",
740
+ "javax.net.ssl",
741
+ "SSLSocket",
742
+ "SSLServerSocket",
743
+ "SSLv2",
744
+ "SSLv3",
745
+ "SecureTransport",
746
+ "SecureSocket",
747
+ "SSLHandshake",
748
+ "SSLEngine",
749
+ "SSLSession",
750
+ "SSLParameters"
751
+ ],
752
+ "category": "protocol",
753
+ "tags": [
754
+ "Generic"
755
+ ]
756
+ },
757
+ {
758
+ "id": "protocol/tls",
759
+ "name": "TLS",
760
+ "description": "TLS (Transport Layer Security) is a cryptographic protocol designed to provide secure communication over computer networks.",
761
+ "keywords": [
762
+ " TLS_",
763
+ " tls_",
764
+ "::ssl::Tls",
765
+ "TlsConnector",
766
+ "TlsStream",
767
+ "::TLS->new",
768
+ "tls.c",
769
+ "TLSContext.",
770
+ "TLSStream.",
771
+ "Handler.TlsProtocols",
772
+ "tls.Dial",
773
+ "tls.Listen",
774
+ "tls.LoadX509KeyPair",
775
+ "TLSSocket",
776
+ "TLSv1.1",
777
+ "TLSv1.2",
778
+ "TLSv1.3",
779
+ "tls.createServer",
780
+ "tls.connect",
781
+ "createTLSEngine",
782
+ "tls.TLSSocket",
783
+ "TLSCertificate",
784
+ "TLSHandshake",
785
+ "SecurityTLS",
786
+ "TLSProtocol",
787
+ "SecTrustEvaluate",
788
+ "TLSCipherSuite"
789
+ ],
790
+ "category": "protocol",
791
+ "tags": [
792
+ "Generic"
793
+ ]
794
+ },
795
+ {
796
+ "id": "protocol/https",
797
+ "name": "HTTPS",
798
+ "description": "HTTPS (Hypertext Transfer Protocol Secure) is a protocol for secure communication over a computer network",
799
+ "keywords": [
800
+ "https.request",
801
+ "https.get",
802
+ "HTTPSConnection.",
803
+ "https.createServer",
804
+ "https.Server",
805
+ "https.Agent",
806
+ "https.globalAgent",
807
+ "SSL::HTTPS",
808
+ "Net::HTTPS->new",
809
+ "Net::HTTPS->request",
810
+ "Net::HTTPS->connect",
811
+ "Net::HTTP::NBIO",
812
+ "Net::HTTP::HTTPSSocket",
813
+ "HttpClientHandler.",
814
+ "HttpClient.",
815
+ "XMLHttpRequest.",
816
+ "requests.Session",
817
+ "openssl::ssl::Https",
818
+ "urllib.request.urlopen",
819
+ "urllib3.PoolManager",
820
+ "urllib3.HTTPSConnection",
821
+ "HttpsURLConnection",
822
+ "createHttpsServer",
823
+ "https.request",
824
+ "axios.https",
825
+ "createHttpsConnection",
826
+ "CFHTTPSConnection",
827
+ "SecureHTTP",
828
+ "HttpsTransport",
829
+ "WinHttpSendRequest",
830
+ "INTERNET_SCHEME_HTTPS",
831
+ "URLSession",
832
+ "HttpsWebRequest",
833
+ "httpsClient",
834
+ "OkHttpClient"
835
+ ],
836
+ "category": "library",
837
+ "tags": [
838
+ "Generic"
839
+ ]
840
+ },
841
+ {
842
+ "id": "protocol/dtls",
843
+ "name": "DTLS",
844
+ "description": "N/A",
845
+ "keywords": [
846
+ "DTLS_",
847
+ "::ssl::Dtls",
848
+ "DtlsConnectorBuilder.build",
849
+ "DtlsConnector.",
850
+ "DtlsAcceptor.",
851
+ "DtlsStream",
852
+ "BIO_new_dgram",
853
+ "BIO_ctrl",
854
+ "BIO_dgram_",
855
+ "SSL_set_options",
856
+ "SSL_get_dtlsv1_timeout",
857
+ "::DTLS",
858
+ "net.dtls.",
859
+ "DTLSv1.0",
860
+ "DTLSv1.2",
861
+ "DTLSv1.3",
862
+ "DTLSContext",
863
+ "DTLSSocket",
864
+ "DTLSEngine",
865
+ "DTLSParameters",
866
+ "DTLSClientContext",
867
+ "DTLSServerContext",
868
+ "DTLS_method",
869
+ "DTLS_client_method",
870
+ "DTLS_server_method",
871
+ "DTLSSession",
872
+ "createDTLSEngine",
873
+ "dtls.connect",
874
+ "dtls.createServer",
875
+ "DTLSCipherSuite",
876
+ "DTLSHandshake",
877
+ "DTLSHandshakeState",
878
+ "DTLSConnection",
879
+ "DTLSTransport",
880
+ "DTLSProtocol",
881
+ "DTLSSRTPKeyingMaterial"
882
+ ],
883
+ "category": "protocol",
884
+ "tags": [
885
+ "Generic"
886
+ ]
887
+ },
888
+ {
889
+ "id": "protocol/quic",
890
+ "name": " ",
891
+ "description": "N/A",
892
+ "keywords": [
893
+ "quic.D",
894
+ "quic.Listen",
895
+ "quic.C",
896
+ "quic.S",
897
+ "quic.Handshake",
898
+ "quic.IdleTimeout",
899
+ "quic.MaxIdleTimeout",
900
+ "quic.T",
901
+ "quic.AddTransportParameter",
902
+ "quic.Enable",
903
+ "quic.AcceptStream",
904
+ "quic.AcceptSession",
905
+ "quic.Open",
906
+ "quic.Re",
907
+ "quic.Pa",
908
+ "quic.NewToken",
909
+ "quic.VerifyToken",
910
+ "quic.AckFrame",
911
+ "quic.ZeroRTT"
912
+ ],
913
+ "category": "protocol",
914
+ "tags": [
915
+ "Generic"
916
+ ]
917
+ },
918
+ {
919
+ "id": "protocol/zrtp",
920
+ "name": "ZRTP",
921
+ "description": "N/A",
922
+ "keywords": [
923
+ "ZRTP_"
924
+ ],
925
+ "category": "protocol",
926
+ "tags": [
927
+ "Generic"
928
+ ]
929
+ },
930
+ {
931
+ "id": "library/age-encryption",
932
+ "name": "Age Encryption",
933
+ "description": "A simple, modern, and secure file encryption tool and format.",
934
+ "keywords": [
935
+ "age.Encrypt",
936
+ "age.GenerateX25519Identity",
937
+ "age.Encrypt",
938
+ "age.Decrypt",
939
+ "age.Recipient",
940
+ "age.Identity",
941
+ "age.Scrypt",
942
+ "age.X25519Recipient",
943
+ "age.X25519Identity",
944
+ "age.RecipientFunc",
945
+ "age.NewScryptIdentity",
946
+ "age.NewScryptRecipient",
947
+ "age.NewX25519Identity",
948
+ "age.NewX25519IdentityFromSeed",
949
+ "age.ParseX25519Identity",
950
+ "age.ParseX25519Recipient",
951
+ "age.Stanza",
952
+ "age.StanzaFormatError",
953
+ "age.ArmorFlag",
954
+ "age.RecipientErrors",
955
+ "age.DecryptWithIdentities",
956
+ "age.EncryptWithArmor",
957
+ "age.EncryptedWriter"
958
+ ],
959
+ "url": "https://age-encryption.org/",
960
+ "category": "library",
961
+ "purl": "pkg:github/FiloSottile/age",
962
+ "tags": [
963
+ "Go",
964
+ "Rust"
965
+ ]
966
+ },
967
+ {
968
+ "id": "protocol/bitmessage",
969
+ "name": "Bitmessage ",
970
+ "description": "Bitmessage is a decentralized, peer-to-peer, encrypted messaging protocol that allows users to send and receive messages anonymously.",
971
+ "keywords": [
972
+ "require('bitmessage-js'",
973
+ "org.bitmessage.bmapi.",
974
+ "bmconnection.",
975
+ "bmpeer.",
976
+ "bmproto.",
977
+ "bmqueuepool.",
978
+ "bmreactor.",
979
+ "bmsettings.",
980
+ "BMPOWResult.",
981
+ "BMRawMessage."
982
+ ],
983
+ "category": "protocol",
984
+ "tags": [
985
+ "Generic"
986
+ ]
987
+ },
988
+ {
989
+ "id": "protocol/ssh",
990
+ "name": "SSH ",
991
+ "description": "Secure shell",
992
+ "keywords": [
993
+ "paramiko.SSHClient.",
994
+ "paramiko.SSHException",
995
+ "crypto/ssh",
996
+ "ssh.NewC",
997
+ "ssh.ParsePrivateKey",
998
+ "ssh.PasswordCallback",
999
+ "ssh.PublicKeys",
1000
+ "require('ssh",
1001
+ "libssh/libssh.h",
1002
+ "ssh_options_set",
1003
+ "ssh_connect",
1004
+ "com.jcraft.jsch.JSch",
1005
+ "com.jcraft.jsch.Session",
1006
+ "ssh2::Session",
1007
+ "ssh-keygen",
1008
+ "ssh_connect",
1009
+ "sshSession",
1010
+ "SshClient",
1011
+ "ssh.connect",
1012
+ "SshNet",
1013
+ "SSHConnection",
1014
+ "SSHChannel",
1015
+ "SSHProtocol",
1016
+ "SSHKnownHosts",
1017
+ "ssh-rsa",
1018
+ "ssh-dss",
1019
+ "ssh-ed25519",
1020
+ "SshStream",
1021
+ "SshAuthenticationMethod"
1022
+ ],
1023
+ "category": "protocol",
1024
+ "tags": [
1025
+ "Generic"
1026
+ ]
1027
+ },
1028
+ {
1029
+ "id": "library/nettle",
1030
+ "name": "Nettle",
1031
+ "description": "A low-level cryptographic library that is designed to fit easily in more or less any context.",
1032
+ "keywords": [
1033
+ "nettle/",
1034
+ "nettle_",
1035
+ "include <nettle/",
1036
+
1037
+ "nettle_aes_",
1038
+ "nettle_arcfour_",
1039
+ "nettle_arctwo_",
1040
+ "nettle_arctwo128_",
1041
+ "nettle_arctwo40_b",
1042
+ "nettle_blowfish_",
1043
+ "nettle_camellia",
1044
+ "nettle_cast128_",
1045
+ "nettle_chacha_",
1046
+ "nettle_des_",
1047
+ "nettle_des3_",
1048
+ "nettle_salsa20_",
1049
+ "nettle_salsa20r12_",
1050
+ "nettle_serpent_",
1051
+ "nettle_twofish_",
1052
+ "nettle_md2_",
1053
+ "nettle_md4_",
1054
+ "nettle_md5_",
1055
+ "nettle_ripemd160_",
1056
+ "nettle_sha1_",
1057
+ "nettle_sha224_",
1058
+ "nettle_sha256_",
1059
+ "nettle_sha384_",
1060
+ "nettle_sha512_",
1061
+ "nettle_sha3_",
1062
+ "nettle_gosthas",
1063
+ "nettle_cbc_",
1064
+ "nettle_ctr_",
1065
+ "nettle_eax_",
1066
+ "nettle_ccm_",
1067
+ "nettle_gcm_",
1068
+ "nettle_curve",
1069
+ "nettle_dsa_",
1070
+ "nettle_rsa_",
1071
+ "nettle_hmac_",
1072
+ "nettle_umac32_",
1073
+ "nettle_umac64_",
1074
+ "nettle_umac96_",
1075
+ "nettle_umac128_",
1076
+ "nettle_yarrow",
1077
+ "nettle_knuth_",
1078
+ "nettle_pss_encode_mgf1",
1079
+ "nettle_pss_verify_mgf1",
1080
+ "nettle_pbkdf2_",
1081
+ "nettle_ecdsa_",
1082
+ "nettle_eddsa_sign",
1083
+ "nettle_eddsa_verify",
1084
+ "nettle_ed25519_sha512_public_key",
1085
+ "nettle_ed25519_sha512_sign",
1086
+ "nettle_ed25519_sha512_verify",
1087
+ "nettle_base16_",
1088
+ "nettle_base64_",
1089
+ "nettle_base64url_",
1090
+ "nettle_buffer_",
1091
+ "nettle_armor_",
1092
+ "nettle_get_secp_",
1093
+ "nettle_hkdf_extract",
1094
+ "nettle_hkdf_expand",
1095
+ "nettle_sexp_"
1096
+
1097
+ ],
1098
+ "url": "https://www.lysator.liu.se/~nisse/nettle/",
1099
+ "category": "library",
1100
+ "purl": "pkg:github/gnutls/nettle",
1101
+ "tags": [
1102
+ "C"
1103
+ ]
1104
+ },
1105
+ {
1106
+ "id": "protocol/scp",
1107
+ "name": "Secure Copy Protocol",
1108
+ "description": "SCP (Secure Copy Protocol) is a protocol and command-line tool used to securely transfer files between computers over a network",
1109
+ "keywords": [
1110
+ "ssh.NewSCPClient",
1111
+ "scp.Copy",
1112
+ "scp.upload",
1113
+ "scp.download",
1114
+ "require('ssh2-scp-client')",
1115
+ "Session::scp_send",
1116
+ "Session::scp_recv",
1117
+ "ssh2::ChannelType::Scp",
1118
+ "ssh_scp_"
1119
+ ],
1120
+ "category": "protocol",
1121
+ "tags": [
1122
+ "Generic"
1123
+ ]
1124
+ },
1125
+ {
1126
+ "id": "protocol/sftp",
1127
+ "name": "SFTP ",
1128
+ "description": "SFTP (SSH File Transfer Protocol) is a secure network protocol that provides file transfer and manipulation functionality over a secure SSH connection",
1129
+ "keywords": [
1130
+ "paramiko.SFTPClient.",
1131
+ "ssh.NewSFTPClient",
1132
+ "sftp.",
1133
+ "SftpException",
1134
+ "SFTPStream",
1135
+ "client.sftp",
1136
+ "ssh_sftp_",
1137
+ "phpseclib\\Net\\SFTP",
1138
+ " SFTP::",
1139
+ "SftpClient.",
1140
+ "Net::SFTP::",
1141
+ "$sftp->",
1142
+ "sftp.put",
1143
+ "sftp.get",
1144
+ "sftp_open",
1145
+ "sftp_close",
1146
+ "sftp_write",
1147
+ "sftp_read",
1148
+ "libssh2_sftp",
1149
+ "SFTPSession",
1150
+ "SFTPChannel",
1151
+ "SftpFileAttributes",
1152
+ "SFTPStatusCode",
1153
+ "sftpConnection",
1154
+ "SFTPDirectoryEntry",
1155
+ "SFTPFile"
1156
+ ],
1157
+ "category": "protocol",
1158
+ "tags": [
1159
+ "Generic"
1160
+ ]
1161
+ },
1162
+ {
1163
+ "id": "protocol/OAuth",
1164
+ "name": "Open Authorization",
1165
+ "description": "N/A",
1166
+ "keywords": [
1167
+ "OAuth2",
1168
+ "OAuthClient",
1169
+ "OAuthProvider",
1170
+ "OAuthToken",
1171
+ "oauth_signature",
1172
+ "oauth_timestamp",
1173
+ "oauth_nonce",
1174
+ "oauth_consumer_key",
1175
+ "oauth_token",
1176
+ "OAuthCredential",
1177
+ "OAuthWebSecurity",
1178
+ "OAuthSession",
1179
+ "OAuthAuthentication",
1180
+ "OAuthAuthorization",
1181
+ "OAuthClient",
1182
+ "OAuthServer",
1183
+ "OAuthProvider",
1184
+ "OAuthFlow",
1185
+ "OAuthBearer",
1186
+ "OAuthResponse",
1187
+ "OAuthRequest",
1188
+ "OAuthMiddleware",
1189
+ "OAuthSecurity",
1190
+ "OAuthCallback",
1191
+ "OAuthSigner",
1192
+ "OAuthConsumer",
1193
+ "OAuthRealm",
1194
+ "OAuthAuthenticate",
1195
+ "OAuthAuthorize",
1196
+ "OAuthRefresh",
1197
+ "OAuthVerify",
1198
+ "OAuthServerProvider",
1199
+ "OAuthClientProvider",
1200
+ "OAuthAuthorizationServer",
1201
+ "OAuthResourceServer"
1202
+ ],
1203
+ "category": "protocol",
1204
+ "tags": [
1205
+ "Generic"
1206
+ ]
1207
+ },
1208
+ {
1209
+ "id": "protocol/saml",
1210
+ "name": "Security Assertion Markup Language",
1211
+ "description": "N/A",
1212
+ "keywords": [
1213
+ "SAMLRequest",
1214
+ "SAMLResponse",
1215
+ "SAMLAssertion",
1216
+ "SAML2.0",
1217
+ "saml:Assertion",
1218
+ "saml:AuthnRequest",
1219
+ "saml:Response",
1220
+ "saml:Attribute",
1221
+ "SAMLToken",
1222
+ "SAMLAuthRequest",
1223
+ "SAMLResponseValidator",
1224
+ "SAMLAuthnStatement",
1225
+ "SAMLIdentityProvider",
1226
+ "SAMLServiceProvider",
1227
+ "SAMLAuthentication",
1228
+ "saml:Issuer",
1229
+ "saml:Subject",
1230
+ "saml:Conditions",
1231
+ "saml:AudienceRestriction"
1232
+ ],
1233
+ "category": "protocol",
1234
+ "tags": [
1235
+ "Generic"
1236
+ ]
1237
+ },
1238
+ {
1239
+ "id": "protocol/ldap",
1240
+ "name": "O",
1241
+ "description": "N/A",
1242
+ "keywords": [
1243
+ "LDAPS",
1244
+ "ldaps://",
1245
+ "LdapConnection",
1246
+ "LdapSecurity",
1247
+ "LdapContext",
1248
+ "LdapSSL",
1249
+ "ldap.ssl",
1250
+ "LdapOverSSL",
1251
+ "SecureLdap",
1252
+ "SSLLdapContext",
1253
+ "TLSLdapConnection",
1254
+ "ldap.setSecurity",
1255
+ "ldap.setSecurityCredentials",
1256
+ "LdapTLS",
1257
+ "ldap.simple",
1258
+ "LdapAuthHandler",
1259
+ "LdapSSLSocketFactory",
1260
+ "LdapSecureSocketFactory"
1261
+ ],
1262
+ "category": "protocol",
1263
+ "tags": [
1264
+ "Generic"
1265
+ ]
1266
+ },
1267
+ {
1268
+ "id": "protocol/jwt",
1269
+ "name": "JSON Web Token",
1270
+ "description": "N/A",
1271
+ "keywords": [
1272
+ "JWTToken",
1273
+ "JWTVerifier",
1274
+ "JWTClaimsSet",
1275
+ "jwt.sign",
1276
+ "jwt.verify",
1277
+ "jwt.decode",
1278
+ "JwtSecurityToken",
1279
+ "JwtEncode",
1280
+ "JwtDecode",
1281
+ "JwtBuilder",
1282
+ "JwtConsumer",
1283
+ "JwtHeader",
1284
+ "JwtPayload",
1285
+ "JWTSignature",
1286
+ "JsonWebToken",
1287
+ "JWTAuthentication",
1288
+ "io.jsonwebtoken",
1289
+ "com.auth0.jwt",
1290
+ "JWTAlgorithm",
1291
+ "JwsHeader",
1292
+ "JweHeader",
1293
+ "JwtHandler",
1294
+ "JwtIssuer",
1295
+ "JwtAudience",
1296
+ "JwtExpiration"
1297
+ ],
1298
+ "category": "protocol",
1299
+ "tags": [
1300
+ "Generic"
1301
+ ]
1302
+ },
1303
+ {
1304
+ "id": "protocol/ipsec",
1305
+ "name": "Internet Protocol Security",
1306
+ "description": "N/A",
1307
+ "keywords": [
1308
+ "IPsecPolicy",
1309
+ "IPsecSecurity",
1310
+ "ipsec_add_sa",
1311
+ "ipsec_process",
1312
+ "IPsecTunnel",
1313
+ "IPsecTransport",
1314
+ "SecurityPolicy"
1315
+ ],
1316
+ "category": "protocol",
1317
+ "tags": [
1318
+ "Generic"
1319
+ ]
1320
+ },
1321
+ {
1322
+ "id": "protocol/kerberos",
1323
+ "name": "Kerberos",
1324
+ "description": "N/A",
1325
+ "keywords": [
1326
+ "KerberosClient",
1327
+ "KerberosTicket",
1328
+ "KerberosKey",
1329
+ "KerberosCredential",
1330
+ "KerberosPrincipal",
1331
+ "KerberosToken",
1332
+ "KerberosAuthentication"
1333
+ ],
1334
+ "category": "protocol",
1335
+ "tags": [
1336
+ "Generic"
1337
+ ]
1338
+ },
1339
+ {
1340
+ "id": "protocol/radius",
1341
+ "name": "Remote Authentication Dial-In User Service",
1342
+ "description": "N/A",
1343
+ "keywords": [
1344
+ "RadiusClient",
1345
+ "RadiusServer",
1346
+ "RadiusProtocol",
1347
+ "RadiusPacket",
1348
+ "RadiusAttribute",
1349
+ "RadiusAuthenticator",
1350
+ "RadiusPassword",
1351
+ "RadiusSecret",
1352
+ "RadiusNAS",
1353
+ "RadiusSession",
1354
+ "RadiusAuthentication",
1355
+ "org.tinyradius",
1356
+ "RADToken",
1357
+ "RadiusChallenge",
1358
+ "RadiusAuthorization"
1359
+ ],
1360
+ "category": "protocol",
1361
+ "tags": [
1362
+ "Generic"
1363
+ ]
1364
+ },
1365
+ {
1366
+ "id": "protocol/ntlm",
1367
+ "name": "NT LAN Manager",
1368
+ "description": "N/A",
1369
+ "keywords": [
1370
+ "NTLMAuthentication",
1371
+ "NTLMv2",
1372
+ "NTLMCredential",
1373
+ "NTLMClient",
1374
+ "NTLMChallenge",
1375
+ "NTLMResponse",
1376
+ "NTLMHash",
1377
+ "ntlm_auth",
1378
+ "NTLM_MESSAGE",
1379
+ "NTLMSSP",
1380
+ "NTLMContext",
1381
+ "NEGOTIATE_NTLM",
1382
+ "NEGOTIATE_OEM",
1383
+ "NTLMSSP_NEGOTIATE",
1384
+ "NTLMConnection",
1385
+ "NTLM_SecurityHandle"
1386
+ ],
1387
+ "category": "protocol",
1388
+ "tags": [
1389
+ "Generic"
1390
+ ]
1391
+ },
1392
+ {
1393
+ "id": "protocol/oidconnect",
1394
+ "name": "OpenID Connect",
1395
+ "description": "N/A",
1396
+ "keywords": [
1397
+ "OpenIDConnect",
1398
+ "OIDC",
1399
+ "OIDCClient",
1400
+ "OIDCProvider",
1401
+ "OIDCToken",
1402
+ "IDToken",
1403
+ "OIDCClaims",
1404
+ "OpenIDConfiguration",
1405
+ "OIDCSession",
1406
+ "OIDCAuthentication",
1407
+ "OIDCAuthorization",
1408
+ "OIDCRequestObject",
1409
+ "OIDCResponseType",
1410
+ "OAuthFlow",
1411
+ "OIDCScope",
1412
+ "OIDCSubject",
1413
+ "OpenIdConnectAuthenticationOptions"
1414
+ ],
1415
+ "category": "protocol",
1416
+ "tags": [
1417
+ "Generic"
1418
+ ]
1419
+ },
1420
+ {
1421
+ "id": "library/gpgme",
1422
+ "name": "GPGME",
1423
+ "description": "GnuPG Made Easy - A library that allows cryptography operations through GnuPG.",
1424
+ "keywords": [
1425
+ "gpgme_",
1426
+ "#include <gpgme.h>",
1427
+ "from gpg import",
1428
+ "gpgme_check_version",
1429
+ "gpgme_new",
1430
+ "gpgme_release",
1431
+ "gpgme_set_",
1432
+ "gpgme_get_",
1433
+ "gpgme_ctx_get_engine_info",
1434
+ "gpgme_ctx_set_engine_info",
1435
+ "gpgme_op_",
1436
+ "gpgme_key_",
1437
+ "gpgme_data_",
1438
+ "gpgme_signers_",
1439
+ "gpgme_wait",
1440
+ "gpgme_cancel",
1441
+ "GPGME_PROTOCOL_",
1442
+ "GPGME_SIG_",
1443
+ "GPGME_PK_",
1444
+ "GPGME_KEYLIST_",
1445
+ "GPGME_VALIDITY_",
1446
+ "GPGME_ENCRYPT_",
1447
+ "GPGME_EXPORT_",
1448
+ "gpgme_error_t",
1449
+ "gpgme_ctx_t",
1450
+ "gpgme_decrypt_",
1451
+ "gpgme_passphrase_"
1452
+ ],
1453
+ "url": "https://gnupg.org/software/gpgme/",
1454
+ "category": "library",
1455
+ "purl": "pkg:github/gpg/gpgme",
1456
+ "tags": [
1457
+ "Generic"
1458
+ ]
1459
+ },
1460
+ {
1461
+ "id": "protocol/pgp-gpg",
1462
+ "name": "Pretty Good Privacy/GNU Privacy Guard",
1463
+ "description": "N/A",
1464
+ "keywords": [
1465
+ "OpenPGP",
1466
+ "PGPEncryption",
1467
+ "PGPSignature",
1468
+ "PGPKey",
1469
+ "PGPKeyRing",
1470
+ "PGPPrivateKey",
1471
+ "PGPPublicKey",
1472
+ "GnuPG",
1473
+ "GPGEncrypt",
1474
+ "GPGDecrypt",
1475
+ "GPGSign",
1476
+ "GPGVerify",
1477
+ "PGPEncryptionStream",
1478
+ "PGPSecretKey",
1479
+ "PGPKeyID",
1480
+ "PGPKeyPair",
1481
+ "PGPCompressedData",
1482
+ "PGPLiteralData",
1483
+ "PGPOnePassSignature",
1484
+ "PGPEncryptedData",
1485
+ "org.bouncycastle.openpgp"
1486
+ ],
1487
+ "category": "protocol",
1488
+ "tags": [
1489
+ "Generic"
1490
+ ]
1491
+ },
1492
+ {
1493
+ "id": "protocol/smime",
1494
+ "name": "Secure/Multipurpose Internet Mail Extensions",
1495
+ "description": "N/A",
1496
+ "keywords": [
1497
+ "S/MIME",
1498
+ "SMIMEEncryption",
1499
+ "SMIMESignature",
1500
+ "SMIMECertificate",
1501
+ "SMIMEMessage",
1502
+ "MimeEncrypted",
1503
+ "MimeSigned",
1504
+ "SMIMEProcessor",
1505
+ "SMIMECompressed",
1506
+ "application/pkcs7-mime",
1507
+ "smime-type=",
1508
+ "SMIMEUtil",
1509
+ "SMIMEToolkit",
1510
+ "MimeBodyPart"
1511
+ ],
1512
+ "category": "protocol",
1513
+ "tags": [
1514
+ "Generic"
1515
+ ]
1516
+ },
1517
+ {
1518
+ "id": "protocol/srtp",
1519
+ "name": "Secure Real-time Transport Protocol",
1520
+ "description": "N/A",
1521
+ "keywords": [
1522
+ "SRTPCrypto",
1523
+ "SRTPSuite",
1524
+ "SRTPProfile",
1525
+ "SRTPPolicy",
1526
+ "SRTPProtection",
1527
+ "SRTPTransform",
1528
+ "SRTPCryptoContext",
1529
+ "SRTPSession",
1530
+ "SRTPConnection",
1531
+ "createSrtpSession",
1532
+ "SRTP_AES128_CM_SHA1_80",
1533
+ "SRTP_AES128_CM_SHA1_32",
1534
+ "srtp_protect",
1535
+ "srtp_unprotect",
1536
+ "srtp_create",
1537
+ "SRTPTransport",
1538
+ "DTLS-SRTP"
1539
+ ],
1540
+ "category": "protocol",
1541
+ "tags": [
1542
+ "Generic"
1543
+ ]
1544
+ },
1545
+ {
1546
+ "id": "protocol/gdoi",
1547
+ "name": "Group Domain of Interpretation",
1548
+ "description": "N/A",
1549
+ "keywords": [
1550
+ "GDOIGroupKey",
1551
+ "GDOIKeyServer",
1552
+ "GDOIMember",
1553
+ "GDOIProtocol",
1554
+ "GDOIPolicy",
1555
+ "GDOIGroupID",
1556
+ "GDOIKeyPush",
1557
+ "GDOIRekey",
1558
+ "GDOISecurityAssociation",
1559
+ "GROUPKEY-PULL",
1560
+ "GROUPKEY-PUSH",
1561
+ "GDOIGroupSecretKey",
1562
+ "GDOICryptoProfile",
1563
+ "GDOIRegistration",
1564
+ "GDOIAuthentication",
1565
+ "IKEv2-GDOI",
1566
+ "GDOIKeyEncryption",
1567
+ "GDOITrafficEncryption"
1568
+ ],
1569
+ "category": "protocol",
1570
+ "tags": [
1571
+ "Generic"
1572
+ ]
1573
+ },
1574
+ {
1575
+ "id": "protocol/httpss",
1576
+ "name": "HTTP Strict Transport Security",
1577
+ "description": "N/A",
1578
+ "keywords": [
1579
+ "Strict-Transport-Security",
1580
+ "HSTSPolicy",
1581
+ "HSTSHeader",
1582
+ "HSTSPreload",
1583
+ "enforceHTTPS",
1584
+ "forceHTTPS",
1585
+ "HSTSConfiguration",
1586
+ "enableHSTS",
1587
+ "addHSTSHeader",
1588
+ "setHSTS",
1589
+ "configureHSTS"
1590
+ ],
1591
+ "category": "protocol",
1592
+ "tags": [
1593
+ "Generic"
1594
+ ]
1595
+ },
1596
+ {
1597
+ "id": "protocol/jose",
1598
+ "name": "JavaScript Object Signing and Encryption",
1599
+ "description": "N/A",
1600
+ "keywords": [
1601
+ "JOSEHeader",
1602
+ "JOSEObject",
1603
+ "JWEEncrypter",
1604
+ "JWEDecrypter",
1605
+ "JWSVerifier",
1606
+ "JWSSigner",
1607
+ "JWKSet",
1608
+ "JWKSource",
1609
+ "JWKSelector",
1610
+ "jose4j",
1611
+ "nimbus-jose-jwt",
1612
+ "JWKThumbprint"
1613
+ ],
1614
+ "category": "protocol",
1615
+ "tags": [
1616
+ "Generic"
1617
+ ]
1618
+ },
1619
+ {
1620
+ "id": "protocol/dkim",
1621
+ "name": "DomainKeys Identified Mail",
1622
+ "description": "N/A",
1623
+ "keywords": [
1624
+ "DKIMSigner",
1625
+ "DKIMVerifier",
1626
+ "DKIMSignature",
1627
+ "DKIMKey",
1628
+ "DKIM-Signature",
1629
+ "DKIMSelector",
1630
+ "DKIMPrivateKey",
1631
+ "DKIMPublicKey",
1632
+ "DKIMHeader",
1633
+ "DKIMBody",
1634
+ "DKIMSignatureField",
1635
+ "DKIMSigningDomain"
1636
+ ],
1637
+ "category": "protocol",
1638
+ "tags": [
1639
+ "Generic"
1640
+ ]
1641
+ },
1642
+ {
1643
+ "id": "protocol/spf",
1644
+ "name": "Sender Policy Framework",
1645
+ "description": "N/A",
1646
+ "keywords": [
1647
+ "SPFRecord",
1648
+ "SPFValidator",
1649
+ "SPFCheck",
1650
+ "SPFResult",
1651
+ "SPFMechanism",
1652
+ "SPFModifier",
1653
+ "SPFPass",
1654
+ "SPFFail",
1655
+ "SPFSoftFail",
1656
+ "SPFNeutral",
1657
+ "SPFPermError",
1658
+ "SPFTempError",
1659
+ "SPFNone",
1660
+ "checkSPF",
1661
+ "validateSPF",
1662
+ "processSPF",
1663
+ "SPFPolicy"
1664
+ ],
1665
+ "category": "protocol",
1666
+ "tags": [
1667
+ "Generic"
1668
+ ]
1669
+ },
1670
+ {
1671
+ "id": "protocol/dmarc",
1672
+ "name": "Domain-based Message Authentication, Reporting & Conformance",
1673
+ "description": "N/A",
1674
+ "keywords": [
1675
+ "DMARCRecord",
1676
+ "DMARCValidator",
1677
+ "DMARCPolicy",
1678
+ "DMARCResult",
1679
+ "DMARCReport",
1680
+ "DMARCAggregate",
1681
+ "DMARCForensic",
1682
+ "DMARCReporter",
1683
+ "DMARCFeedback",
1684
+ "checkDMARC",
1685
+ "validateDMARC",
1686
+ "processDMARC",
1687
+ "DMARCAlignment",
1688
+ "DMARCIdentifier",
1689
+ "DMARCConfiguration"
1690
+ ],
1691
+ "category": "protocol",
1692
+ "tags": [
1693
+ "Generic"
1694
+ ]
1695
+ },
1696
+ {
1697
+ "id": "protocol/fido",
1698
+ "name": "Fast Identity Online",
1699
+ "description": "N/A",
1700
+ "keywords": [
1701
+ "FIDOAuthenticator",
1702
+ "FIDOCredential",
1703
+ "FIDOAssertion",
1704
+ "FIDOAttestation",
1705
+ "FIDOChallenge",
1706
+ "FIDOResponse"
1707
+ ],
1708
+ "category": "protocol",
1709
+ "tags": [
1710
+ "Generic"
1711
+ ]
1712
+ },
1713
+ {
1714
+ "id": "protocol/scep",
1715
+ "name": "Simple Certificate Enrollment Protocol",
1716
+ "description": "N/A",
1717
+ "keywords": [
1718
+ "SCEPClient",
1719
+ "SCEPServer",
1720
+ "SCEPMessage",
1721
+ "SCEPRequest",
1722
+ "SCEPResponse",
1723
+ "SCEPCertificate",
1724
+ "SCEPChallenge",
1725
+ "SCEPEnrollment",
1726
+ "SCEPEnrollmentRequest",
1727
+ "SCEPEnrollmentResponse"
1728
+ ],
1729
+ "category": "protocol",
1730
+ "tags": [
1731
+ "Generic"
1732
+ ]
1733
+ },
1734
+ {
1735
+ "id": "protocol/pptp",
1736
+ "name": "Point-to-Point Tunneling Protocol",
1737
+ "description": "N/A",
1738
+ "keywords": [
1739
+ "PPTPClient",
1740
+ "PPTPServer",
1741
+ "PPTPTunnel",
1742
+ "PPTPConnection",
1743
+ "PPTPPacket",
1744
+ "PPTPControlConnection",
1745
+ "PPTPDataConnection",
1746
+ "PPTPCallID",
1747
+ "PPTPSessionID",
1748
+ "PPTPAuthentication",
1749
+ "PPTPEncryption",
1750
+ "PPTPCompression",
1751
+ "createPPTPTunnel",
1752
+ "connectPPTP",
1753
+ "PPTPHeader",
1754
+ "PPTPPayload"
1755
+ ],
1756
+ "category": "protocol",
1757
+ "tags": [
1758
+ "Generic"
1759
+ ]
1760
+ },
1761
+ {
1762
+ "id": "protocol/mtls",
1763
+ "name": "Mutual TLS",
1764
+ "description": "N/A",
1765
+ "keywords": [
1766
+ "mTLS",
1767
+ "mutual TLS",
1768
+ "mutualTLS",
1769
+ "TLSClientAuth",
1770
+ "ClientCertificateRequired",
1771
+ "SSLVerifyClient",
1772
+ "requireClientCert",
1773
+ "HTTPS_CLIENT_AUTH",
1774
+ "NeedsClientAuth",
1775
+ "WantsClientAuth",
1776
+ "clientCertificateAuthenticationEnabled"
1777
+ ],
1778
+ "category": "protocol",
1779
+ "tags": [
1780
+ "Generic"
1781
+ ]
1782
+ },
1783
+ {
1784
+ "id": "protocol/totp",
1785
+ "name": "Time-based One-Time Password",
1786
+ "description": "N/A",
1787
+ "keywords": [
1788
+ "TOTP",
1789
+ "TimeBasedOneTimePassword",
1790
+ "OTPAuth",
1791
+ "generateTOTP",
1792
+ "verifyTOTP",
1793
+ "TOTPGenerator",
1794
+ "TOTPValidator",
1795
+ "TOTPSecret",
1796
+ "TOTPAuthenticator",
1797
+ "TOTPWindow",
1798
+ "TOTPAlgorithm",
1799
+ "TOTPCodeGenerator",
1800
+ "TOTPVerifier",
1801
+ "generateOTP",
1802
+ "verifyOTP",
1803
+ "TOTPProvider",
1804
+ "TOTPService",
1805
+ "OtpAuthenticator",
1806
+ "otplib"
1807
+ ],
1808
+ "category": "protocol",
1809
+ "tags": [
1810
+ "Generic"
1811
+ ]
1812
+ },
1813
+ {
1814
+ "id": "protocol/pkce",
1815
+ "name": "Proof Key for Code Exchange",
1816
+ "description": "N/A",
1817
+ "keywords": [
1818
+ "code_challenge_method",
1819
+ "PKCEUtil",
1820
+ "PKCEGenerator",
1821
+ "PKCEVerifier",
1822
+ "createCodeChallenge",
1823
+ "createCodeVerifier",
1824
+ "OAuthPKCE",
1825
+ "PKCESupport",
1826
+ "PKCEParams",
1827
+ "PKCEValidation",
1828
+ "ProofKeyForCodeExchange",
1829
+ "AuthorizationCodePKCE",
1830
+ "OAuthPKCEFlow",
1831
+ "PKCEAuthorizationFlow"
1832
+ ],
1833
+ "category": "protocol",
1834
+ "tags": [
1835
+ "Generic"
1836
+ ]
1837
+ },
1838
+ {
1839
+ "id": "protocol/paseto",
1840
+ "name": "Platform-Agnostic Security Tokens",
1841
+ "description": "N/A",
1842
+ "keywords": [
1843
+ "PasetoToken",
1844
+ "PasetoBuilder",
1845
+ "PasetoParser",
1846
+ "PasetoV1",
1847
+ "PasetoV2",
1848
+ "PasetoV3",
1849
+ "PasetoV4",
1850
+ "PasetoPublicKey",
1851
+ "PasetoPrivateKey",
1852
+ "PasetoClaims",
1853
+ "PasetoPayload",
1854
+ "PasetoHeader",
1855
+ "PasetoFooter",
1856
+ "PasetoEncrypt",
1857
+ "PasetoDecrypt",
1858
+ "PasetoSign",
1859
+ "PasetoVerify",
1860
+ "PasetoService",
1861
+ "PasetoBuilder"
1862
+ ],
1863
+ "category": "protocol",
1864
+ "tags": [
1865
+ "Generic"
1866
+ ]
1867
+ },
1868
+ {
1869
+ "id": "protocol/hawk",
1870
+ "name": "Hawk Authentication",
1871
+ "description": "N/A",
1872
+ "keywords": [
1873
+ "HawkClient",
1874
+ "HawkServer",
1875
+ "HawkCredentials",
1876
+ "HawkHeader",
1877
+ "HawkAuthentication",
1878
+ "HawkOptions",
1879
+ "HawkAuthHeader",
1880
+ "HawkResponse",
1881
+ "generateHawkHeader",
1882
+ "validateHawkHeader",
1883
+ "HawkAuthenticator",
1884
+ "hawk.client.header",
1885
+ "hawk.server.authenticate",
1886
+ "HawkAuthScheme",
1887
+ "createHawkHeader",
1888
+ "HawkAuthPlugin"
1889
+ ],
1890
+ "category": "protocol",
1891
+ "tags": [
1892
+ "Generic"
1893
+ ]
1894
+ },
1895
+ {
1896
+ "id": "protocol/sqrl",
1897
+ "name": "Secure Quick Reliable Login",
1898
+ "description": "N/A",
1899
+ "keywords": [
1900
+ "SQRLClient",
1901
+ "SQRLServer",
1902
+ "SQRLIdentity",
1903
+ "SQRLAuthentication",
1904
+ "SQRLSignature",
1905
+ "SQRLKey",
1906
+ "SQRLTransaction",
1907
+ "SQRLRequest",
1908
+ "SQRLResponse",
1909
+ "SQRLIdentifier",
1910
+ "SQRLPrivateKey",
1911
+ "SQRLPublicKey",
1912
+ "SQRLCode",
1913
+ "SQRLQRCode",
1914
+ "SQRLProvider",
1915
+ "SQRLAuthenticator",
1916
+ "SQRLValidator",
1917
+ "createSQRL",
1918
+ "validateSQRL"
1919
+ ],
1920
+ "category": "protocol",
1921
+ "tags": [
1922
+ "Generic"
1923
+ ]
1924
+ },
1925
+ {
1926
+ "id": "protocol/hotp",
1927
+ "name": "HMAC-based One-Time Password",
1928
+ "description": "N/A",
1929
+ "keywords": [
1930
+ "HMACBasedOneTimePassword",
1931
+ "generateHOTP",
1932
+ "verifyHOTP",
1933
+ "HOTPGenerator",
1934
+ "HOTPValidator",
1935
+ "HOTPSecret",
1936
+ "HOTPCounter",
1937
+ "HOTPDigits",
1938
+ "HOTPWindow",
1939
+ "HOTPAlgorithm",
1940
+ "HOTP-SHA1",
1941
+ "HOTP-SHA256",
1942
+ "HOTPAuthenticator",
1943
+ "counterBasedOTP",
1944
+ "validateHOTP",
1945
+ "generateHOTPCode",
1946
+ "HOTPService",
1947
+ "HOTPProvider",
1948
+ "HOTPVerification",
1949
+ "HOTPAuthentication",
1950
+ "HOTPToken",
1951
+ "OTPCounterBased"
1952
+ ],
1953
+ "category": "protocol",
1954
+ "tags": [
1955
+ "Generic"
1956
+ ]
1957
+ },
1958
+ {
1959
+ "id": "protocol/ocsp",
1960
+ "name": "Online Certificate Status Protocol",
1961
+ "description": "N/A",
1962
+ "keywords": [
1963
+ "OCSPStatus",
1964
+ "OCSPClient",
1965
+ "CertificateStatus",
1966
+ "OCSPRevocationStatus",
1967
+ "OCSPStapling",
1968
+ "OCSPNonce",
1969
+ "OCSPCertID",
1970
+ "OCSPBasicResponse",
1971
+ "getOCSPStatus",
1972
+ "checkOCSPRevocation",
1973
+ "OCSPValidator",
1974
+ "OCSPVerifier",
1975
+ "OCSPChecker",
1976
+ "OCSPResponseStatus",
1977
+ "OCSPUtil",
1978
+ "OCSPReq",
1979
+ "OCSPResp",
1980
+ "OCSPCertStatus",
1981
+ "X509ExtendedKeyManager"
1982
+ ],
1983
+ "category": "protocol",
1984
+ "tags": [
1985
+ "Generic"
1986
+ ]
1987
+ },
1988
+ {
1989
+ "id": "protocol/scram",
1990
+ "name": "Salted Challenge Response Authentication Mechanism",
1991
+ "description": "N/A",
1992
+ "keywords": [
1993
+ "SCRAM-SHA-1",
1994
+ "SCRAM-SHA-256",
1995
+ "SCRAMCredentials",
1996
+ "SCRAMClient",
1997
+ "SCRAMServer",
1998
+ "SCRAMAuthentication",
1999
+ "SCRAMSaslClient",
2000
+ "SCRAMSaslServer",
2001
+ "SCRAMClientMessage",
2002
+ "SCRAMServerMessage",
2003
+ "SCRAMAuthMessage",
2004
+ "SCRAMChallenge",
2005
+ "SCRAMResponse",
2006
+ "SCRAMAttributes"
2007
+ ],
2008
+ "category": "protocol",
2009
+ "tags": [
2010
+ "Generic"
2011
+ ]
2012
+ },
2013
+ {
2014
+ "id": "protocol/xacml",
2015
+ "name": "eXtensible Access Control Markup Language",
2016
+ "description": "N/A",
2017
+ "keywords": [
2018
+ "XACMLPolicy",
2019
+ "XACMLRequest",
2020
+ "XACMLResponse",
2021
+ "XACMLPolicySet",
2022
+ "XACMLRule",
2023
+ "XACMLAttribute",
2024
+ "XACMLSubject",
2025
+ "XACMLResource",
2026
+ "XACMLAction",
2027
+ "XACMLEnvironment",
2028
+ "XACMLTarget",
2029
+ "XACMLEffect",
2030
+ "XACMLObligation",
2031
+ "XACMLAdvice",
2032
+ "XACMLPolicyDecisionPoint",
2033
+ "XACMLPolicyEnforcementPoint",
2034
+ "XACMLPolicyInformationPoint",
2035
+ "XACMLPolicyAdministrationPoint",
2036
+ "XACMLContext",
2037
+ "XACMLEvaluate",
2038
+ "XACMLDecision"
2039
+ ],
2040
+ "category": "protocol",
2041
+ "tags": [
2042
+ "Generic"
2043
+ ]
2044
+ },
2045
+ {
2046
+ "id": "protocol/cms",
2047
+ "name": "Cryptographic Message Syntax",
2048
+ "description": "N/A",
2049
+ "keywords": [
2050
+ "CMSEnvelopedData",
2051
+ "CMSSignedData",
2052
+ "CMSAuthenticatedData",
2053
+ "CMSEncryptedData",
2054
+ "CMSCompressedData",
2055
+ "CMSSigner",
2056
+ "CMSRecipient",
2057
+ "CMSSignature",
2058
+ "CMSEncryption",
2059
+ "CMSDecryption",
2060
+ "CMSVerifier",
2061
+ "CMSContentInfo",
2062
+ "CMSDigestedData"
2063
+ ],
2064
+ "category": "protocol",
2065
+ "tags": [
2066
+ "Generic"
2067
+ ]
2068
+ },
2069
+ {
2070
+ "id": "protocol/sts",
2071
+ "name": "Secure Token Service",
2072
+ "description": "N/A",
2073
+ "keywords": [
2074
+ "SecureTokenService",
2075
+ "TokenService",
2076
+ "SecurityTokenService",
2077
+ "STSClient",
2078
+ "STSService",
2079
+ "WSTrustClient",
2080
+ "WSTrustService",
2081
+ "STSConfiguration"
2082
+ ],
2083
+ "category": "protocol",
2084
+ "tags": [
2085
+ "Generic"
2086
+ ]
2087
+ },
2088
+ {
2089
+ "id": "protocol/caa",
2090
+ "name": "Certificate Authority Authorization",
2091
+ "description": "N/A",
2092
+ "keywords": [
2093
+ "CAARecord",
2094
+ "DNSCAARecord",
2095
+ "CAACheck",
2096
+ "CAAValidator",
2097
+ "CAAVerifier",
2098
+ "CAAIssuer",
2099
+ "CAAFlag",
2100
+ "CAATag",
2101
+ "CAAConstraint",
2102
+ "CAAValidate",
2103
+ "CAACompliance",
2104
+ "CAAPropertyValue",
2105
+ "CAAIssuerDomain",
2106
+ "CAACritical",
2107
+ "CAAPermittedCAs"
2108
+ ],
2109
+ "category": "protocol",
2110
+ "tags": [
2111
+ "Generic"
2112
+ ]
2113
+ },
2114
+ {
2115
+ "id": "protocol/xfo",
2116
+ "name": "X-Frame-Options",
2117
+ "description": "N/A",
2118
+ "keywords": [
2119
+ "X-Frame-Options",
2120
+ "XFrameOptionsHeader",
2121
+ "XFOHeader",
2122
+ "XFOPolicy",
2123
+ "XFOSetting",
2124
+ "XFOValue",
2125
+ "XFOMode",
2126
+ "addXFO"
2127
+ ],
2128
+ "category": "protocol",
2129
+ "tags": [
2130
+ "Generic"
2131
+ ]
2132
+ },
2133
+ {
2134
+ "id": "protocol/rpki",
2135
+ "name": "Resource Public Key Infrastructure",
2136
+ "description": "N/A",
2137
+ "keywords": [
2138
+ "RPKICertificate",
2139
+ "RPKIRepository",
2140
+ "RPKIValidator",
2141
+ "RPKICache",
2142
+ "RPKIObject",
2143
+ "RouteOriginAuthorization",
2144
+ "RPKIManifest",
2145
+ "RPKICertificateRepository",
2146
+ "RPKITrustAnchor",
2147
+ "RPKIPublication",
2148
+ "RPKIClient",
2149
+ "RPKIValidation",
2150
+ "RPKIVerification",
2151
+ "RPKIPrefix",
2152
+ "RPKIASNumber",
2153
+ "RPKIResourceCertificate",
2154
+ "RPKISignature",
2155
+ "RPKIBGPSecValidation",
2156
+ "RPKIOriginValidation",
2157
+ "ROAPrefix"
2158
+ ],
2159
+ "category": "protocol",
2160
+ "tags": [
2161
+ "Generic"
2162
+ ]
2163
+ },
2164
+ {
2165
+ "id": "protocol/sshfp",
2166
+ "name": "SSH Fingerprint",
2167
+ "description": "N/A",
2168
+ "keywords": [
2169
+ "SSHFingerprint",
2170
+ "SSHFPRecord",
2171
+ "SSHFPValidator",
2172
+ "SSHFPVerifier",
2173
+ "SSHFPCheck",
2174
+ "SSHFPAlgorithm",
2175
+ "SSHFPType",
2176
+ "SSHFPFingerprint",
2177
+ "SSHFPHash",
2178
+ "SSHFPLookup",
2179
+ "verifySSHFP",
2180
+ "validateSSHFP",
2181
+ "generateSSHFP",
2182
+ "createSSHFP",
2183
+ "SSHFPDNSRecord",
2184
+ "SSHKeyFingerprint",
2185
+ "SSHPublicKeyHash"
2186
+ ],
2187
+ "category": "protocol",
2188
+ "tags": [
2189
+ "Generic"
2190
+ ]
2191
+ },
2192
+ {
2193
+ "id": "protocol/csr",
2194
+ "name": "Certificate Signing Request",
2195
+ "description": "N/A",
2196
+ "keywords": [
2197
+ "CertificateSigningRequest",
2198
+ "X509CertificateRequest",
2199
+ "CSRAttributes",
2200
+ "CSRSubject",
2201
+ "CSRExtensions",
2202
+ "CSRValidator",
2203
+ "CSRVerifier",
2204
+ "CSRGenerator",
2205
+ "CSRParser",
2206
+ "CSREncoder",
2207
+ "CSRDecoder",
2208
+ "CSRChallengePassword",
2209
+ "CSRKeyUsage",
2210
+ "CSRExtendedKeyUsage",
2211
+ "CSRSubjectAlternativeName",
2212
+ "CSRSignature"
2213
+ ],
2214
+ "category": "protocol",
2215
+ "tags": [
2216
+ "Generic"
2217
+ ]
2218
+ },
2219
+ {
2220
+ "id": "framework/vault",
2221
+ "name": "HashiCorp Vault",
2222
+ "description": "A tool for secrets management, encryption as a service, and privileged access management.",
2223
+ "keywords": [
2224
+ "VaultClient",
2225
+ "vault_client",
2226
+ "spring-vault",
2227
+ "spring-cloud-vault",
2228
+ "vault-java-driver",
2229
+ "VaultTemplate",
2230
+ "VaultTokenProvider",
2231
+ "VaultOperations",
2232
+ "VaultAutoConfiguration",
2233
+ "@VaultPropertySource",
2234
+ "from hvac import Client",
2235
+ "VaultException",
2236
+ "VaultToken"
2237
+ ],
2238
+ "url": "https://www.vaultproject.io/",
2239
+ "category": "library",
2240
+ "purl": "pkg:github/hashicorp/vault",
2241
+ "tags": [
2242
+ "Java"
2243
+ ]
2244
+ },
2245
+ {
2246
+ "id": "framework/azure-keyvault",
2247
+ "name": "Azure Key Vault",
2248
+ "description": "N/A",
2249
+ "keywords": [
2250
+ "Azure.Security.KeyVault",
2251
+ "Microsoft.Azure.KeyVault",
2252
+ "KeyVault.Certificates",
2253
+ "Azure.Identity",
2254
+ "DefaultAzureCredentialBuilder"
2255
+ ],
2256
+ "category": "framework",
2257
+ "tags": [
2258
+ "Java",
2259
+ "Python",
2260
+ "JavaScript",
2261
+ ".NET",
2262
+ "Go"
2263
+ ]
2264
+ },
2265
+ {
2266
+ "id": "framework/cloudkms",
2267
+ "name": "Google Cloud KMS",
2268
+ "description": "N/A",
2269
+ "keywords": [
2270
+ "CloudKMS",
2271
+ "from google.cloud import kms",
2272
+ "com.google.cloud.kms",
2273
+ "google-cloud-kms",
2274
+ "google.cloud.kms.v1",
2275
+ "com.google.cloud.kms.v1",
2276
+ "google.cloud.kms_v1"
2277
+ ],
2278
+ "category": "framework",
2279
+ "tags": [
2280
+ "Java",
2281
+ "Python",
2282
+ "Go",
2283
+ "Node.js"
2284
+ ]
2285
+ },
2286
+ {
2287
+ "id": "framework/passport",
2288
+ "name": "Passport.js",
2289
+ "description": "N/A",
2290
+ "keywords": [
2291
+ "passport-local",
2292
+ "passport-oauth",
2293
+ "passport-oauth2",
2294
+ "passport-jwt",
2295
+ "passport-saml",
2296
+ "passport-google-oauth",
2297
+ "passport-facebook",
2298
+ "passport-twitter",
2299
+ "passport-github",
2300
+ "passport-azure-ad",
2301
+ "passport-auth0",
2302
+ "passport.authenticate",
2303
+ "passport.use",
2304
+ "passport.initialize",
2305
+ "passport.session"
2306
+ ],
2307
+ "category": "framework",
2308
+ "tags": [
2309
+ "JavaScript",
2310
+ "Node.js"
2311
+ ]
2312
+ },
2313
+ {
2314
+ "id": "framework/keycloak",
2315
+ "name": "Keycloak",
2316
+ "description": "N/A",
2317
+ "keywords": [
2318
+ "KeycloakAdapter",
2319
+ "KeycloakBuilder",
2320
+ "KeycloakSecurityContext",
2321
+ "Keycloak.init",
2322
+ "Keycloak.login",
2323
+ "Keycloak.logout",
2324
+ "Keycloak.register",
2325
+ "Keycloak.accountManagement",
2326
+ "Keycloak.createLoginUrl",
2327
+ "Keycloak.createLogoutUrl",
2328
+ "keycloak-js",
2329
+ "keycloak-connect",
2330
+ "keycloak-admin-client",
2331
+ "spring-boot-starter-keycloak",
2332
+ "keycloak-adapter-core",
2333
+ "keycloak-spring-boot-starter",
2334
+ "keycloak-spring-security-adapter",
2335
+ "KeycloakAuthenticationToken",
2336
+ "KeycloakConfigResolver",
2337
+ "KeycloakSpringBootConfigResolver",
2338
+ "KeycloakSecurityConfig",
2339
+ "KeycloakWebSecurityConfigurerAdapter"
2340
+ ],
2341
+ "category": "framework",
2342
+ "tags": [
2343
+ "Java",
2344
+ "JavaScript",
2345
+ "Node.js",
2346
+ "Python"
2347
+ ]
2348
+ },
2349
+ {
2350
+ "id": "framework/shiro",
2351
+ "name": "Apache Shiro",
2352
+ "description": "N/A",
2353
+ "keywords": [
2354
+ "org.apache.shiro",
2355
+ "ShiroFilterFactoryBean",
2356
+ "ShiroAnnotationProcessorAutoConfiguration",
2357
+ "ShiroDialect"
2358
+ ],
2359
+ "category": "framework",
2360
+ "tags": [
2361
+ "Java"
2362
+ ]
2363
+ },
2364
+ {
2365
+ "id": "framework/guardian",
2366
+ "name": "Guardian (Elixir)",
2367
+ "description": "N/A",
2368
+ "keywords": [
2369
+ "Guardian.Plug",
2370
+ "Guardian.Token",
2371
+ "Guardian.Token.Jwt",
2372
+ "Guardian.DB",
2373
+ "use Guardian",
2374
+ "Guardian.Plug.sign_in",
2375
+ "Guardian.Plug.sign_out",
2376
+ "Guardian.Plug.current_resource",
2377
+ "Guardian.Plug.current_token",
2378
+ "Guardian.Plug.authenticated?",
2379
+ "Guardian.Plug.EnsureAuthenticated",
2380
+ "Guardian.Plug.VerifyHeader",
2381
+ "Guardian.Plug.VerifySession",
2382
+ "Guardian.Plug.VerifyCookie",
2383
+ "guardian_default_token",
2384
+ "guardian.secret_key",
2385
+ "Guardian.Controller",
2386
+ "Guardian.ErrorHandler",
2387
+ "Guardian.Permissions",
2388
+ "subject_for_token"
2389
+ ],
2390
+ "category": "framework",
2391
+ "tags": [
2392
+ "Generic"
2393
+ ]
2394
+ },
2395
+ {
2396
+ "id": "framework/devise",
2397
+ "name": "Devise",
2398
+ "description": "N/A",
2399
+ "keywords": [
2400
+ "devise/sessions",
2401
+ "devise/registrations",
2402
+ "devise/passwords",
2403
+ "devise/confirmations",
2404
+ "devise/unlocks",
2405
+ "devise/omniauth_callbacks",
2406
+ "Devise::Mailer",
2407
+ "Devise::PasswordsController",
2408
+ "Devise::SessionsController",
2409
+ "Devise::OmniauthCallbacksController",
2410
+ "Devise.setup",
2411
+ "devise :database_authenticatable",
2412
+ "devise :registerable",
2413
+ "devise :recoverable",
2414
+ "devise :rememberable",
2415
+ "devise :trackable",
2416
+ "devise :validatable",
2417
+ "devise :confirmable",
2418
+ "devise :lockable",
2419
+ "devise :timeoutable",
2420
+ "devise :omniauthable",
2421
+ "Devise.secret_key"
2422
+ ],
2423
+ "category": "framework",
2424
+ "tags": [
2425
+ "Ruby"
2426
+ ]
2427
+ },
2428
+ {
2429
+ "id": "framework/cancancan",
2430
+ "name": "CanCanCan",
2431
+ "description": "N/A",
2432
+ "keywords": [
2433
+ "CanCanCan",
2434
+ "cancancan",
2435
+ "CanCan::AccessDenied",
2436
+ "CanCan::ModelAdditions",
2437
+ "CanCan::Ability",
2438
+ "ability.can(:action",
2439
+ "ability.cannot(:action",
2440
+ "rescue_from CanCan::AccessDenied"
2441
+ ],
2442
+ "category": "framework",
2443
+ "tags": [
2444
+ "Ruby"
2445
+ ]
2446
+ },
2447
+ {
2448
+ "id": "framework/pundit",
2449
+ "name": "Pundit",
2450
+ "description": "N/A",
2451
+ "keywords": [
2452
+ "include Pundit",
2453
+ "Pundit.authorize",
2454
+ "Pundit::NotAuthorizedError",
2455
+ "rescue_from Pundit::NotAuthorizedError",
2456
+ "pundit_user",
2457
+ "PunditHelper",
2458
+ "authorize @post"
2459
+ ],
2460
+ "category": "framework",
2461
+ "tags": [
2462
+ "Ruby"
2463
+ ]
2464
+ },
2465
+ {
2466
+ "id": "framework/casbin",
2467
+ "name": "Casbin",
2468
+ "description": "N/A",
2469
+ "keywords": [
2470
+ "CasbinRule",
2471
+ "CasbinMiddleware",
2472
+ "casbin.Enforcer",
2473
+ "casbinx",
2474
+ "casbin-spring-boot-starter",
2475
+ "jCasbin",
2476
+ "Node-Casbin",
2477
+ "PyCasbin",
2478
+ "PHP-Casbin",
2479
+ "Casbin.NET",
2480
+ "Casbin-RS",
2481
+ "Casbin-CPP",
2482
+ "casbin.enforce"
2483
+ ],
2484
+ "category": "framework",
2485
+ "tags": [
2486
+ "Go",
2487
+ "Java",
2488
+ "Node.js",
2489
+ "Python",
2490
+ "PHP",
2491
+ ".NET",
2492
+ "Rust",
2493
+ "C++"
2494
+ ]
2495
+ },
2496
+ {
2497
+ "id": "framework/owasp-esapi",
2498
+ "name": "OWASP ESAPI",
2499
+ "description": "N/A",
2500
+ "keywords": [
2501
+ "org.owasp.esapi",
2502
+ "ESAPI.encoder",
2503
+ "ESAPI.validator",
2504
+ "ESAPI.authenticator",
2505
+ "ESAPI.accessController",
2506
+ "ESAPI.httpUtilities",
2507
+ "ESAPI.encryptor",
2508
+ "ESAPI.randomizer",
2509
+ "ESAPI.securityConfiguration"
2510
+ ],
2511
+ "category": "framework",
2512
+ "tags": [
2513
+ "Java",
2514
+ "PHP",
2515
+ ".NET",
2516
+ "Python",
2517
+ "JavaScript"
2518
+ ]
2519
+ },
2520
+ {
2521
+ "id": "framework/zap",
2522
+ "name": "OWASP ZAP API",
2523
+ "description": "N/A",
2524
+ "keywords": [
2525
+ "org.zaproxy",
2526
+ "zapv2",
2527
+ "ZAPv2",
2528
+ "python-owasp-zap-v2.4",
2529
+ "node-zap-api",
2530
+ "zap-api-java",
2531
+ "zap-api-dotnet",
2532
+ "zap.urlopen",
2533
+ "zap.spider",
2534
+ "zap.ascan",
2535
+ "zap.ajax",
2536
+ "core.alerts",
2537
+ "zap.context",
2538
+ "zap.core",
2539
+ "zap.attack",
2540
+ "zap.auth",
2541
+ "OWASPZAPClient",
2542
+ "ZAProxy",
2543
+ "ZapScan",
2544
+ "zap-baseline.py",
2545
+ "zap-api-scan.py"
2546
+ ],
2547
+ "category": "framework",
2548
+ "tags": [
2549
+ "Python",
2550
+ "Java",
2551
+ "Node.js",
2552
+ ".NET"
2553
+ ]
2554
+ },
2555
+ {
2556
+ "id": "framework/owasp-dependency",
2557
+ "name": "OWASP Dependency Check",
2558
+ "description": "N/A",
2559
+ "keywords": [
2560
+ "org.owasp.dependencycheck",
2561
+ "DependencyCheckSensor",
2562
+ "org.owasp:dependency-check-core",
2563
+ "org.owasp:dependency-check-maven",
2564
+ "org.owasp:dependency-check-gradle",
2565
+ "org.owasp:dependency-check-ant",
2566
+ "org.owasp:dependency-check-cli"
2567
+ ],
2568
+ "category": "framework",
2569
+ "tags": [
2570
+ "Java"
2571
+ ]
2572
+ },
2573
+ {
2574
+ "id": "framework/pwntools",
2575
+ "name": "Pwntools",
2576
+ "description": "N/A",
2577
+ "keywords": [
2578
+ "pwntools",
2579
+ "from pwn import *",
2580
+ "pwnlib",
2581
+ "pwnlib.tubes",
2582
+ "pwnlib.util",
2583
+ "pwnlib.gdb",
2584
+ "pwnlib.elf",
2585
+ "pwnlib.rop",
2586
+ "pwnlib.shellcraft",
2587
+ "pwnlib.adb",
2588
+ "pwnlib.fmtstr"
2589
+ ],
2590
+ "category": "framework",
2591
+ "tags": [
2592
+ "Python"
2593
+ ]
2594
+ },
2595
+ {
2596
+ "id": "framework/apparmor",
2597
+ "name": "AppArmor",
2598
+ "description": "N/A",
2599
+ "keywords": [
2600
+ "apparmor",
2601
+ "libapparmor",
2602
+ "pam_apparmor",
2603
+ "/etc/apparmor.d/"
2604
+ ],
2605
+ "category": "framework",
2606
+ "tags": [
2607
+ "Generic"
2608
+ ]
2609
+ },
2610
+ {
2611
+ "id": "framework/nessus",
2612
+ "name": "Nessus",
2613
+ "description": "N/A",
2614
+ "keywords": [
2615
+ "NessusClient",
2616
+ "nessusd",
2617
+ "nessuscli",
2618
+ "nessus-xmlrpc",
2619
+ "python-nessus",
2620
+ "NessusClientData_v2",
2621
+ "NessusPlugin"
2622
+ ],
2623
+ "category": "framework",
2624
+ "tags": [
2625
+ "Generic"
2626
+ ]
2627
+ },
2628
+ {
2629
+ "id": "framework/splunk",
2630
+ "name": "Splunk Security",
2631
+ "description": "N/A",
2632
+ "keywords": [
2633
+ "SplunkEnterpriseSecurity",
2634
+ "SplunkPhantom",
2635
+ "SplunkSIEM",
2636
+ "SplunkSOAR",
2637
+ "SplunkUBA",
2638
+ "SplunkMisc",
2639
+ "SplunkForwarder",
2640
+ "SplunkHEC",
2641
+ "SplunkSDK",
2642
+ "SplunkAPI",
2643
+ "SplunkClient",
2644
+ "SplunkService",
2645
+ "SplunkCorrelationSearch",
2646
+ "SplunkNotable",
2647
+ "SplunkRisk",
2648
+ "SplunkThreat",
2649
+ "SplunkActions",
2650
+ "SplunkAdaptiveResponse",
2651
+ "SplunkStreamingAlert",
2652
+ "SplunkParsers",
2653
+ "SplunkConnections",
2654
+ "SplunkCollectors",
2655
+ "SplunkSecurity",
2656
+ "Splunk.Client",
2657
+ "SplunkSDK",
2658
+ "splunk-sdk-python",
2659
+ "splunklib"
2660
+ ],
2661
+ "category": "framework",
2662
+ "tags": [
2663
+ "Python"
2664
+ ]
2665
+ },
2666
+ {
2667
+ "id": "framework/sumologic",
2668
+ "name": "Sumo Logic",
2669
+ "description": "N/A",
2670
+ "keywords": [
2671
+ "SumoLogicAPI",
2672
+ "SumoSDK",
2673
+ "SumoLogicClient",
2674
+ "SumoLogicConnector",
2675
+ "SumoLogicIntegration",
2676
+ "SumoLogicSecurity",
2677
+ "SumoLogicCloudSecurity"
2678
+ ],
2679
+ "category": "framework",
2680
+ "tags": [
2681
+ "Generic",
2682
+ "Log Management",
2683
+ "SIEM",
2684
+ "Security Analytics"
2685
+ ]
2686
+ },
2687
+ {
2688
+ "id": "framework/azure-sentinel",
2689
+ "name": "Azure Sentinel",
2690
+ "description": "N/A",
2691
+ "keywords": [
2692
+ "AzureSentinel",
2693
+ "MicrosoftSentinel",
2694
+ "SentinelAPI",
2695
+ "SentinelSDK",
2696
+ "SentinelPlaybook",
2697
+ "SentinelWorkbook",
2698
+ "SentinelAnalytics",
2699
+ "SentinelHunting",
2700
+ "SentinelSOAR",
2701
+ "SentinelSIEM",
2702
+ "SentinelKQL",
2703
+ "SentinelRules",
2704
+ "SentinelAlerts",
2705
+ "SentinelIncidents",
2706
+ "SentinelConnector",
2707
+ "SentinelDataConnector",
2708
+ "LogicApp",
2709
+ "MSSentinel",
2710
+ "SentinelThreatIntelligence"
2711
+ ],
2712
+ "category": "framework",
2713
+ "tags": [
2714
+ "Generic"
2715
+ ]
2716
+ },
2717
+ {
2718
+ "id": "framework/aws-security",
2719
+ "name": "AWS Security",
2720
+ "description": "N/A",
2721
+ "keywords": [
2722
+ "AWSSecurityHub",
2723
+ "AWSFirewall",
2724
+ "AWSShield",
2725
+ "AWSWAFv2",
2726
+ "AWSKMS",
2727
+ "AWSSecretsManager",
2728
+ "AWSIAMAccessAnalyzer",
2729
+ "AWSCertificateManager",
2730
+ "AWSDirectoryService",
2731
+ "AWSSSLCertificates",
2732
+ "AWSKeyPair",
2733
+ "AWSSecurityProfile",
2734
+ "AWSSecurityGroup",
2735
+ "AWSNetworkACL",
2736
+ "AWSSSMSession",
2737
+ "AWSPrivateCA",
2738
+ "AWSNetworkFirewall"
2739
+ ],
2740
+ "category": "framework",
2741
+ "tags": [
2742
+ "Generic"
2743
+ ]
2744
+ },
2745
+ {
2746
+ "id": "framework/azure-security-center",
2747
+ "name": "Azure Security Center",
2748
+ "description": "N/A",
2749
+ "keywords": [
2750
+ "AzureSecurityCenter",
2751
+ "AzureSecurity",
2752
+ "AzureDefenderForCloud",
2753
+ "AzureSecurityAlerts",
2754
+ "AzureSecurityRecommendations",
2755
+ "AzureSecurityScore",
2756
+ "AzureSecurityConfiguration",
2757
+ "AzurePolicy",
2758
+ "AzureRBAC",
2759
+ "AzureMFA",
2760
+ "AzureConditionalAccess",
2761
+ "AzureIdentityProtection",
2762
+ "AzureADIdentitySecure",
2763
+ "AzureSecurityClient",
2764
+ "AzureSecuritySDK",
2765
+ "SecureScoreControl"
2766
+ ],
2767
+ "category": "framework",
2768
+ "tags": [
2769
+ "Generic"
2770
+ ]
2771
+ },
2772
+ {
2773
+ "id": "framework/opensaml",
2774
+ "name": "OpenSAML",
2775
+ "description": "N/A",
2776
+ "keywords": [
2777
+ "OpenSAML",
2778
+ "SAMLProfiles",
2779
+ "SAMLBinding",
2780
+ "SAMLConformance",
2781
+ "SAMLConfiguration",
2782
+ "SAMLAuthentication",
2783
+ "SAMLCredential",
2784
+ "SAMLObjectBuilder",
2785
+ "SAMLObjectProvider",
2786
+ "SAMLObjectMarshaller",
2787
+ "SAMLObjectUnmarshaller",
2788
+ "SAMLMetadataProvider",
2789
+ "SAMLSignatureValidator",
2790
+ "EncryptedAssertion",
2791
+ "EncryptedAttribute",
2792
+ "EncryptedID",
2793
+ "SignableSAMLObject",
2794
+ "SAMLDataProvider",
2795
+ "SAMLBackchannel",
2796
+ "SAMLPostEncoder",
2797
+ "SAMLRedirectEncoder",
2798
+ "SAMLArtifactEncoder",
2799
+ "BasicSAMLMessageContext",
2800
+ "SAML2ActionSupport",
2801
+ "SAML2HTTPPostSimpleSignBindingDecoder",
2802
+ "SAML2HTTPRedirectDeflateSignatureSecurityHandler",
2803
+ "BasicSAMLMetadataCredentialResolver",
2804
+ "SAML2HTTPPostEncoder",
2805
+ "SAML2HTTPRedirectDeflateSigner"
2806
+ ],
2807
+ "category": "framework",
2808
+ "tags": [
2809
+ "Java"
2810
+ ]
2811
+ },
2812
+ {
2813
+ "id": "framework/rust-crypto",
2814
+ "name": "Rust Crypto",
2815
+ "description": "N/A",
2816
+ "keywords": [
2817
+ "RustCrypto",
2818
+ "RustCryptography",
2819
+ "rust-crypto",
2820
+ "rust-openssl",
2821
+ "sodiumoxide",
2822
+ "rusty-secrets",
2823
+ "rustls"
2824
+ ],
2825
+ "category": "framework",
2826
+ "tags": [
2827
+ "Rust"
2828
+ ]
2829
+ },
2830
+ {
2831
+ "id": "framework/signal-protocol",
2832
+ "name": "Signal Protocol",
2833
+ "description": "A cryptographic protocol used for end-to-end encrypted messaging, developed by Signal.",
2834
+ "keywords": [
2835
+ "libsignal-protocol-javascript",
2836
+ "libsignal-protocol-c",
2837
+ "libsignal-protocol-swift",
2838
+ "signal-protocol-java"
2839
+ ],
2840
+ "url": "https://github.com/signalapp/libsignal-protocol-c",
2841
+ "category": "library",
2842
+ "purl": "pkg:github/signalapp/libsignal-protocol-c",
2843
+ "tags": [
2844
+ "Java",
2845
+ "JavaScript",
2846
+ "C++",
2847
+ "Swift"
2848
+ ]
2849
+ },
2850
+ {
2851
+ "id": "framework/owasp-csrfguard",
2852
+ "name": "OWASP CSRFGuard",
2853
+ "description": "N/A",
2854
+ "keywords": [
2855
+ "CSRFGuard",
2856
+ "OWASP-CSRFGuard",
2857
+ "CSRFProtection",
2858
+ "CSRFToken",
2859
+ "CSRFFilter",
2860
+ "JavaEE-CSRF",
2861
+ "JavaCSRF",
2862
+ "CSRFInterceptor",
2863
+ "CSRFValidator",
2864
+ "CSRFPreventionFilter",
2865
+ "CSRFGuardFilter",
2866
+ "CSRFServletFilter",
2867
+ "CSRFHttpSessionListener",
2868
+ "Owasp.CsrfGuard",
2869
+ "CSRFGuardServletContextListener",
2870
+ "CSRFGuardLogger",
2871
+ "CSRFGuardTokenRepository",
2872
+ "CSRFGuardTokenManager",
2873
+ "CSRFGuardStaticFiles",
2874
+ "CSRFJavaScript"
2875
+ ],
2876
+ "category": "framework",
2877
+ "tags": [
2878
+ "Generic",
2879
+ "Web Security",
2880
+ "CSRF Protection",
2881
+ "Java"
2882
+ ]
2883
+ },
2884
+ {
2885
+ "id": "framework/ory-hydra",
2886
+ "name": "Ory Hydra",
2887
+ "description": "N/A",
2888
+ "keywords": [
2889
+ "OryHydra",
2890
+ "OryKratos",
2891
+ "OryOathkeeper",
2892
+ "OryKeto",
2893
+ "HydraAdmin",
2894
+ "HydraPublic",
2895
+ "OryAuthorization",
2896
+ "OryIdentity",
2897
+ "OryAccessControl"
2898
+ ],
2899
+ "category": "framework",
2900
+ "tags": [
2901
+ "Generic"
2902
+ ]
2903
+ },
2904
+ {
2905
+ "id": "framework/owasp-wstg",
2906
+ "name": "OWASP Web Security Testing Guide",
2907
+ "description": "N/A",
2908
+ "keywords": [
2909
+ "OWASP-WSTG",
2910
+ "WebSecurityTestingGuide",
2911
+ "OWASP-Testing-Guide",
2912
+ "API-OWASP",
2913
+ "WSTG-INFO",
2914
+ "WSTG-CONF",
2915
+ "WSTG-ATHN",
2916
+ "WSTG-ATHZ",
2917
+ "WSTG-SESS",
2918
+ "WSTG-INPV",
2919
+ "WSTG-ERRH",
2920
+ "WSTG-CRYP",
2921
+ "WSTG-BUSL",
2922
+ "WSTG-CLNT",
2923
+ "WSTG-APIT"
2924
+ ],
2925
+ "category": "framework",
2926
+ "tags": [
2927
+ "Generic"
2928
+ ]
2929
+ }
2930
+ ]