Sample code for 30+ languages & platforms
Ruby

Transition from Cert.ExportPublicKey to Cert.GetPublicKey

Provides instructions for replacing deprecated ExportPublicKey method calls with GetPublicKey.

Chilkat Ruby Downloads

Ruby
require 'chilkat'

success = false

cert = Chilkat::CkCert.new()

# ------------------------------------------------------------------------
# The ExportPublicKey method is deprecated:

# publickeyObj is a CkPublicKey
publickeyObj = cert.ExportPublicKey()
if (cert.get_LastMethodSuccess() == false)
    print cert.lastErrorText() + "\n";
    exit
end

# ...
# ...

# ------------------------------------------------------------------------
# Do the equivalent using GetPublicKey.
# Your application creates a new, empty PublicKey object which is passed 
# in the last argument and filled upon success.

publickeyOut = Chilkat::CkPublicKey.new()
success = cert.GetPublicKey(publickeyOut)
if (success == false)
    print cert.lastErrorText() + "\n";
    exit
end