test/jdk/sun/security/tools/keytool/p11-nss.txt
author vtewari
Wed, 25 Apr 2018 12:29:48 +0530
changeset 49882 a02abc7e5536
parent 47216 71c04702a3d5
permissions -rw-r--r--
8144806: sun/security/tools/keytool/standard.sh fails intermittently at deleting x.jks Reviewed-by: weijun Contributed-by: bhanu.prakash.gopularam@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
}