author | mchung |
Mon, 22 Apr 2013 10:22:59 +0100 | |
changeset 18236 | 113b932d5809 |
parent 11507 | bd978326a655 |
child 24507 | a1219a8699e5 |
permissions | -rw-r--r-- |
2 | 1 |
# |
2 |
# Configuration file to allow the SunPKCS11 provider to utilize |
|
3 |
# the Solaris Cryptographic Framework, if it is available |
|
4 |
# |
|
5 |
||
6 |
name = Solaris |
|
7 |
||
8 |
description = SunPKCS11 accessing Solaris Cryptographic Framework |
|
9 |
||
10 |
library = /usr/lib/$ISA/libpkcs11.so |
|
11 |
||
12 |
handleStartupErrors = ignoreAll |
|
13 |
||
10781
f8a00c400655
7099228: Use a PKCS11 config attribute to control encoding of an EC point
vinnie
parents:
9539
diff
changeset
|
14 |
# Use the X9.63 encoding for EC points (do not wrap in an ASN.1 OctetString). |
f8a00c400655
7099228: Use a PKCS11 config attribute to control encoding of an EC point
vinnie
parents:
9539
diff
changeset
|
15 |
useEcX963Encoding = true |
f8a00c400655
7099228: Use a PKCS11 config attribute to control encoding of an EC point
vinnie
parents:
9539
diff
changeset
|
16 |
|
2 | 17 |
attributes = compatibility |
18 |
||
19 |
disabledMechanisms = { |
|
11507 | 20 |
CKM_DSA_KEY_PAIR_GEN |
21 |
# the following mechanisms are disabled due to CKR_SAVED_STATE_INVALID bug |
|
22 |
# (Solaris bug 7058108) |
|
2 | 23 |
CKM_MD2 |
24 |
CKM_MD5 |
|
25 |
CKM_SHA_1 |
|
11507 | 26 |
# the following mechanisms are disabled due to no cloning support |
27 |
# (Solaris bug 7050617) |
|
2 | 28 |
CKM_SHA256 |
29 |
CKM_SHA384 |
|
30 |
CKM_SHA512 |
|
11507 | 31 |
# the following mechanisms are disabled due to performance issues |
32 |
# (Solaris bug 6337157) |
|
2 | 33 |
CKM_DSA_SHA1 |
34 |
CKM_MD5_RSA_PKCS |
|
35 |
CKM_SHA1_RSA_PKCS |
|
36 |
CKM_SHA256_RSA_PKCS |
|
37 |
CKM_SHA384_RSA_PKCS |
|
38 |
CKM_SHA512_RSA_PKCS |
|
11507 | 39 |
# the following mechanisms are disabled to ensure backward compatibility |
40 |
# (Solaris bug 6545046) |
|
7268
4e3088f05c63
6848930: JSN security test jce/Global/Cipher/PKCS5Padding cannot thrown expected BadPaddingException
valeriep
parents:
2
diff
changeset
|
41 |
CKM_DES_CBC_PAD |
4e3088f05c63
6848930: JSN security test jce/Global/Cipher/PKCS5Padding cannot thrown expected BadPaddingException
valeriep
parents:
2
diff
changeset
|
42 |
CKM_DES3_CBC_PAD |
4e3088f05c63
6848930: JSN security test jce/Global/Cipher/PKCS5Padding cannot thrown expected BadPaddingException
valeriep
parents:
2
diff
changeset
|
43 |
CKM_AES_CBC_PAD |
2 | 44 |
} |
45 |