class Alipay::Sign::DSA

Public Class Methods

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