3

Common LispのIronclad暗号化ライブラリが大好きです。好奇心から、このライブラリを Emacs Lisp プロジェクトに実装した人はいますか? この質問を調査する際に、純粋な Emacs Lips プロジェクトと互換性を持たせるには作業が多すぎるのではないかと思いましたが、Elisp と CL のハイブリッド プロジェクトも、必要なことのオプションになる可能性があります。

4

1 に答える 1

3

Some of the functionality of ironclad is built-in to Emacs via the secure-hash and md5 functions. http://www.gnu.org/software/emacs/manual/html_node/elisp/Checksum_002fHash.html has more information.

These functions are written in C. I don't know for sure, but it seems like Emacs Lisp's slow speed and small fixnums would be a real obstacle for doing this work directly in pure elisp.

于 2015-05-05T20:49:16.440 に答える