test/jdk/sun/security/tools/keytool/p11-nss.txt
author xuelei
Mon, 25 Jun 2018 13:41:39 -0700
changeset 50768 68fa3d4026ea
parent 47216 71c04702a3d5
permissions -rw-r--r--
8196584: TLS 1.3 Implementation Reviewed-by: ascarpino, coffeys, dfuchs, jjiang, jnimeh, mullan, rhalade, ssahoo, valeriep, weijun, wetmore, xuelei Contributed-by: Adam Petcher <adam.petcher@oracle.com>, Amanda Jiang <amanda.jiang@oracle.com>, Anthony Scarpino <anthony.scarpino@oracle.com>, Bradford Wetmore <bradford.wetmore@oracle.com>, Jamil Nimeh <jamil.j.nimeh@oracle.com>, John Jiang <sha.jiang@oracle.com>, Rajan Halade <rajan.halade@oracle.com>, Sibabrata Sahoo <sibabrata.sahoo@oracle.com>, Valerie Peng <valerie.peng@oracle.com>, Weijun Wang <weijun.wang@oracle.com>, Xuelei Fan <xuelei.fan@oracle.com>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
name = nss
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
slot = 2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
#password = test12
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
library = ${nss.lib}
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
nssArgs = "configdir='.' certPrefix='' keyPrefix='' secmod='secmod.db'"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
#forceLogin = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
attributes(*,CKO_PRIVATE_KEY,*) = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
  CKA_TOKEN = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
attributes(import,CKO_PRIVATE_KEY,*) = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
  CKA_SENSITIVE = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
  CKA_EXTRACTABLE = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
attributes(*,CKO_PRIVATE_KEY,CKK_RSA) = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
  CKA_SENSITIVE = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
  CKA_EXTRACTABLE = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
#  CKA_DECRYPT = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
  CKA_SIGN = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#  CKA_SIGN_RECOVER = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#  CKA_UNWRAP = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
attributes(*,CKO_SECRET_KEY,*) = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
  CKA_TOKEN = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
  CKA_SENSITIVE = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
  CKA_EXTRACTABLE = false
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
  CKA_ENCRYPT = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
  CKA_DECRYPT = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
#  CKA_WRAP = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
#  CKA_UNWRAP = true
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
}