class AlipayGlobal::Sign::DSA

Public Class Methods

sign(string, private_key) click to toggle source
# File lib/alipay_global/sign/dsa.rb, line 4
def self.sign(string, private_key)
  raise NotImplementedError, 'DSA is not implemented'
end
verify?(string, sign) click to toggle source
# File lib/alipay_global/sign/dsa.rb, line 8
def self.verify?(string, sign)
  raise NotImplementedError, 'DSA is not implemented'
end