Rishi Renjith wrote: > Hello, > I have a hardware accelerator installed in my Solaris 10 x86 machine and > would like to disable the Sun PKCS11 softtoken.
> *bash-3.00# cryptoadm disable > provider="/usr/lib/security/$ISA/pkcs11_softtoken_* > *extra.so" > mechanism=CKM_RSA_PKCS,CKM_RSA_PKCS_KEY_PAIR_GEN,CKM_RSA_X_509,CKM_MD* > *5_RSA_PKCS* > *cryptoadm: /usr/lib/security//pkcs11_softtoken_extra.so does not exist.\* This is a shell problem. Your shell expanded the $ISA inside the double quotes. The $ISA isn't a shell variable. Try with single quotes or using a \ infront of the $ISA, eg: cryptoadm disable provider='/usr/lib/security/$ISA/pkcs11_softtoken_extra.so' .... -- Darren J Moffat