Sign Method

Signs a message using a key.

Syntax

public func sign(keyName: String, versionId: String, algorithm: String, isDigest: Bool) throws -> Void

Remarks

This method signs a message using the asymmetric key version specified by KeyName and VersionId.

The message data to sign is taken from the the specified InputFile or the InputData property. The signature data is output to the the specified OutputFile or the OutputData property.

The Algorithm parameter specifies the hash algorithm used to generate a message digest; this must be the same algorithm that appears in the key version's Algorithm string. The value passed must contain one of the following strings (passing the key version's complete algorithm string is acceptable):

  • SHA256
  • SHA384
  • SHA512

The IsDigest parameter specifies whether the message data is the original message () or a message digest (). When supplying a message digest, keep in mind that the same digest will need to be provided in order to Verify the signature later.

If IsDigest is , the class will automatically compute an appropriate message digest before the request is made. In such cases, the computed digest is made available via the MessageDigest configuration setting.

Copyright (c) 2022 /n software inc. - All rights reserved.
Cloud Keys 2020 macOS Edition - Version 20.0 [Build 8157]