Sha256: 188086d5028f5412922299bad97c80b64efb083fe3cca2b4b766645a9f4bfd2f
Contents?: true
Size: 301 Bytes
Versions: 2
Compression:
Stored size: 301 Bytes
Contents
module Alipay module Sign class DSA def self.sign(key, string) raise NotImplementedError, '[Alipay] DSA sign is not implemented' end def self.verify?(string, sign) raise NotImplementedError, '[Alipay] DSA verify is not implemented' end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
alipay-0.6.0.beta3 | lib/alipay/sign/dsa.rb |
alipay-0.6.0.beta2 | lib/alipay/sign/dsa.rb |