All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.crypto.tink.internal.PrimitiveWrapper Maven / Gradle / Ivy

Go to download

Tink is a small cryptographic library that provides a safe, simple, agile and fast way to accomplish some common cryptographic tasks.

There is a newer version: 1.16.0
Show newest version
// Copyright 2017 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 com.google.crypto.tink.internal;

import java.security.GeneralSecurityException;

/**
 * Basic interface for wrapping a primitive.
 *
 * 

A PrimitiveSet can be wrapped by a single primitive in order to fulfil a cryptographic task. * This is done by the PrimitiveWrapper. Whenever a new primitive type is added to Tink, the user * should define a new PrimitiveWrapper and register it by calling {@code * com.google.crypto.tink.Registry#registerPrimitiveWrapper}. * *

The primitive wrapper wraps primitives of type {@code B} into primitives of type {@code P}. * Often, these are the same classes, but in some cases they may not be. There can only be one * wrapper for each result primitive {@code P} (as Tink needs to know how to generate a {@code P}), * but there may be many wrapping the same {@code B}. */ public interface PrimitiveWrapper { /** * Wraps a {@code PrimitiveSet} and returns a single instance. * *

This method gets called when a new primitive is created. {@code primitiveSet} is immutable. * * This has to be implemented when a new primitive type is added. */ P wrap(PrimitiveSet primitiveSet) throws GeneralSecurityException; /** * Returns the primitive class object of the primitive managed. Used for internal management. * Should be implemented as {@code return P.class;} when implementing a wrapper creating objects * of type {@code P}. */ Class

getPrimitiveClass(); /** * Returns the primitive class object of the primitive used to create B. Used for internal * management. Should be implemented as {@code return B.class;}. */ Class getInputPrimitiveClass(); }