Module: RbNaCl::Sodium

Overview

Provides helpers for defining the libsodium bindings

Defined Under Namespace

Modules: Version

Instance Method Summary collapse

Instance Method Details

#primitiveObject



23
24
25
# File 'lib/rbnacl/sodium.rb', line 23

def primitive
  sodium_primitive
end

#sodium_constant(constant, name = constant) ⇒ Object



27
28
29
30
31
# File 'lib/rbnacl/sodium.rb', line 27

def sodium_constant(constant, name=constant)
  fn = "crypto_#{sodium_type}_#{sodium_primitive}_#{constant.to_s.downcase}"
  attach_function fn, [], :ulong_long
  self.const_set(name, self.public_send(fn))
end

#sodium_function(name, function, arguments) ⇒ Object



33
34
35
36
37
38
39
40
41
# File 'lib/rbnacl/sodium.rb', line 33

def sodium_function(name, function, arguments)
  self.module_eval <<-eos, __FILE__, __LINE__ + 1
  attach_function #{function.inspect}, #{arguments.inspect}, :int
  def self.#{name}(*args)
    ret = #{function}(*args)
    ret == 0
  end
  eos
end

#sodium_primitive(primitive = nil) ⇒ Object



18
19
20
21
# File 'lib/rbnacl/sodium.rb', line 18

def sodium_primitive(primitive = nil)
  return @primitive if primitive.nil?
  @primitive = primitive
end

#sodium_type(type = nil) ⇒ Object



13
14
15
16
# File 'lib/rbnacl/sodium.rb', line 13

def sodium_type(type = nil)
  return @type if type.nil?
  @type = type
end