Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/sun/security/pkcs11/KeyStore/ClientAuthData/p11-nss.txt
41154 views
1
name = nss
2
3
slot = 2
4
5
#password = test12
6
7
library = ${pkcs11test.nss.lib}
8
9
nssArgs = "configdir='${pkcs11test.nss.db}' certPrefix='' keyPrefix='' secmod='secmod.db'"
10
11
attributes(import,CKO_PRIVATE_KEY,*) = {
12
CKA_SENSITIVE = true
13
CKA_EXTRACTABLE = false
14
}
15
16
attributes(*,CKO_PRIVATE_KEY,CKK_RSA) = {
17
CKA_SENSITIVE = true
18
CKA_EXTRACTABLE = false
19
# CKA_DECRYPT = true
20
CKA_SIGN = true
21
# CKA_SIGN_RECOVER = true
22
# CKA_UNWRAP = true
23
}
24
25
attributes(*,CKO_SECRET_KEY,*) = {
26
CKA_TOKEN = false
27
CKA_SENSITIVE = true
28
CKA_EXTRACTABLE = false
29
CKA_ENCRYPT = true
30
CKA_DECRYPT = true
31
# CKA_WRAP = true
32
# CKA_UNWRAP = true
33
}
34
35