You don't need to add that module to the libraries in the app.yaml.
Yo just need to upload the modules along with your code. For that, instead of installing the module (with pip, easy_install, apt-get, etc.), you copy/decompress it in your project folder.
Why don't you use instead Pycrypto, which is supported as a third party library and is written in C.
Regarding the last question, there are some limitation of what libraries can be run in Appengine. Currently no user provided modules with C extensions are supported, some are supported via the third party libraries. Additionally some system calls are disabled for security, so that can also prevents the use of some modules.