$ ./rsa.out <--- (実行ファイルがrsa.outの場合の例) usage : ./rsa.out -[ed] e/d n InputFILE OutputFILE Try `./rsa.out -h' for more information. $ $ ./rsa.out -h <---(さらに、オプション「-h」を付けると、もう少し詳しい情報が得られる実行ファイルもある) Encryption : (e,n) is an encryption key. : ./rsa.out -e e n InputFILE OutputFILE Example : (e, n, InputFILE, OutputFILE)=(9893, 32399, foo, goo) : ./rsa.out -e 9893 32399 foo goo : Decryption : (d,n) is a decryption key. : ./rsa.out -d d n InputFILE OutputFILE Example : (d, n, InputFILE, OutputFILE)=(7457, 32399, goo, hoo) : ./rsa.out -d 7457 32399 goo hoo $
>cp /ced-home/staff/kurihara/prog2/shift.c ./
>wget http://www.code.cei.uec.ac.jp/Class/jikken-cei/prog2/shift.c
以上