mirror of https://github.com/kubernetes/kops.git
90 lines
2.9 KiB
Go
90 lines
2.9 KiB
Go
// Copyright (c) 2018, Google LLC All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package tpm2
|
|
|
|
import (
|
|
"crypto/hmac"
|
|
"encoding/binary"
|
|
"hash"
|
|
)
|
|
|
|
// KDFa implements TPM 2.0's default key derivation function, as defined in
|
|
// section 11.4.9.2 of the TPM revision 2 specification part 1.
|
|
// See: https://trustedcomputinggroup.org/resource/tpm-library-specification/
|
|
// The key & label parameters must not be zero length.
|
|
// The label parameter is a non-null-terminated string.
|
|
// The contextU & contextV parameters are optional.
|
|
func KDFa(hashAlg Algorithm, key []byte, label string, contextU, contextV []byte, bits int) ([]byte, error) {
|
|
h, err := hashAlg.Hash()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
mac := hmac.New(h.New, key)
|
|
|
|
out := kdf(mac, bits, func() {
|
|
mac.Write([]byte(label))
|
|
mac.Write([]byte{0}) // Terminating null character for C-string.
|
|
mac.Write(contextU)
|
|
mac.Write(contextV)
|
|
binary.Write(mac, binary.BigEndian, uint32(bits))
|
|
})
|
|
return out, nil
|
|
}
|
|
|
|
// KDFe implements TPM 2.0's ECDH key derivation function, as defined in
|
|
// section 11.4.9.3 of the TPM revision 2 specification part 1.
|
|
// See: https://trustedcomputinggroup.org/resource/tpm-library-specification/
|
|
// The z parameter is the x coordinate of one parties private ECC key and the other parties public ECC key.
|
|
// The use parameter is a non-null-terminated string.
|
|
// The partyUInfo and partyVInfo are the x coordinates of the initiators and the responders ECC points respectively.
|
|
func KDFe(hashAlg Algorithm, z []byte, use string, partyUInfo, partyVInfo []byte, bits int) ([]byte, error) {
|
|
createHash, err := hashAlg.Hash()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
h := createHash.New()
|
|
|
|
out := kdf(h, bits, func() {
|
|
h.Write(z)
|
|
h.Write([]byte(use))
|
|
h.Write([]byte{0}) // Terminating null character for C-string.
|
|
h.Write(partyUInfo)
|
|
h.Write(partyVInfo)
|
|
})
|
|
return out, nil
|
|
}
|
|
|
|
func kdf(h hash.Hash, bits int, update func()) []byte {
|
|
bytes := (bits + 7) / 8
|
|
out := []byte{}
|
|
|
|
for counter := 1; len(out) < bytes; counter++ {
|
|
h.Reset()
|
|
binary.Write(h, binary.BigEndian, uint32(counter))
|
|
update()
|
|
|
|
out = h.Sum(out)
|
|
}
|
|
// out's length is a multiple of hash size, so there will be excess bytes if bytes isn't a multiple of hash size.
|
|
out = out[:bytes]
|
|
|
|
// As mentioned in the KDFa and KDFe specs mentioned above,
|
|
// the unused bits of the most significant octet are masked off.
|
|
if maskBits := uint8(bits % 8); maskBits > 0 {
|
|
out[0] &= (1 << maskBits) - 1
|
|
}
|
|
return out
|
|
}
|