The OPC UA Secure Conversation (UASC) mechanism described 6.7is designed for use with asymmetric cryptography algorithms, such as RSA, that allow Public Keysto be used for encryption and for digital signatures. ECC is an asymmetric cryptography algorithm that only supports digital signatures. To accommodate algorithms like ECC, the UASC handshake needs to be modified to allow negotiation of inputs used for key derivation in 6.7.5without making the keys available to eavesdroppers. This negotiation uses a Diffie Hellman algorithm defined in RFC 8422and is shown in Figure 13.
Figure 13– ECC Key Negotiation
ApplicationInstance Certificates for ECC have a public-private key pair that are used to create and verify a digital signature. To negotiate the keys needed for the SecureChannelthe Clientgenerates a new key pair (JC, KC) and passes the Public Key(JC) in the request. After verifying the signature on the request, the Servergenerates a new key pair (JS, KS) and returns the Public Key(JS) in the response. The new key pairs are used each time a SecureChannelis negotiated and they are called EphemeralKeys.
ECC public-private key pairs are always based on a specific elliptic curve function which is used for the ECC calculations. Many curves exist, however, ECC cryptography libraries support a finite set of “named curves” to allow for better interoperability. Each OPC UA SecurityPolicydefined in OPC 10000-7specifies exactly one named curve which is used for the EphemeralKeys.
Each ECC ApplicationInstance Certificateis also based on a named curve. Each SecurityPolicyspecifies a list of named curves which are permitted for use in the ApplicationInstance Certificate. This list always includes the named curved used for the EphemeralKey, however, it may allow other named curves. OPC UA applications that support ECC SecurityPolicies will need to support multiple ApplicationInstance Certificates.
ECC Public Keysand digital signatures are the output of an ECC operation. The encoding of these outputs depends on the ECC curve and are described by the SecurityPolicyin OPC 10000-7.
Clause 6.7.4 specifies the contents of the OpenSecureChannelrequest and response messages. When using an ECC SecurityPolicythe ClientNonceis the Public Keyfor the Client’s EphemeralKeyencoded using the Public Key encoding for the curve. Similarly, the ServerNonceis the Public Keyfor the Server’s EphemeralKey.
The EphemeralKeysare used to calculate a shared secret by using the Private Keyof an EphemeralKeyand the Public Keyof the peer’s EphemeralKey. The exact algorithm to calculate the shared secret depends on the ECC curve and is defined by the SecurityPolicy. This shared secret is then used to derive key data using the following algorithm from RFC 5869. Note that the algorithm is repeated here for clarity, however, the RFC is the normative source.
Step 1: Calculate Salts
ServerSalt = L | UTF8(opcua-server) | ServerNonce | ClientNonce
ClientSalt = L | UTF8(opcua-client) | ClientNonce | ServerNonce
Where
- L is the length of derived key material needed encoded as a 16-bit little endian integer;
- UTF8(label) is the UTF8 encoding of the string literal ‘label’;
- ServerNonceis the Server EphemeralKeyfrom the OpenSecureChannelresponse;
- ClientNonceis the Client EphemeralKeyfrom the OpenSecureChannelrequest;
- | concatenates sequences of bytes;
- Salt is a sequence of bytes.
Step 2: Extract
PRK = HMAC-Hash(Salt, IKM)
Where
- HMAC uses a Hash function specified by the KeyDerivationAlgorithm;
- IKM is the x-coordinate of the shared secret;
- Salt is calculated in Step 1;
- PRK is a pseudorandom output with length equal to the Hash size.
Step 3: Expand
N = ceil(L/HashLen)
T = T(1) | T(2) | T(3) | ... | T(N)
OKM = first L octets of T
where:
T(0) = empty string (zero length)
T(1) = HMAC-Hash(PRK, T(0) | Info | 0x01)
T(2) = HMAC-Hash(PRK, T(1) | Info | 0x02)
T(3) = HMAC-Hash(PRK, T(2) | Info | 0x03)
...
Where
- HMAC uses a Hash function specified by the KeyDerivationAlgorithm;
- PRK is the output from Step 1;
- Info is a sequence of bytes;
- L is the length of keying material needed;
- 0x01 is the number 1 encoded as a byte.
- OKM is the output with length equal to L bytes.
The client keys are extracted from the keying material created with IKM=shared secret, Salt=ClientSaltand Info=ClientSaltas shown in Table 60.
Table 60– Deriving Client Keys from Keying Material
Name |
Offset |
Length |
ClientSigningKey |
0 |
DerivedSignatureKeyLength |
ClientEncryptingKey |
DerivedSignatureKeyLength |
EncryptionKeyLength |
ClientInitializationVector |
DerivedSignatureKeyLength + EncryptionKeyLength |
C – CounterLength |
The server keys are extracted from the keying material created with IKM=shared secret, Salt= ServerSaltand Info=ServerSaltas shown in Table 61.
Table 61– Deriving Server Keys from Keying Material
Name |
Offset |
Length |
ServerSigningKey |
0 |
DerivedSignatureKeyLength |
ServerEncryptingKey |
DerivedSignatureKeyLength |
EncryptionKeyLength |
ServerInitializationVector |
DerivedSignatureKeyLength + EncryptionKeyLength |
InitializationVectorLength – CounterLength |
The SymmetricEncryptionAlgorithm for the SecurityPolicysetsthe EncryptionKeyLengthand EncryptionBlockSize.
When using Authenticated Encryption, the SigningKeyand EncryptingKeyare always calculated, however, only one will be used. If the mode is SignAndEncryptthen the EncryptingKey is used. If the mode is Signthen the SigningKeyis used.
In addition, a unique InitializationVectoris needed for each Message. This value contructed from the ClientInitializationVectoror ServerInitializationVectorwhere the first 8 bytes are replaced by the values in Table 62encoded as described in 5.2.2.2.
Table 62– Creating a Mask for the Initialization Vector
Name |
Bytes |
Length |
TokenId |
4 |
The TokenIdspecified in the SecurityHeaderof MessageChunkbeing processed. It is encoded as a UInt32as described in 5.2.2.2. |
LastSequenceNumber |
4 |
The SequenceNumberspecified in the SequenceHeaderof last MessageChunk sent in the same direction on the SecureChannel. This number is 0 for the first message. It is encoded as a UInt32as described in 5.2.2.2. |
The ClientInitializationVectoris used when the Clientencrypts or signs and the ServerInitializationVector is used when the Serverencrypts or signs.
The LastSequenceNumberis the SequenceNumberfrom the previously sent Messagewhich normally requires the previous Messageto be decrypted. If the receiver processes incoming Messagesin parallel it can calculate the expected SequenceNumberbased on the order in which the encrypted Messagesare received.
When using Signmode it is necessary to have a SigningKeythat is unique and unpredictable for each message. The transformation defined for the InitializationVectoris applied to the ClientSigningKey(when the Clientsigns) or the ServerSigningKey(when the Serversigns). After applying the transformation, a hash is computed using the Hash function specified by the KeyDerivationAlgorithm. If the hash length is greater than or equal to the SigningKey length then the first SigningKeylength bytes from the hash are used. If the hash length is less than the SigningKeylength then the first hash length bytes of the SigningKeyare replaced with the hash.
Once the keys are derived ECC SecureChannelsbehave the same as RSA SecureChannels.