Tcl
Tcl
Duplicate openssl rsautl -verify -inkey pubKey.pem -pubin -in rsautl.sig -out originalFile.dat
See more OpenSSL Examples
Demonstrates how to duplicate this OpenSSL command:openssl rsautl -verify -inkey pubKey.pem -pubin -in rsautl.sig -out originalFile.datThe signature file contains the contents of the original data, and the original data is output to "originalFile.dat".
The openssl rsautl command signs the data directly, and therefore the maximum amount of data that can signed is very small. (To sign any amount of data, use openssl dgst -sign.) The maximum amount of data that can be signed (with rsautl) is the key size minus the overhead for the padding. The overhead size depends on the padding. With OAEP padding, the overhead is 42 bytes. With the default PKCSv1.5 padding, the overhead is 11 bytes.
Given a 2048-bit RSA key (256 bytes) and using PKCSv1.5 padding, the max data size that can be signed is 256 - 11 = 245 bytes.
Chilkat Tcl Downloads
load ./chilkat.dll
set success 0
# This example requires the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
set pubKey [new_CkPublicKey]
# Load the public key from an PEM file:
set success [CkPublicKey_LoadFromFile $pubKey "pubKey.pem"]
if {$success == 0} then {
puts [CkPublicKey_lastErrorText $pubKey]
delete_CkPublicKey $pubKey
exit
}
# Load the signature.
set bd [new_CkBinData]
set success [CkBinData_LoadFile $bd "rsautl.sig"]
set rsa [new_CkRsa]
# Import the public key into the RSA component:
set success [CkRsa_UsePublicKey $rsa $pubKey]
if {$success == 0} then {
puts [CkRsa_lastErrorText $rsa]
delete_CkPublicKey $pubKey
delete_CkBinData $bd
delete_CkRsa $rsa
exit
}
# OpenSSL uses big-endian.
CkRsa_put_LittleEndian $rsa 0
# If the signature is verified, then the signature contents of bd
# are replaced with the extracted original data.
set success [CkRsa_VerifyRawBd $rsa $bd]
if {$success != 1} then {
puts [CkRsa_lastErrorText $rsa]
puts "The signature was invalid."
delete_CkPublicKey $pubKey
delete_CkBinData $bd
delete_CkRsa $rsa
exit
}
puts "The signature was verified."
# Save the original data that was extracted from the signature:
set success [CkBinData_WriteFile $bd "originalFile.dat"]
if {$success != 1} then {
puts "Failed to save extracted data."
delete_CkPublicKey $pubKey
delete_CkBinData $bd
delete_CkRsa $rsa
exit
}
delete_CkPublicKey $pubKey
delete_CkBinData $bd
delete_CkRsa $rsa