https://github.com/OpenSC/OpenSC/wiki/Aladdin-eToken-PRO#etoken-pro-java #OpenSC : How to extract #SafeNet #eToken 5110 SC rsa pub key to using it with #OpenSsh : I figured out something that work, but is there a documentation to check or contribute to ?
```
pkcs11-tool --module $module --read-object --pin $PIN --type pubkey --id $id --output-file "$file.der"
openssl rsa -inform DER -outform PEM -in "$file.der" -pubin > "$file.pem"
ssh-keygen -f "$file.pem" -i -mPKCS8 > "$file.pub"
```
BTW FLOSS alt (without blob) welcome

