blob: 5d4cb53376afd2d0df1761e4559cc6b05ce040bf [file] [log] [blame]
// 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 signature
import (
"fmt"
"github.com/google/tink/go/format"
"github.com/google/tink/go/keyset"
"github.com/google/tink/go/primitiveset"
"github.com/google/tink/go/registry"
"github.com/google/tink/go/tink"
tinkpb "github.com/google/tink/proto/tink_go_proto"
)
// NewSigner returns a Signer primitive from the given keyset handle.
func NewSigner(h *keyset.Handle) (tink.Signer, error) {
return NewSignerWithKeyManager(h, nil /*keyManager*/)
}
// NewSignerWithKeyManager returns a Signer primitive from the given keyset handle and custom key manager.
func NewSignerWithKeyManager(h *keyset.Handle, km registry.KeyManager) (tink.Signer, error) {
ps, err := h.PrimitivesWithKeyManager(km)
if err != nil {
return nil, fmt.Errorf("public_key_sign_factory: cannot obtain primitive set: %s", err)
}
return newSignerSet(ps), nil
}
// signerSet is an Signer implementation that uses the underlying primitive set for signing.
type signerSet struct {
ps *primitiveset.PrimitiveSet
}
// Asserts that signerSet implements the Signer interface.
var _ tink.Signer = (*signerSet)(nil)
func newSignerSet(ps *primitiveset.PrimitiveSet) *signerSet {
ret := new(signerSet)
ret.ps = ps
return ret
}
// Sign signs the given data and returns the signature concatenated with the identifier of the
// primary primitive.
func (s *signerSet) Sign(data []byte) ([]byte, error) {
primary := s.ps.Primary
var signer = (primary.Primitive).(tink.Signer)
var signedData []byte
if primary.PrefixType == tinkpb.OutputPrefixType_LEGACY {
signedData = append(signedData, data...)
signedData = append(signedData, format.LegacyStartByte)
} else {
signedData = data
}
signature, err := signer.Sign(signedData)
if err != nil {
return nil, err
}
var ret []byte
ret = append(ret, primary.Prefix...)
ret = append(ret, signature...)
return ret, nil
}