1 /*
2 * This file is part of the Civitas software distribution.
3 * Copyright (c) 2007-2008, Civitas project group, Cornell University.
4 * See the LICENSE file accompanying this distribution for further license
5 * and copyright information.
6 */
7 package civitas.crypto.keypair;
8
9 import civitas.crypto.privatekey.ElGamalPrivateKey;
10 import civitas.crypto.publickey.ElGamalPublicKey;
11 import lombok.NonNull;
12
13 public record ElGamalKeyPair(@NonNull ElGamalPublicKey publicKey, @NonNull ElGamalPrivateKey privateKey) {}