cryptedlen       4466 ext/openssl/openssl.c 	int cryptedlen;
cryptedlen       4486 ext/openssl/openssl.c 	cryptedlen = EVP_PKEY_size(pkey);
cryptedlen       4487 ext/openssl/openssl.c 	cryptedbuf = emalloc(cryptedlen + 1);
cryptedlen       4496 ext/openssl/openssl.c 						padding) == cryptedlen);
cryptedlen       4504 ext/openssl/openssl.c 		cryptedbuf[cryptedlen] = '\0';
cryptedlen       4505 ext/openssl/openssl.c 		ZVAL_STRINGL(crypted, (char *)cryptedbuf, cryptedlen, 0);
cryptedlen       4524 ext/openssl/openssl.c 	int cryptedlen;
cryptedlen       4544 ext/openssl/openssl.c 	cryptedlen = EVP_PKEY_size(pkey);
cryptedlen       4545 ext/openssl/openssl.c 	crypttemp = emalloc(cryptedlen + 1);
cryptedlen       4550 ext/openssl/openssl.c 			cryptedlen = RSA_private_decrypt(data_len, 
cryptedlen       4555 ext/openssl/openssl.c 			if (cryptedlen != -1) {
cryptedlen       4556 ext/openssl/openssl.c 				cryptedbuf = emalloc(cryptedlen + 1);
cryptedlen       4557 ext/openssl/openssl.c 				memcpy(cryptedbuf, crypttemp, cryptedlen);
cryptedlen       4569 ext/openssl/openssl.c 		cryptedbuf[cryptedlen] = '\0';
cryptedlen       4570 ext/openssl/openssl.c 		ZVAL_STRINGL(crypted, (char *)cryptedbuf, cryptedlen, 0);
cryptedlen       4590 ext/openssl/openssl.c 	int cryptedlen;
cryptedlen       4609 ext/openssl/openssl.c 	cryptedlen = EVP_PKEY_size(pkey);
cryptedlen       4610 ext/openssl/openssl.c 	cryptedbuf = emalloc(cryptedlen + 1);
cryptedlen       4619 ext/openssl/openssl.c 						padding) == cryptedlen);
cryptedlen       4628 ext/openssl/openssl.c 		cryptedbuf[cryptedlen] = '\0';
cryptedlen       4629 ext/openssl/openssl.c 		ZVAL_STRINGL(crypted, (char *)cryptedbuf, cryptedlen, 0);
cryptedlen       4648 ext/openssl/openssl.c 	int cryptedlen;
cryptedlen       4668 ext/openssl/openssl.c 	cryptedlen = EVP_PKEY_size(pkey);
cryptedlen       4669 ext/openssl/openssl.c 	crypttemp = emalloc(cryptedlen + 1);
cryptedlen       4674 ext/openssl/openssl.c 			cryptedlen = RSA_public_decrypt(data_len, 
cryptedlen       4679 ext/openssl/openssl.c 			if (cryptedlen != -1) {
cryptedlen       4680 ext/openssl/openssl.c 				cryptedbuf = emalloc(cryptedlen + 1);
cryptedlen       4681 ext/openssl/openssl.c 				memcpy(cryptedbuf, crypttemp, cryptedlen);
cryptedlen       4695 ext/openssl/openssl.c 		cryptedbuf[cryptedlen] = '\0';
cryptedlen       4696 ext/openssl/openssl.c 		ZVAL_STRINGL(crypted, (char *)cryptedbuf, cryptedlen, 0);