ScMinidriver Rust Reference Documentation

ScMinidriver

Current Version: 11.6.1

Chilkat.ScMinidriver

Access smart-card certificates, key containers, PINs, files, and on-card signing.

Chilkat.ScMinidriver is a smart-card integration class for applications that need card minidriver access to certificates, key containers, PIN authentication, card files, and on-card signing. It can retrieve and link smart-card certificates for use in other Chilkat signing classes, generate or import RSA and ECC keys, sign data directly, inspect card and container state, and manage selected card files and certificates.

Connect through minidriver

Use the Windows smart-card minidriver layer to access card capabilities without working directly at the APDU level.

Certificates and containers

Enumerate and inspect smart-card certificates, key containers, container indexes, key types, and related card state.

PIN authentication

Authenticate to the card with the required PIN before accessing protected private-key operations or card objects.

On-card signing

Sign data using private keys that remain on the smart card, including workflows where the private key is non-exportable.

Key generation and import

Generate or import RSA and ECC keys into supported card containers when the card policy allows it.

Use with Chilkat signing

Link a smart-card certificate to other Chilkat classes so PDF, XML, CMS/PKCS7, S/MIME, or other signing operations can use the card-backed private key.

Common pattern: Connect to the smart card, verify the card and container state, authenticate with the PIN, locate the certificate and private-key container, then either sign directly or link the certificate for use by another Chilkat signing class. Use ScMinidriver for Windows card-minidriver certificate and key-container operations; use Chilkat.SCard for direct PC/SC APDU-level work, and Chilkat.Pkcs11 for PKCS#11 token or HSM sessions.

Object Creation

// Cargo.toml:
//     [dependencies]
//     chilkat = "11.6"

use chilkat::ScMinidriver;

// Once per process, before any other Chilkat call:
chilkat::unlock_bundle("Anything for 30-day trial")?;  // shorthand for Global::new().unlock_bundle(..)

let sc_minidriver = ScMinidriver::new();
// ... the native object is freed when `sc_minidriver` goes out of scope.
pub fn new() -> ScMinidriver

Creates the underlying native Chilkat object (ScMinidriver also implements Default). Every method takes &self, so the object never needs to be declared mut. A ScMinidriver is Send but not Sync: it may be moved to another thread, but a reference to it cannot be shared between threads at the same time.

impl Drop for ScMinidriver

The native object is freed when the ScMinidriver is dropped — when it goes out of scope, or explicitly with drop(sc_minidriver). There is no Dispose method to call.

Errors

Methods that can fail return chilkat::Result<T>, which is Result<T, chilkat::Error>: a method whose only outcome is success or failure returns Result<()>, a method producing a string or an object returns Result<String> or Result<ScMinidriver>. The error carries the object's LastErrorText at the time of the failure (Error::last_error_text), the class and method names, and implements std::error::Error, so ? works in any function returning chilkat::Result or a Box<dyn Error>. Properties never fail, and methods that answer a question (has_..., is_..., ...) return a plain bool.

match sc_minidriver.some_method(...) {
    Ok(value) => println!("{value:?}"),
    Err(e) => eprintln!("{}", e.last_error_text()),
}

Properties

Atr
// read-only
pub fn atr(&self) -> String
Introduced in version 9.5.0.87

The ATR of the card in the reader. This property is set by the AquireContext method.

top
CardName
// read-only
pub fn card_name(&self) -> String
Introduced in version 9.5.0.87

The name of the card in the reader. This property is set by the AquireContext method.

top
DebugLogFilePath
// read/write
pub fn debug_log_file_path(&self) -> String
pub fn set_debug_log_file_path(&self, value: &str)

If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.

Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.

Possible causes of hangs include:

  • A timeout property set to 0, indicating an infinite timeout.
  • A hang occurring within an event callback in the application code.
  • An internal bug in the Chilkat code causing the hang.

More Information and Examples
top
LastErrorHtml
// read-only
pub fn last_error_html(&self) -> String

Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorText
// read-only
pub fn last_error_text(&self) -> String

Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorXml
// read-only
pub fn last_error_xml(&self) -> String

Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastMethodSuccess
// read/write
pub fn last_method_success(&self) -> bool
pub fn set_last_method_success(&self, value: bool)

Indicates the success or failure of the most recent method call: true means success, false means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages. Note: This property does not apply to methods that return integer values or to boolean-returning methods where the boolean does not indicate success or failure.

top
MaxContainers
// read-only
pub fn max_containers(&self) -> i32
Introduced in version 9.5.0.87

The maximum number of key containers available. The 1st key container is at index 0. Each key container can potentially contain one signature key, and one key exchange key.

top
RsaPaddingHash
// read/write
pub fn rsa_padding_hash(&self) -> String
pub fn set_rsa_padding_hash(&self, value: &str)
Introduced in version 9.5.0.87

If an RSA key is used for signing, this is the hash algorithm to used in conjunction with the padding scheme. It can be SHA1, SHA256, SHA384, or SHA512. The default is SHA256.

top
RsaPaddingScheme
// read/write
pub fn rsa_padding_scheme(&self) -> String
pub fn set_rsa_padding_scheme(&self, value: &str)
Introduced in version 9.5.0.87

If an RSA key is used for signing, this is the padding scheme to use. It can be PKCS or PSS. The default is PSS.

top
UncommonOptions
// read/write
pub fn uncommon_options(&self) -> String
pub fn set_uncommon_options(&self, value: &str)
Introduced in version 9.5.0.87

This is a catch-all property to be used for uncommon needs. This property defaults to the empty string and should typically remain empty.

top
VerboseLogging
// read/write
pub fn verbose_logging(&self) -> bool
pub fn set_verbose_logging(&self, value: bool)

If set to true, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is false. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
// read-only
pub fn version(&self) -> String

Version of the component/library, such as "10.1.0"

More Information and Examples
top

Methods

AcquireContext
pub fn acquire_context(&self, reader_name: &str) -> Result<()>
Introduced in version 9.5.0.87

Initializes communication with the card inserted in the given reader. Reader names can be discovered via the SCard.ListReaders or SCard.FindSmartcards methods. If successful, the Atr and CardName properties will be set.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
CardDeleteFile
pub fn card_delete_file(&self, dir_name: &str, file_name: &str) -> Result<()>
Introduced in version 9.5.0.88

Deletes the file specified by dir_name and file_name. dir_name is the name of the directory that contains the file, or the empty string for root.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
DeleteCert
pub fn delete_cert(&self, cert: &Cert, del_priv_key: bool) -> Result<()>
Introduced in version 9.5.0.88

Deletes a certificate and optionally its associated private key from the smart card. If del_priv_key is true, then the associated private key, if it exists, is also deleted.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
DeleteContext
pub fn delete_context(&self) -> Result<()>
Introduced in version 9.5.0.87

This function reverses the effect of AcquireContext and severs the communication between the Base CSP/KSP and the card minidriver. The Atr and CardName properties are cleared.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
DeleteKeyContainer
pub fn delete_key_container(&self, container_index: i32) -> Result<()>
Introduced in version 9.5.0.87

Deletes the key container at the given container_index. This deletes both the signature and key exchange keys that may be contained in the specified key container.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

More Information and Examples
top
EnumFiles
pub fn enum_files(&self, dir_name: &str, st: &StringTable) -> Result<()>
Introduced in version 9.5.0.87

Get the list of files in the directory specified by dir_name. Pass the empty string for the root directory. The filenames are returned in st.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
FindCert
pub fn find_cert(&self, cert_part: &str, part_value: &str, cert: &Cert) -> Result<()>
Introduced in version 9.5.0.87

Finds the certificate where the given cert_part equals the part_value. Possible values for cert_part are: subjectDN, subjectDN_withTags, subjectCN, serial, or serial:issuerCN.

The cert is loaded with the certificate if successful.

Note: If successful, the cert will be linked internally with this ScMinidriver session such that certificate can be used for signing on the smart card when used in other Chilkat classes such as XmlDSigGen, Pdf, Crypt2, Mime, MailMan, etc.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
GenerateKey
pub fn generate_key(&self, container_index: i32, key_spec: &str, key_type: &str, key_size: i32, pin_id: &str) -> Result<()>
Introduced in version 9.5.0.87

Generates a key to be stored in either the signature or key exchange location within a key container. Creates the key container if it does not already exist. Otherwise replaces the key in the key container.

The key_spec can be sig or kex to specify either the signature or key exchange location.

The key_type can be ecc or rsa.

For RSA keys, the key_size is the size of the key in bits, such as 1024, 2048, 4096, etc. (2048 is a typical value.) For ECC keys, the size can be 256, 384, or 521.

The pin_id can be user, or 3 through 7. (It is typically user.)

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
GetCardProperties
pub fn get_card_properties(&self, json: &JsonObject) -> Result<()>
Introduced in version 9.5.0.87

Gets all card properties and returns them in json. See the example below.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

More Information and Examples
top
GetCert
pub fn get_cert(&self, container_index: i32, key_spec: &str, cert: &Cert) -> Result<()>
Introduced in version 9.5.0.87

Get the certificate at the specified container_index and key_spec. The key_spec can be sig or kex to specify either the signature or key exchange location within the container. The container_index can be -1 to choose the first key container with a certificate. The key_spec can also be any to choose either sig or kex based on which is present, with preference given to sig if both are present.

The cert is loaded with the certificate if successful.

Note: If successful, the cert will be linked internally with this ScMinidriver session such that certificate can be used for signing on the smart card when used in other Chilkat classes such as XmlDSigGen, Pdf, Crypt2, Mime, MailMan, etc.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
GetContainerKeys
pub fn get_container_keys(&self, container_index: i32, sig_key: &PublicKey, kex_key: &PublicKey) -> Result<()>
Introduced in version 9.5.0.87

Queries a key container to get the keys that are present. If the signature public key is present, it is returned in sig_key. If the key exchange key is present, it is returned in kex_key.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
GetCspContainerMap
pub fn get_csp_container_map(&self, json: &JsonObject) -> Result<()>
Introduced in version 9.5.0.87

Returns the contents of the CSP container map file (cmapfile). The information is returned in the json. This gives an overview of what key containers and certificates exist in the smart card from a CSP's point of view. See the example linked below.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
ImportCert
pub fn import_cert(&self, cert: &Cert, container_index: i32, key_spec: &str, pin_id: &str) -> Result<()>
Introduced in version 9.5.0.87

Imports a certificate with its private key onto the smart card. The cert must have an accessible private key, such as will be the case if the cert was loaded from a .pfx/.p12, or if the cert was loaded from a Windows certificate store where the private key exists (and can be exported from the Windows certificate store).

The container_index is the container index. It can range from 0 to the MaxContainers-1.

The key_spec can be sig or kex to specify either the signature or key exchange location within the container.

The pin_id can be user, or 3 through 7. (It is typically user.)

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
ImportKey
pub fn import_key(&self, container_index: i32, key_spec: &str, priv_key: &PrivateKey, pin_id: &str) -> Result<()>
Introduced in version 9.5.0.87

Imports a key to be stored in either the signature or key exchange location within a key container. Creates the key container if it does not already exist. Otherwise replaces the specified key in the key container.

The key_spec can be sig or kex to specify either the signature or key exchange location.

The priv_key is the private key to import.

The ARG5 can be user, or 3 through 7. (It is typically user.)

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
ListCerts
pub fn list_certs(&self, cert_part: &str, st: &StringTable) -> Result<()>
Introduced in version 9.5.0.87

Lists the certs found on the smart card. The cert_part indicates the information to be returned from each certificate. Possible values are: subjectDN, subjectDN_withTags, subjectCN, serial, or serial:issuerCN. The information is returned in st.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
PinAuthenticate
pub fn pin_authenticate(&self, pin_id: &str, pin: &str) -> i32
Introduced in version 9.5.0.87

Performs regular PIN authentication. The pin_id can be user, admin, or 3 through 7. (It is typically user.) The pin is the alphanumeric PIN.

Returns 0 for success. If not successful, the return value indicates the number of attempts remaining before the PIN is locked. (The number of times an incorrect PIN may be presented to the card before the PIN is blocked, and requires the admin to unblock it.) If the PIN is already blocked, the return value is -1. If the method fails for some other reason, such as if a context has not yet been acquired, the return value is -2.

top
PinAuthenticateHex
pub fn pin_authenticate_hex(&self, pin_id: &str, pin: &str) -> i32
Introduced in version 9.5.0.87

The same as PinAutheneticate, but the PIN is passed as a hex string. For example, to pass a PIN of 0x01, 0x02, 0x03, 0x04, pass 01020304.

top
PinChange
pub fn pin_change(&self, pin_id: &str, current_pin: &str, new_pin: &str) -> i32
Introduced in version 9.5.0.87

Changes a PIN. The pin_id can be user, admin, or 3 through 7. (It is typically user.) The current_pin is the current alphanumeric PIN. The new_pin is the new PIN.

Returns 0 for success. If not successful, the return value indicates the number of attempts remaining before the PIN is locked. (The number of times an incorrect PIN may be presented to the card before the PIN is blocked, and requires the admin to unblock it.) If the PIN is already blocked, the return value is -1. If the method fails for some other reason, such as if a context has not yet been acquired, the return value is -2.

top
PinDeauthenticate
pub fn pin_deauthenticate(&self, pin_id: &str) -> Result<()>
Introduced in version 9.5.0.87

Reverses a previous PIN authentication without resetting the card. The pin_id can be user, admin, or 3 through 7. (It is typically user.)

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
ReadFile
pub fn read_file(&self, dir_name: &str, file_name: &str, bd: &BinData) -> Result<()>
Introduced in version 9.5.0.87

Reads the entire file specified by dir_name and file_name into bd. dir_name is the name of the directory that contains the file, or the empty string for root.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
SignData
pub fn sign_data(&self, container_index: i32, key_spec: &str, hash_data_alg: &str, bd_data: &BinData, bd_signed_data: &BinData) -> Result<()>
Introduced in version 9.5.0.87

Signs the data passed in bd_data. The hash_data_alg can be sha1, sha256, sha384, sha512, or none. If not equal to none, then the hash of the data passed in bd_data is signed.

The container_index specifies the key container. By specifying the key container, you are almost specifying the key. A key container can contain two keys: A signature key, and a key-exchange key. The key_spec indicates which of these two keys to use. key_spec should be set to sig or kex.

Note: The type of signature created, such as RSA or ECC, is determined by the type of key that exists in the key container (specified by container_index and key_spec). If it is an RSA key, additional options can be specified via the RsaPaddingScheme and RsaPaddingHash properties.

If successful, the signature is written to bd_signed_data.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
WriteFile
pub fn write_file(&self, dir_name: &str, file_name: &str, bd: &BinData) -> Result<()>
Introduced in version 9.5.0.87

Writes the entire file specified by dir_name and file_name. dir_name is the name of the directory that contains the file, or the empty string for root. The entire contents of bd are written to the file on the smart card.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top