| // Copyright 2018 Google LLC |
| // |
| // 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/core/primitiveset" |
| "github.com/google/tink/go/internal/internalregistry" |
| "github.com/google/tink/go/internal/monitoringutil" |
| "github.com/google/tink/go/keyset" |
| "github.com/google/tink/go/monitoring" |
| "github.com/google/tink/go/tink" |
| tinkpb "github.com/google/tink/go/proto/tink_go_proto" |
| ) |
| |
| // NewSigner returns a Signer primitive from the given keyset handle. |
| func NewSigner(handle *keyset.Handle) (tink.Signer, error) { |
| ps, err := handle.Primitives() |
| if err != nil { |
| return nil, fmt.Errorf("public_key_sign_factory: cannot obtain primitive set: %s", err) |
| } |
| return newWrappedSigner(ps) |
| } |
| |
| // wrappedSigner is an Signer implementation that uses the underlying primitive set for signing. |
| type wrappedSigner struct { |
| ps *primitiveset.PrimitiveSet |
| logger monitoring.Logger |
| } |
| |
| // Asserts that wrappedSigner implements the Signer interface. |
| var _ tink.Signer = (*wrappedSigner)(nil) |
| |
| func newWrappedSigner(ps *primitiveset.PrimitiveSet) (*wrappedSigner, error) { |
| if _, ok := (ps.Primary.Primitive).(tink.Signer); !ok { |
| return nil, fmt.Errorf("public_key_sign_factory: not a Signer primitive") |
| } |
| |
| for _, primitives := range ps.Entries { |
| for _, p := range primitives { |
| if _, ok := (p.Primitive).(tink.Signer); !ok { |
| return nil, fmt.Errorf("public_key_sign_factory: not an Signer primitive") |
| } |
| } |
| } |
| logger, err := createSignerLogger(ps) |
| if err != nil { |
| return nil, err |
| } |
| return &wrappedSigner{ |
| ps: ps, |
| logger: logger, |
| }, nil |
| } |
| |
| func createSignerLogger(ps *primitiveset.PrimitiveSet) (monitoring.Logger, error) { |
| // only keysets which contain annotations are monitored. |
| if len(ps.Annotations) == 0 { |
| return &monitoringutil.DoNothingLogger{}, nil |
| } |
| keysetInfo, err := monitoringutil.KeysetInfoFromPrimitiveSet(ps) |
| if err != nil { |
| return nil, err |
| } |
| return internalregistry.GetMonitoringClient().NewLogger(&monitoring.Context{ |
| KeysetInfo: keysetInfo, |
| Primitive: "public_key_sign", |
| APIFunction: "sign", |
| }) |
| } |
| |
| // Sign signs the given data and returns the signature concatenated with the identifier of the |
| // primary primitive. |
| func (s *wrappedSigner) Sign(data []byte) ([]byte, error) { |
| primary := s.ps.Primary |
| signer, ok := (primary.Primitive).(tink.Signer) |
| if !ok { |
| return nil, fmt.Errorf("public_key_sign_factory: not a Signer primitive") |
| } |
| |
| var signedData []byte |
| if primary.PrefixType == tinkpb.OutputPrefixType_LEGACY { |
| signedData = make([]byte, 0, len(data)+1) |
| signedData = append(signedData, data...) |
| signedData = append(signedData, byte(0)) |
| } else { |
| signedData = data |
| } |
| |
| signature, err := signer.Sign(signedData) |
| if err != nil { |
| s.logger.LogFailure() |
| return nil, err |
| } |
| s.logger.Log(primary.KeyID, len(data)) |
| if len(primary.Prefix) == 0 { |
| return signature, nil |
| } |
| output := make([]byte, 0, len(primary.Prefix)+len(signature)) |
| output = append(output, primary.Prefix...) |
| output = append(output, signature...) |
| return output, nil |
| } |