@@ -708,6 +708,13 @@ Connection.prototype._getSSLOptions = function() {
   this.sslConnectionOptions.rejectUnauthorized = this.options.ssl.rejectUnauthorized;
   this.sslConnectionOptions.passphrase = this.options.ssl.passphrase;
 
+  if (this.options.ssl.ciphers) {
+    this.sslConnectionOptions.ciphers = this.options.ssl.ciphers;
+  }
+  if (this.options.ssl.secureProtocol) {
+    this.sslConnectionOptions.secureProtocol = this.options.ssl.secureProtocol;
+  }
+
   return this.sslConnectionOptions;
 };
 