Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
language: ruby
before_install:
- "echo 'gem: --no-rdoc --no-ri' > ~/.gemrc"
- gem update --system
- gem install bundler
rvm:
Expand Down
875 changes: 524 additions & 351 deletions ext/jruby/bcrypt_jruby/BCrypt.java

Large diffs are not rendered by default.

13 changes: 12 additions & 1 deletion ext/mri/crypt.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
/*
* Written by Solar Designer and placed in the public domain.
* Written by Solar Designer <solar at openwall.com> in 2000-2002.
* No copyright is claimed, and the software is hereby placed in the public
* domain. In case this attempt to disclaim copyright and place the software
* in the public domain is deemed null and void, then the software is
* Copyright (c) 2000-2002 Solar Designer and it is hereby released to the
* general public under the following terms:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted.
*
* There's ABSOLUTELY NO WARRANTY, express or implied.
*
* See crypt_blowfish.c for more information.
*/

Expand Down
Loading