module Crypto

Public Instance Methods

auth(*args) click to toggle source
# File lib/crypto/auth.rb, line 52
def auth(*args)
  Auth.auth(*args)
end
box(*args) click to toggle source
# File lib/crypto/box.rb, line 258
def box(*args)
  Box.box(*args)
end
box!(*args) click to toggle source
# File lib/crypto/box.rb, line 262
def box!(*args)
  Box.box!(*args)
end
generichash(*args) click to toggle source
# File lib/crypto/generic_hash.rb, line 100
def generichash(*args)
  GenericHash.generichash(*args)
end
onetimeauth(*args) click to toggle source
# File lib/crypto/one_time_auth.rb, line 83
def onetimeauth(*args)
  OneTimeAuth.onetimeauth(*args)
end
scalarmut(*args) click to toggle source
# File lib/crypto/scalar_mult.rb, line 56
def scalarmut(*args)
  ScalarMult.scalarmut(*args)
end
secretbox(*args) click to toggle source
# File lib/crypto/secret_box.rb, line 183
def secretbox(*args)
  SecretBox.secretbox(*args)
end
secretbox!(*args) click to toggle source
# File lib/crypto/secret_box.rb, line 187
def secretbox!(*args)
  SecretBox.secretbox!(*args)
end
shorthash(*args) click to toggle source
# File lib/crypto/short_hash.rb, line 41
def shorthash(*args)
  ShortHash.shorthash(*args)
end
sign(*args) click to toggle source
# File lib/crypto/sign.rb, line 133
def sign(*args)
  Sign.sign(*args)
end