PHP » PYTHON |
login |
register |
about
|
PYTHON openssl_public_encrypt
is this article helpful?
|
Python replacement for PHP's openssl_public_encrypt
[
edit
| history
]
from M2Crypto import BIO, RSA; message = str(message ); varkey = open(pub_key).read(); # demonstrate how to load key from a string bio = BIO.MemoryBuffer(varkey); rsa = RSA.load_pub_key_bio(bio); # encrypt, IMPORTANT: read about padding modes (RSA.pkcs1_padding) msgEncrypted = rsa.public_encrypt(message, RSA.pkcs1_padding); del rsa, bio; openssl_public_encrypt(PHP 4 >= 4.0.6, PHP 5) openssl_public_encrypt — Encrypts data with public key Description
bool openssl_public_encrypt
( string $data
, string &$crypted
, mixed $key
[, int $padding= OPENSSL_PKCS1_PADDING
] )
openssl_public_encrypt() encrypts data with public key and stores the result into crypted . Encrypted data can be decrypted via openssl_private_decrypt(). This function can be used e.g. to encrypt message which can be then read only by owner of the private key. It can be also used to store secure data in database. Parameters
Return ValuesReturns TRUE on success or FALSE on failure. See Also
|
more
Recently updated
more
Most requested
more
Last requests
|