bcrypt_pbkdf 1.0.0.alpha1-x86-mingw32 → 1.1.0.rc2-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 9336cea99876ad41a3a67958ce8954432fe69246
4
- data.tar.gz: 3460d0484b454f959a1ff217ffdbc194e09cbd50
2
+ SHA256:
3
+ metadata.gz: 487b201b39f11a9b727049130178a64b547d616a0365c1f957573a7ba391ccd6
4
+ data.tar.gz: 325f0ac86cbd9a0443ef96ba7c6a8d999297caa76c1c4a51ef13c7378fb757bf
5
5
  SHA512:
6
- metadata.gz: d08f6fd7750f7ffa7b0f192cc1118df5cf7ac1ec2b6e268d8ae83235386ac7d0e196f57cc2b2319d89cd0685b8536e359c9d3991a91360b312a1f6822b12bd59
7
- data.tar.gz: 9f199db5e997cc29f6223a1a63d524bf7458800aec4a0ea017035bfe87a37b08d2aba1a3abe33fd759a57bc8d071efb39e4dfbadb55d9276a74b5f786eac39c6
6
+ metadata.gz: 75bf8dcffca16b731fc974819a5104eaa5afd02be3ca972ab2916d4d80e11005118caf833333fcd10a4ca08f5af9640d42ac681b91073e50a3c9aaf2a12090ae
7
+ data.tar.gz: 2e29f746356ee76f365551b0b50faf17c46251684dddea1f478ac4c03cdc160f320b00270f384ba69b121e56a48833977687ec4594269efb387772374a609ac0
@@ -1,8 +1,11 @@
1
1
  language: ruby
2
+ arch:
3
+ - amd64
4
+ - ppc64le
2
5
  rvm:
3
- - 2.0.0
4
- - 2.1.0
5
- - 2.2.0
6
6
  - 2.3.0
7
- - rbx-2
7
+ - 2.4.0
8
+ - 2.5.0
9
+ - 2.6.0
10
+ - 2.7.0
8
11
  script: bundle exec rake
@@ -1,3 +1,3 @@
1
1
  # 1.0.0.apha1
2
2
 
3
- inital version
3
+ initial version
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # bcrypt_pdkfd-ruby
1
+ # bcrypt_pbkdf-ruby
2
2
 
3
- bcrypt_pdkfd is a ruby gem implementing bcrypt_pdkfd from OpenBSD. This is currently used by net-ssh to read password encrypted Ed25519 keys.
3
+ bcrypt_pbkdf is a ruby gem implementing bcrypt_pbkdf from OpenBSD. This is currently used by net-ssh to read password encrypted Ed25519 keys.
4
4
 
5
5
  [![Build Status](https://travis-ci.org/mfazekas/bcrypt_pbkdf-ruby.png?branch=master)](https://travis-ci.org/mfazekas/bcrypt_pbkdf-ruby)
6
6
 
@@ -13,3 +13,20 @@ bcrypt_pdkfd is a ruby gem implementing bcrypt_pdkfd from OpenBSD. This is curre
13
13
 
14
14
  http://www.tedunangst.com/flak/post/bcrypt-pbkdf
15
15
  http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/lib/libutil/bcrypt_pbkdf.c?rev=1.13&content-type=text/x-cvsweb-markup
16
+
17
+ # Building
18
+
19
+ For windows cross build make sure you checked out the gem source under the home directory
20
+
21
+ ```sh
22
+ gem install rake-compiler-dock
23
+ ```
24
+
25
+ ```sh
26
+ bundle exec rake compile
27
+ bundle exec rake test
28
+ bundle exec rake clean clobber
29
+ bundle exec rake gem:windows
30
+ bundle exec rake release
31
+ bundle exec rake gem:windows:release
32
+ ```
data/Rakefile CHANGED
@@ -1,18 +1,24 @@
1
1
  require 'rake/testtask'
2
2
  require 'rubygems/package_task'
3
+ require 'bundler/gem_tasks'
3
4
  require 'rake/extensiontask'
4
5
  require 'rake/clean'
5
6
  require 'rdoc/task'
6
7
  require 'benchmark'
7
8
 
9
+
8
10
  CLEAN.include(
9
11
  "tmp",
10
12
  "lib/2.0",
11
13
  "lib/2.1",
12
14
  "lib/2.2",
13
15
  "lib/2.3",
14
- "lib/bcrypt_pbkdf_ext.so",
15
- "lib/bcrypt_pbkdf_ext.bundle",
16
+ "lib/2.4",
17
+ "lib/2.5",
18
+ "lib/2.6",
19
+ "lib/2.7",
20
+ "lib/3.0",
21
+ "lib/bcrypt_pbkdf_ext.so"
16
22
  )
17
23
  CLOBBER.include(
18
24
  "doc",
@@ -21,8 +27,14 @@ CLOBBER.include(
21
27
 
22
28
  task 'gem:windows' do
23
29
  require 'rake_compiler_dock'
24
- RakeCompilerDock.sh "bundle && rake cross native gem RUBY_CC_VERSION=2.3.0:2.2.2:2.1.6:2.0.0"
25
- #:2.2.2:2.1.6:2.0.0
30
+ sh "bundle package" # Avoid repeated downloads of gems by using gem files from the host.
31
+ RakeCompilerDock.sh "bundle && rake cross native gem RUBY_CC_VERSION=3.0.0:2.7.0:2.6.0:2.5.0:2.4.0:2.3.0:2.2.2:2.1.6:2.0.0"
32
+ end
33
+
34
+ task 'gem:windows:release' do
35
+ version = Gem::Specification::load("bcrypt_pbkdf.gemspec").version
36
+ sh "gem push pkg/bcrypt_pbkdf-#{version}-x86-mingw32.gem"
37
+ sh "gem push pkg/bcrypt_pbkdf-#{version}-x64-mingw32.gem"
26
38
  end
27
39
 
28
40
  GEMSPEC = Gem::Specification.load("bcrypt_pbkdf.gemspec")
@@ -31,7 +43,7 @@ task :default => [:compile, :spec]
31
43
 
32
44
  desc "Run all tests"
33
45
  Rake::TestTask.new do |t|
34
- #t.pattern =
46
+ #t.pattern =
35
47
  t.test_files = FileList['test/**/*_test.rb']
36
48
  t.ruby_opts = ['-w']
37
49
  t.libs << "test"
@@ -56,13 +68,4 @@ Rake::ExtensionTask.new("bcrypt_pbkdf_ext", GEMSPEC) do |ext|
56
68
  ext.ext_dir = 'ext/mri'
57
69
  ext.cross_compile = true
58
70
  ext.cross_platform = ['x86-mingw32', 'x64-mingw32']
59
- puts "FAT_DIR:#{ENV["FAT_DIR"]}"
60
- puts "RUBY_VERSION:#{RUBY_VERSION}"
61
- #if RUBY_VERSION=="2.3.0"
62
- # ext.lib_dir = File.join('lib',"2.3")
63
- #end
64
- #else
65
- # ext.lib_dir = File.join(*['lib', ENV['FAT_DIR']].compact)
66
- #ext.cross_platform = ['x86-mingw32', 'x64-mingw32']
67
- #ext.cross_platform = ['i386-mingw32', 'x64-mingw32']
68
71
  end
@@ -1,21 +1,20 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'bcrypt_pbkdf'
3
- s.version = '1.0.0.alpha1'
3
+ s.version = '1.1.0.rc2'
4
4
 
5
- s.summary = "OpenBSD's bcrypt_pdkfd (a variant of PBKDF2 with bcrypt-based PRF)"
5
+ s.summary = "OpenBSD's bcrypt_pbkdf (a variant of PBKDF2 with bcrypt-based PRF)"
6
6
  s.description = <<-EOF
7
- This gem implements bcrypt_pdkfd (a variant of PBKDF2 with bcrypt-based PRF)
7
+ This gem implements bcrypt_pbkdf (a variant of PBKDF2 with bcrypt-based PRF)
8
8
  EOF
9
9
 
10
10
  s.files = `git ls-files`.split("\n")
11
11
  s.require_path = 'lib'
12
12
 
13
- s.add_development_dependency 'rake-compiler', '~> 0.9.7'
13
+ s.add_development_dependency 'rake-compiler', '~> 1.1.0'
14
14
  s.add_development_dependency 'minitest', '>= 5'
15
- s.add_development_dependency 'rbnacl', '~> 3.3'
16
- s.add_development_dependency 'rbnacl-libsodium', '~> 1.0.8'
15
+ s.add_development_dependency 'openssl'
17
16
  s.add_development_dependency 'rdoc', '~> 3.12'
18
- s.add_development_dependency 'rake-compiler-dock', '~> 0.5.0'
17
+ s.add_development_dependency 'rake-compiler-dock', '~> 1.0.1'
19
18
 
20
19
  s.has_rdoc = true
21
20
  s.rdoc_options += ['--title', 'bcrypt_pbkdf', '--line-numbers', '--inline-source', '--main', 'README.md']
@@ -25,6 +24,6 @@ Gem::Specification.new do |s|
25
24
 
26
25
  s.authors = ["Miklos Fazekas"]
27
26
  s.email = "mfazekas@szemafor.com"
28
- s.homepage = "https://github.com/mfazekas/bcrypt_pbkdf-ruby"
27
+ s.homepage = "https://github.com/net-ssh/bcrypt_pbkdf-ruby"
29
28
  s.license = "MIT"
30
- end
29
+ end
@@ -7,15 +7,15 @@ static VALUE cBCryptPbkdfEngine;
7
7
  /* Given a secret and a salt a key and the number of rounds and returns the encrypted secret
8
8
  */
9
9
  static VALUE bc_crypt_pbkdf(VALUE self, VALUE pass, VALUE salt, VALUE keylen, VALUE rounds) {
10
- size_t okeylen = NUM2UINT(keylen);
11
- u_int8_t* okey = xmalloc(keylen);
10
+ size_t okeylen = NUM2ULONG(keylen);
11
+ u_int8_t* okey = xmalloc(okeylen);
12
12
  VALUE out;
13
13
 
14
14
  int ret = bcrypt_pbkdf(
15
15
  StringValuePtr(pass), RSTRING_LEN(pass),
16
16
  (const u_int8_t*)StringValuePtr(salt), RSTRING_LEN(salt),
17
17
  okey, okeylen,
18
- NUM2UINT(rounds));
18
+ NUM2ULONG(rounds));
19
19
  if (ret < 0)
20
20
  return Qnil;
21
21
  out = rb_str_new((const char*)okey, okeylen);
@@ -6,7 +6,7 @@
6
6
  #include <stdlib.h>
7
7
  #include <strings.h>
8
8
 
9
- #if defined(_WIN32)
9
+ #if defined(_WIN32) || (defined(__sun) && defined(__SVR4))
10
10
 
11
11
  typedef uint8_t u_int8_t;
12
12
  typedef uint16_t u_int16_t;
@@ -7,7 +7,7 @@
7
7
  #endif
8
8
  #define SHA512_DIGEST_LENGTH crypto_hash_sha512_BYTES
9
9
 
10
- inline void SHA512Init(SHA2_CTX* ctx) { crypto_hash_sha512_init(ctx); }
11
- inline void SHA512Update(SHA2_CTX* ctx, const void *in, size_t inlen) { crypto_hash_sha512_update(ctx, in, inlen); }
12
- inline void SHA512Final(uint8_t* out, SHA2_CTX* ctx) { crypto_hash_sha512_final(ctx, out); }
10
+ inline static void SHA512Init(SHA2_CTX* ctx) { crypto_hash_sha512_init(ctx); }
11
+ inline static void SHA512Update(SHA2_CTX* ctx, const void *in, size_t inlen) { crypto_hash_sha512_update(ctx, in, inlen); }
12
+ inline static void SHA512Final(uint8_t* out, SHA2_CTX* ctx) { crypto_hash_sha512_final(ctx, out); }
13
13
 
Binary file
Binary file
@@ -1,10 +1,8 @@
1
1
  require 'minitest/autorun'
2
2
  require 'test_helper'
3
3
 
4
- # bcrypt_pbkdf in ruby using libsodium
5
- require 'rbnacl/libsodium'
6
- require 'rbnacl'
7
- require 'rbnacl/hash'
4
+ # bcrypt_pbkdf in ruby
5
+ require 'openssl'
8
6
 
9
7
  BCRYPT_BLOCKS = 8
10
8
  BCRYPT_HASHSIZE = BCRYPT_BLOCKS * 4
@@ -13,7 +11,7 @@ def bcrypt_pbkdf(password, salt, keylen, rounds)
13
11
  stride = (keylen + BCRYPT_HASHSIZE - 1) / BCRYPT_HASHSIZE
14
12
  amt = (keylen + stride - 1) / stride
15
13
 
16
- sha2pass = RbNaCl::Hash.sha512(password)
14
+ sha2pass = OpenSSL::Digest::SHA512.new(password).digest
17
15
  #puts "[RB] sha2pass:#{sha2pass.inspect} #{sha2pass.size}"
18
16
 
19
17
  remlen = keylen
@@ -32,23 +30,23 @@ def bcrypt_pbkdf(password, salt, keylen, rounds)
32
30
  countsalt[saltlen + 3] = (count & 0xff).chr
33
31
  #puts "[RC] countsalt: #{countsalt.inspect} len:#{countsalt.size}"
34
32
 
35
- sha2salt = RbNaCl::Hash.sha512(countsalt)
33
+ sha2salt = OpenSSL::Digest::SHA512.new(countsalt).digest
36
34
  tmpout = BCryptPbkdf::Engine::__bc_crypt_hash(sha2pass, sha2salt)
37
35
  out = tmpout.clone
38
36
 
39
37
  #puts "[RB] out: #{out.inspect} keylen:#{remlen} count:#{count}"
40
38
  (1...rounds).each do |i|
41
- sha2salt = RbNaCl::Hash.sha512(tmpout)
39
+ sha2salt = OpenSSL::Digest::SHA512.new(tmpout).digest
42
40
  tmpout = BCryptPbkdf::Engine::__bc_crypt_hash(sha2pass, sha2salt)
43
41
  out.bytes.each_with_index {|o,j| out.setbyte(j,o ^ tmpout[j].ord) }
44
42
  end
45
43
 
46
44
  amt = [amt, remlen].min
47
45
  (0...amt).each do |i|
48
- dest = i * stride + (count - 1)
46
+ dest = i * stride + (count -1)
49
47
  key[dest] = out[i] if (dest < keylen)
50
48
  end
51
-
49
+
52
50
  remlen -= amt
53
51
  count += 1
54
52
  end
@@ -66,13 +64,13 @@ class TestExt < MiniTest::Unit::TestCase
66
64
  assert_equal bcrypt_pbkdf(p,s,l,r), BCryptPbkdf::key(p,s,l,r)
67
65
  end
68
66
  end
69
-
67
+
70
68
 
71
69
  def table
72
70
  [
73
- ["pass2", "salt2", 12, 2, [214, 14, 48, 162, 131, 206, 121, 176, 50, 104, 231, 252]],
71
+ ["pass2", "salt2", 12, 2, [214, 14, 48, 162, 131, 206, 121, 176, 50, 104, 231, 252]],
74
72
  ["\u0000\u0001foo", "\u0001\u0002fooo3", 14, 5, [46, 189, 32, 185, 94, 85, 232, 10, 84, 26, 44, 161, 49, 126]],
75
73
  ["doozoasd", "fooo$AS!", 14, 22, [57, 62, 50, 107, 70, 155, 65, 5, 129, 211, 189, 169, 188, 65]]
76
74
  ]
77
75
  end
78
- end
76
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bcrypt_pbkdf
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.alpha1
4
+ version: 1.1.0.rc2
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Miklos Fazekas
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-19 00:00:00.000000000 Z
11
+ date: 2020-12-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.7
19
+ version: 1.1.0
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.9.7
26
+ version: 1.1.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: minitest
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -39,33 +39,19 @@ dependencies:
39
39
  - !ruby/object:Gem::Version
40
40
  version: '5'
41
41
  - !ruby/object:Gem::Dependency
42
- name: rbnacl
42
+ name: openssl
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '3.3'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: '3.3'
55
- - !ruby/object:Gem::Dependency
56
- name: rbnacl-libsodium
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
45
+ - - ">="
60
46
  - !ruby/object:Gem::Version
61
- version: 1.0.8
47
+ version: '0'
62
48
  type: :development
63
49
  prerelease: false
64
50
  version_requirements: !ruby/object:Gem::Requirement
65
51
  requirements:
66
- - - "~>"
52
+ - - ">="
67
53
  - !ruby/object:Gem::Version
68
- version: 1.0.8
54
+ version: '0'
69
55
  - !ruby/object:Gem::Dependency
70
56
  name: rdoc
71
57
  requirement: !ruby/object:Gem::Requirement
@@ -86,15 +72,15 @@ dependencies:
86
72
  requirements:
87
73
  - - "~>"
88
74
  - !ruby/object:Gem::Version
89
- version: 0.5.0
75
+ version: 1.0.1
90
76
  type: :development
91
77
  prerelease: false
92
78
  version_requirements: !ruby/object:Gem::Requirement
93
79
  requirements:
94
80
  - - "~>"
95
81
  - !ruby/object:Gem::Version
96
- version: 0.5.0
97
- description: " This gem implements bcrypt_pdkfd (a variant of PBKDF2 with bcrypt-based
82
+ version: 1.0.1
83
+ description: " This gem implements bcrypt_pbkdf (a variant of PBKDF2 with bcrypt-based
98
84
  PRF)\n"
99
85
  email: mfazekas@szemafor.com
100
86
  executables: []
@@ -109,7 +95,6 @@ files:
109
95
  - CHANGELOG.md
110
96
  - COPYING
111
97
  - Gemfile
112
- - Gemfile.lock
113
98
  - README.md
114
99
  - Rakefile
115
100
  - bcrypt_pbkdf.gemspec
@@ -126,14 +111,16 @@ files:
126
111
  - ext/mri/sha2.h
127
112
  - ext/mri/util.h
128
113
  - ext/mri/utils.h
129
- - lib/2.0/bcrypt_pbkdf_ext.so
130
- - lib/2.1/bcrypt_pbkdf_ext.so
131
114
  - lib/2.2/bcrypt_pbkdf_ext.so
132
115
  - lib/2.3/bcrypt_pbkdf_ext.so
116
+ - lib/2.4/bcrypt_pbkdf_ext.so
117
+ - lib/2.5/bcrypt_pbkdf_ext.so
118
+ - lib/2.6/bcrypt_pbkdf_ext.so
119
+ - lib/2.7/bcrypt_pbkdf_ext.so
133
120
  - lib/bcrypt_pbkdf.rb
134
121
  - test/bcrypt_pnkdf/engine_test.rb
135
122
  - test/test_helper.rb
136
- homepage: https://github.com/mfazekas/bcrypt_pbkdf-ruby
123
+ homepage: https://github.com/net-ssh/bcrypt_pbkdf-ruby
137
124
  licenses:
138
125
  - MIT
139
126
  metadata: {}
@@ -151,16 +138,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
151
138
  requirements:
152
139
  - - ">="
153
140
  - !ruby/object:Gem::Version
154
- version: '0'
141
+ version: '2.0'
142
+ - - "<"
143
+ - !ruby/object:Gem::Version
144
+ version: 3.1.dev
155
145
  required_rubygems_version: !ruby/object:Gem::Requirement
156
146
  requirements:
157
147
  - - ">"
158
148
  - !ruby/object:Gem::Version
159
149
  version: 1.3.1
160
150
  requirements: []
161
- rubyforge_project:
162
- rubygems_version: 2.5.1
151
+ rubygems_version: 3.1.2
163
152
  signing_key:
164
153
  specification_version: 4
165
- summary: OpenBSD's bcrypt_pdkfd (a variant of PBKDF2 with bcrypt-based PRF)
154
+ summary: OpenBSD's bcrypt_pbkdf (a variant of PBKDF2 with bcrypt-based PRF)
166
155
  test_files: []
@@ -1,36 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- bcrypt_pbkdf (1.0.0.alpha1)
5
-
6
- GEM
7
- remote: https://rubygems.org/
8
- specs:
9
- ffi (1.9.10)
10
- json (1.8.3)
11
- minitest (5.8.4)
12
- rake (11.1.1)
13
- rake-compiler (0.9.7)
14
- rake
15
- rake-compiler-dock (0.5.2)
16
- rbnacl (3.3.0)
17
- ffi
18
- rbnacl-libsodium (1.0.8)
19
- rbnacl (~> 3.0, >= 3.0.1)
20
- rdoc (3.12.2)
21
- json (~> 1.4)
22
-
23
- PLATFORMS
24
- ruby
25
-
26
- DEPENDENCIES
27
- bcrypt_pbkdf!
28
- minitest (>= 5)
29
- rake-compiler (~> 0.9.7)
30
- rake-compiler-dock (~> 0.5.0)
31
- rbnacl (~> 3.3)
32
- rbnacl-libsodium (~> 1.0.8)
33
- rdoc (~> 3.12)
34
-
35
- BUNDLED WITH
36
- 1.11.2
Binary file
Binary file