| // Copyright 2022 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 ( |
| "crypto/rsa" |
| "errors" |
| "fmt" |
| |
| "google.golang.org/protobuf/proto" |
| "github.com/google/tink/go/core/registry" |
| internal "github.com/google/tink/go/internal/signature" |
| "github.com/google/tink/go/keyset" |
| rsassapkcs1pb "github.com/google/tink/go/proto/rsa_ssa_pkcs1_go_proto" |
| tinkpb "github.com/google/tink/go/proto/tink_go_proto" |
| ) |
| |
| const ( |
| rsaSSAPKCS1VerifierKeyVersion = 0 |
| rsaSSAPKCS1VerifierTypeURL = "type.googleapis.com/google.crypto.tink.RsaSsaPkcs1PublicKey" |
| ) |
| |
| var ( |
| errRSASSAPKCS1NotImplemented = errors.New("rsassapkcs1_verifier_key_manager: not implemented") |
| ) |
| |
| type rsaSSAPKCS1VerifierKeyManager struct{} |
| |
| var _ registry.KeyManager = (*rsaSSAPKCS1VerifierKeyManager)(nil) |
| |
| func (km *rsaSSAPKCS1VerifierKeyManager) Primitive(serializedKey []byte) (any, error) { |
| if len(serializedKey) == 0 { |
| return nil, fmt.Errorf("rsassapkcs1_verifier_key_manager: invalid serialized public key") |
| } |
| key := &rsassapkcs1pb.RsaSsaPkcs1PublicKey{} |
| if err := proto.Unmarshal(serializedKey, key); err != nil { |
| return nil, err |
| } |
| if err := validateRSAPKCS1PublicKey(key); err != nil { |
| return nil, err |
| } |
| keyData := &rsa.PublicKey{ |
| E: int(bytesToBigInt(key.GetE()).Int64()), |
| N: bytesToBigInt(key.GetN()), |
| } |
| return internal.New_RSA_SSA_PKCS1_Verifier(hashName(key.GetParams().GetHashType()), keyData) |
| } |
| |
| func validateRSAPKCS1PublicKey(pubKey *rsassapkcs1pb.RsaSsaPkcs1PublicKey) error { |
| if err := keyset.ValidateKeyVersion(pubKey.GetVersion(), rsaSSAPKCS1VerifierKeyVersion); err != nil { |
| return err |
| } |
| return validateRSAPubKeyParams( |
| pubKey.GetParams().GetHashType(), |
| bytesToBigInt(pubKey.GetN()).BitLen(), |
| pubKey.GetE()) |
| } |
| |
| func (km *rsaSSAPKCS1VerifierKeyManager) NewKey(serializedKeyFormat []byte) (proto.Message, error) { |
| return nil, errRSASSAPKCS1NotImplemented |
| } |
| |
| func (km *rsaSSAPKCS1VerifierKeyManager) NewKeyData(serializedKeyFormat []byte) (*tinkpb.KeyData, error) { |
| return nil, errRSASSAPKCS1NotImplemented |
| } |
| |
| func (km *rsaSSAPKCS1VerifierKeyManager) DoesSupport(typeURL string) bool { |
| return typeURL == rsaSSAPKCS1VerifierTypeURL |
| } |
| |
| func (km *rsaSSAPKCS1VerifierKeyManager) TypeURL() string { |
| return rsaSSAPKCS1VerifierTypeURL |
| } |