
* Use sslcrypto instead of pyelliptic and pybitcointools * Fix CryptMessage * Support Python 3.4 * Fix user creation * Get rid of pyelliptic and pybitcointools * Fix typo * Delete test file * Add sslcrypto to tree * Update sslcrypto * Add pyaes to src/lib * Fix typo in tests * Update sslcrypto version * Use privatekey_bin instead of privatekey for bytes objects * Fix sslcrypto * Fix Benchmark plugin * Don't calculate the same thing twice * Only import sslcrypto once * Handle fallback sslcrypto implementation during tests * Fix sslcrypto fallback implementation selection
11 lines
164 B
Python
11 lines
164 B
Python
# pylint: disable=too-few-public-methods
|
|
|
|
from .library import openssl_backend
|
|
|
|
|
|
class RSA:
|
|
def get_backend(self):
|
|
return openssl_backend
|
|
|
|
|
|
rsa = RSA()
|