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

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

// 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 com.google.crypto.tink.internal;

import com.google.crypto.tink.Key;
import com.google.crypto.tink.SecretKeyAccess;
import java.security.GeneralSecurityException;
import javax.annotation.Nullable;

/**
 * Serializes {@code Key} objects into {@code Serialization} objects of a certain kind.
 *
 * 

This class should eventually be in Tinks public API -- however, it might still change before * that. */ public abstract class KeySerializer { /** * A function which serializes a key. * *

This interface exists only so we have a type we can reference in {@link #create}. Users * should not use this directly; see the explanation in {@link #create}. */ public interface KeySerializationFunction< KeyT extends Key, SerializationT extends Serialization> { SerializationT serializeKey(KeyT key, @Nullable SecretKeyAccess access) throws GeneralSecurityException; } private final Class keyClass; private final Class serializationClass; private KeySerializer(Class keyClass, Class serializationClass) { this.keyClass = keyClass; this.serializationClass = serializationClass; } public abstract SerializationT serializeKey(KeyT key, @Nullable SecretKeyAccess access) throws GeneralSecurityException; public Class getKeyClass() { return keyClass; } public Class getSerializationClass() { return serializationClass; } /** * Creates a KeySerializer object. * *

In order to create a KeySerializer object, one typically writes a function * *

{@code
   * class MyClass {
   *   private static MySerialization serialize(MyKey key, @Nullable SecretKeyAccess access)
   *             throws GeneralSecurityException {
   *     ...
   *   }
   * }
   * }
* * This function can then be used to create a {@code KeySerializer}: * *
{@code
   * KeySerializer serializer =
   *       KeySerializer.create(MyClass::serialize, MyKey.class, MySerialization.class);
   * }
* *

Note that calling this function twice will result in objects which are not equal according * to {@code Object.equals}, and hence cannot be used to re-register a previously registered * object. */ public static KeySerializer create( KeySerializationFunction function, Class keyClass, Class serializationClass) { return new KeySerializer(keyClass, serializationClass) { @Override public SerializationT serializeKey(KeyT key, @Nullable SecretKeyAccess access) throws GeneralSecurityException { return function.serializeKey(key, access); } }; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy