4

I am building a Rails application with stripe integrated. I have everything setup except for when I try to carry out a transaction on my local development environment. I get:

SSL_connect returned=1 errno=0 state=SSLv3 read server key exchange B: bad ecpoint

I tried a lot of different things to get a valid SSL cert on my machine but nothing seems to be working.

It isn't anything to do with my setup because it is working fine on a test heroku server.

Any help would be greatly appreciated.

the Tin Man
  • 158,662
  • 42
  • 215
  • 303
Thomas Cullen
  • 258
  • 2
  • 7

1 Answers1

0

It typically happens when there are issues with the Ruby/OpenSSL integration. Try updating RVM and reinstalling the libs/ruby.

If you're still having issues, please list the OS, Ruby, OpenSSL and rvm/rbenv versions you're using.

Community
  • 1
  • 1
Musannif Zahir
  • 3,001
  • 1
  • 21
  • 31
  • This fixed it. I removed all SSL certs and then removed rvm. reinstalled and made sure everything was up to date. Then updated the cert. – Thomas Cullen Oct 20 '13 at 22:44