Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/sun/security/pkcs11/nss/p11-nss.txt
41153 views
1
2
# Configuration to run unit tests with NSS
3
4
name = NSS
5
6
slot = 1
7
8
#showInfo = true
9
10
library = ${pkcs11test.nss.lib}
11
12
nssArgs = "configdir='${pkcs11test.nss.db}' certPrefix='' keyPrefix='' secmod='secmod.db' flags=readOnly"
13
14
disabledMechanisms = {
15
CKM_DSA_SHA224
16
CKM_DSA_SHA256
17
CKM_DSA_SHA384
18
CKM_DSA_SHA512
19
CKM_DSA_SHA3_224
20
CKM_DSA_SHA3_256
21
CKM_DSA_SHA3_384
22
CKM_DSA_SHA3_512
23
CKM_ECDSA_SHA224
24
CKM_ECDSA_SHA256
25
CKM_ECDSA_SHA384
26
CKM_ECDSA_SHA512
27
CKM_ECDSA_SHA3_224
28
CKM_ECDSA_SHA3_256
29
CKM_ECDSA_SHA3_384
30
CKM_ECDSA_SHA3_512
31
}
32
33
attributes = compatibility
34
35
# NSS needs CKA_NETSCAPE_DB for DSA and DH private keys
36
# just put an arbitrary value in there to make it happy
37
38
attributes(*,CKO_PRIVATE_KEY,CKK_DSA) = {
39
CKA_NETSCAPE_DB = 0h00
40
}
41
42
attributes(*,CKO_PRIVATE_KEY,CKK_DH) = {
43
CKA_NETSCAPE_DB = 0h00
44
}
45
46