You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
irb(main):001:0> 'foo'.crypt('ba')
NotImplementedError: crypt unsupported or native support failed to load
from org/jruby/RubyString.java:2660:in `crypt'
from (irb):1:in `evaluate'
from org/jruby/RubyKernel.java:1107:in `eval'
from org/jruby/RubyKernel.java:1507:in `loop'
from org/jruby/RubyKernel.java:1270:in `catch'
from org/jruby/RubyKernel.java:1270:in `catch'
from jirb:13:in `(root)'
Windows doesn't offer a native libcrypt, so MRI uses its own custom implementation of the awful basic DES crypt(3). As such, it probably makes sense to fall back to the Java implementation that was used in previous versions of JRuby.
The text was updated successfully, but these errors were encountered:
Windows doesn't offer a native libcrypt, so MRI uses its own custom implementation of the awful basic DES crypt(3). As such, it probably makes sense to fall back to the Java implementation that was used in previous versions of JRuby.
The text was updated successfully, but these errors were encountered: