@@ -9524,49 +9524,29 @@ module OpenSSL
95249524 # of both is present, a TimestampError will be raised when trying to create a
95259525 # Response.
95269526 #
9527- # call-seq:
9528- # factory.default_policy_id = "string" -> string
9529- # factory.default_policy_id -> string or nil
9530- #
95319527 # ### serial_number
95329528 #
95339529 # Sets or retrieves the serial number to be used for timestamp creation. Must be
95349530 # present for timestamp creation.
95359531 #
9536- # call-seq:
9537- # factory.serial_number = number -> number
9538- # factory.serial_number -> number or nil
9539- #
95409532 # ### gen_time
95419533 #
95429534 # Sets or retrieves the Time value to be used in the Response. Must be present
95439535 # for timestamp creation.
95449536 #
9545- # call-seq:
9546- # factory.gen_time = Time -> Time
9547- # factory.gen_time -> Time or nil
9548- #
95499537 # ### additional_certs
95509538 #
95519539 # Sets or retrieves additional certificates apart from the timestamp certificate
95529540 # (e.g. intermediate certificates) to be added to the Response. Must be an Array
95539541 # of OpenSSL::X509::Certificate.
95549542 #
9555- # call-seq:
9556- # factory.additional_certs = [cert1, cert2] -> [ cert1, cert2 ]
9557- # factory.additional_certs -> array or nil
9558- #
95599543 # ### allowed_digests
95609544 #
95619545 # Sets or retrieves the digest algorithms that the factory is allowed create
95629546 # timestamps for. Known vulnerable or weak algorithms should not be allowed
95639547 # where possible. Must be an Array of String or OpenSSL::Digest subclass
95649548 # instances.
95659549 #
9566- # call-seq:
9567- # factory.allowed_digests = ["sha1", OpenSSL::Digest.new('SHA256').new] -> [ "sha1", OpenSSL::Digest) ]
9568- # factory.allowed_digests -> array or nil
9569- #
95709550 class Factory
95719551 def additional_certs : () -> Array[X509::Certificate]?
95729552
0 commit comments