SkeinParametersBuilderSetPersonalisation(DateTime, String, String) Method

Implements the recommended personalisation format for Skein defined in Section 4.11 of the Skein 1.3 specification.

Definition

Namespace: Org.BouncyCastle.Crypto.Parameters
Assembly: BouncyCastle.Cryptography (in BouncyCastle.Cryptography.dll) Version: 2.3.0-beta.187+d6da5648ae
public SkeinParametersBuilder SetPersonalisation(
	DateTime date,
	string emailAddress,
	string distinguisher
)

Parameters

date  DateTime
the date the personalised application of the Skein was defined.
emailAddress  String
the email address of the creation of the personalised application.
distinguisher  String
an arbitrary personalisation string distinguishing the application.

Return Value

SkeinParametersBuilder

Remarks

The format is
C#
YYYYMMDD email@address distinguisher
, encoded to a byte sequence using UTF-8 encoding.

See Also