naoki 1.0.7 → 1.0.8

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.
@@ -5,11 +5,18 @@ ICAPI_LIB_FILE = File.join(File.expand_path(__FILE__), '../libICAPI.so')
5
5
  unless File.exists? ICAPI_LIB_FILE
6
6
 
7
7
  module DataSecureWrapper
8
- def self.configure(*args); end
9
- def self.open(*args); end
10
- def self.encrypt(*args); end
11
- def self.decrypt(*args); end
12
- def self.close(*args); end
8
+ def self.configure(*args)
9
+ end
10
+ def self.open(*args)
11
+ end
12
+ def self.encrypt(*args)
13
+ "encrypted_string"
14
+ end
15
+ def self.decrypt(*args)
16
+ "decrypted_string"
17
+ end
18
+ def self.close(*args)
19
+ end
13
20
  end
14
21
 
15
22
  else
data/naoki.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  SPEC = Gem::Specification.new do |s|
2
2
  s.name = "naoki"
3
- s.version = "1.0.7"
3
+ s.version = "1.0.8"
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.homepage = ""
6
6
  s.summary = "C bindings for SafeNet DataSecure ICAPI"
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 7
9
- version: 1.0.7
8
+ - 8
9
+ version: 1.0.8
10
10
  platform: ruby
11
11
  authors:
12
12
  - Chris Apolzon