Dear all, I just modified this page! http://www.opensc-project.org/opensc/wiki/FTCOSPK01C
Previous information: == Speed == * RSA 1024 key generation: 0m14.139s * RSA 2048 key generation: 2m38.891s My own test shows: == Speed == Initialisation: 3 s RSA 1024: 10 s RSA 2048: 67 s So I modified key timing calculated by Martin and added my results. Kind regards, Jean-Michel ******************************************************************* == Script == BEGIN=$(date +%s) pkcs15-init -E; pkcs15-init --create-pkcs15 --profile pkcs15+onepin --use-default-transport-key --pin 0000 --puk 111111 --label "François Pérou" NOW=$(date +%s) DIFF=$(($NOW - $BEGIN)) echo "Initialisation: $DIFF s" BEGIN=$(date +%s) pkcs15-init --generate-key rsa/1024 --auth-id 01 --pin 0000 NOW=$(date +%s) DIFF=$(($NOW - $BEGIN)) echo "RSA 1024: $DIFF s" BEGIN=$(date +%s) pkcs15-init --generate-key rsa/2048 --auth-id 01 --pin 0000 NOW=$(date +%s) DIFF=$(($NOW - $BEGIN)) echo "RSA 2048: $DIFF s" _______________________________________________ opensc-devel mailing list opensc-devel@lists.opensc-project.org http://www.opensc-project.org/mailman/listinfo/opensc-devel