Package org.bouncycastle.crypto.params
Class SkeinParameters.Builder
- java.lang.Object
 - 
- org.bouncycastle.crypto.params.SkeinParameters.Builder
 
 
- 
- Enclosing class:
 - SkeinParameters
 
public static class SkeinParameters.Builder extends java.lang.ObjectA builder forSkeinParameters. 
- 
- 
Constructor Summary
Constructors Constructor Description Builder()Builder(java.util.Hashtable paramsMap)Builder(SkeinParameters params) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SkeinParametersbuild()Constructs a newSkeinParametersinstance with the parameters provided to this builder.SkeinParameters.Builderset(int type, byte[] value)Sets a parameters to apply to the Skein hash function.
Parameter types must be in the range 0,5..62, and cannot use the valueSkeinParameters.PARAM_TYPE_MESSAGE(reserved for message body).SkeinParameters.BuildersetKey(byte[] key)Sets theSkeinParameters.PARAM_TYPE_KEYparameter.SkeinParameters.BuildersetKeyIdentifier(byte[] keyIdentifier)Sets theSkeinParameters.PARAM_TYPE_KEY_IDENTIFIERparameter.SkeinParameters.BuildersetNonce(byte[] nonce)Sets theSkeinParameters.PARAM_TYPE_NONCEparameter.SkeinParameters.BuildersetPersonalisation(byte[] personalisation)Sets theSkeinParameters.PARAM_TYPE_PERSONALISATIONparameter.SkeinParameters.BuildersetPersonalisation(java.util.Date date, java.lang.String emailAddress, java.lang.String distinguisher)Implements the recommended personalisation format for Skein defined in Section 4.11 of the Skein 1.3 specification.SkeinParameters.BuildersetPersonalisation(java.util.Date date, java.util.Locale dateLocale, java.lang.String emailAddress, java.lang.String distinguisher)Implements the recommended personalisation format for Skein defined in Section 4.11 of the Skein 1.3 specification.SkeinParameters.BuildersetPublicKey(byte[] publicKey)Sets theSkeinParameters.PARAM_TYPE_KEY_IDENTIFIERparameter. 
 - 
 
- 
- 
Constructor Detail
- 
Builder
public Builder()
 
- 
Builder
public Builder(java.util.Hashtable paramsMap)
 
- 
Builder
public Builder(SkeinParameters params)
 
 - 
 
- 
Method Detail
- 
set
public SkeinParameters.Builder set(int type, byte[] value)
Sets a parameters to apply to the Skein hash function.
Parameter types must be in the range 0,5..62, and cannot use the valueSkeinParameters.PARAM_TYPE_MESSAGE(reserved for message body).Parameters with type <
SkeinParameters.PARAM_TYPE_MESSAGEare processed before the message content, parameters with type >SkeinParameters.PARAM_TYPE_MESSAGEare processed after the message and prior to output.- Parameters:
 type- the type of the parameter, in the range 5..62.value- the byte sequence of the parameter.- Returns:
 - the current builder instance.
 
 
- 
setKey
public SkeinParameters.Builder setKey(byte[] key)
Sets theSkeinParameters.PARAM_TYPE_KEYparameter. 
- 
setPersonalisation
public SkeinParameters.Builder setPersonalisation(byte[] personalisation)
Sets theSkeinParameters.PARAM_TYPE_PERSONALISATIONparameter. 
- 
setPersonalisation
public SkeinParameters.Builder setPersonalisation(java.util.Date date, java.lang.String emailAddress, java.lang.String distinguisher)
Implements the recommended personalisation format for Skein defined in Section 4.11 of the Skein 1.3 specification.The format is
YYYYMMDD email@address distinguisher, encoded to a byte sequence using UTF-8 encoding.- Parameters:
 date- the date the personalised application of the Skein was defined.emailAddress- the email address of the creation of the personalised application.distinguisher- an arbitrary personalisation string distinguishing the application.- Returns:
 - the current builder.
 
 
- 
setPersonalisation
public SkeinParameters.Builder setPersonalisation(java.util.Date date, java.util.Locale dateLocale, java.lang.String emailAddress, java.lang.String distinguisher)
Implements the recommended personalisation format for Skein defined in Section 4.11 of the Skein 1.3 specification. You may need to use this method if the default locale doesn't use a Gregorian calender so that the GeneralizedTime produced is compatible implementations.The format is
YYYYMMDD email@address distinguisher, encoded to a byte sequence using UTF-8 encoding.- Parameters:
 date- the date the personalised application of the Skein was defined.dateLocale- locale to be used for date interpretation.emailAddress- the email address of the creation of the personalised application.distinguisher- an arbitrary personalisation string distinguishing the application.- Returns:
 - the current builder.
 
 
- 
setPublicKey
public SkeinParameters.Builder setPublicKey(byte[] publicKey)
Sets theSkeinParameters.PARAM_TYPE_KEY_IDENTIFIERparameter. 
- 
setKeyIdentifier
public SkeinParameters.Builder setKeyIdentifier(byte[] keyIdentifier)
Sets theSkeinParameters.PARAM_TYPE_KEY_IDENTIFIERparameter. 
- 
setNonce
public SkeinParameters.Builder setNonce(byte[] nonce)
Sets theSkeinParameters.PARAM_TYPE_NONCEparameter. 
- 
build
public SkeinParameters build()
Constructs a newSkeinParametersinstance with the parameters provided to this builder. 
 - 
 
 -