Yes. You need shorter public and private key and adjust the number of bits for # of rolls, vouchers checksum etc. The following shell script will create a 40 bit key pair to be used:
#!/bin/sh # echo Creating new 40 bit public and private RSA keys openssl genrsa 40 >voucher.private.new openssl rsa -pubout <voucher.private.new >voucher.public.new ls -l voucher.private.new voucher.public.new
copy paste the resulting keys into the voucher GUI, then use e.g. the following values:
number of roll bits: 16 number of ticket bits: 12 checksum bits: 7 magic number bits: 4
(16+12+7+4)=39 bits total
Depending on the character set used (more characters will also make shorter vouchers), you'll end up with voucher key length around 8 characters
|