|
一部機能をDLLにして、カスタマイズ可能な風に
できないもんでしょうか?
というのは、やりたいことは、
1.独自のアルゴリズムで、パスワードの生成ができる。
2.独自のアルゴリズムで、.secファイルを暗号/復号できる。
というものです。
stub.dll を作成し、
customPassword(char *buf, int* bufsize, int passwdlen);
customEncrypt(void* outbuf, int* outbufsise
, void* inbuf, int* inbuf);
customDecrypt(void* outbuf, int* outbufsise
, void* inbuf, int* inbuf);
なる関数のエントリポイントを与える。
stub.dllを入れ替えると、異なった動きができる。
できたらいいなーという案でした。
|
|