Module java4ever.binding
Package tech.deplant.java4ever.binding
Record Class Crypto.ParamsOfGetSigningBoxFromCryptoBox
java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Crypto.ParamsOfGetSigningBoxFromCryptoBox
- Record Components:
handle- Crypto Box Handle.hdpath- By default, Everscale HD path is used. HD key derivation path.secretLifetime- Store derived secret for this lifetime (in ms). The timer starts after each signing box operation. Secrets will be deleted immediately after each signing box operation, if this value is not set.
- Enclosing class:
Crypto
-
Constructor Summary
ConstructorsConstructorDescriptionParamsOfGetSigningBoxFromCryptoBox(Integer handle, String hdpath, Integer secretLifetime) Creates an instance of aParamsOfGetSigningBoxFromCryptoBoxrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.handle()Returns the value of thehandlerecord component.final inthashCode()Returns a hash code value for this object.hdpath()Returns the value of thehdpathrecord component.Returns the value of thesecretLifetimerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ParamsOfGetSigningBoxFromCryptoBox
Creates an instance of aParamsOfGetSigningBoxFromCryptoBoxrecord class.- Parameters:
handle- the value for thehandlerecord componenthdpath- the value for thehdpathrecord componentsecretLifetime- the value for thesecretLifetimerecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
handle
Returns the value of thehandlerecord component.- Returns:
- the value of the
handlerecord component
-
hdpath
Returns the value of thehdpathrecord component.- Returns:
- the value of the
hdpathrecord component
-
secretLifetime
Returns the value of thesecretLifetimerecord component.- Returns:
- the value of the
secretLifetimerecord component
-