Method: Aws::IoT::Types::CustomCodeSigning#hash_algorithm

Defined in:
lib/aws-sdk-iot/types.rb

#hash_algorithmString

The hash algorithm used to code sign the file. You can use a string as the algorithm name if the target over-the-air (OTA) update devices are able to verify the signature that was generated using the same signature algorithm. For example, FreeRTOS uses ‘SHA256` or `SHA1`, so you can pass either of them based on which was used for generating the signature.

Returns:

  • (String)


4382
4383
4384
4385
4386
4387
4388
4389
# File 'lib/aws-sdk-iot/types.rb', line 4382

class CustomCodeSigning < Struct.new(
  :signature,
  :certificate_chain,
  :hash_algorithm,
  :signature_algorithm)
  SENSITIVE = []
  include Aws::Structure
end