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.signature;
8
9 import lombok.AllArgsConstructor;
10 import lombok.Data;
11 import lombok.NoArgsConstructor;
12 import lombok.NonNull;
13
14 @Data
15 @NoArgsConstructor
16 @AllArgsConstructor
17 public class Signature {
18 public byte @NonNull [] signatureBytes;
19
20 @NonNull String signerPubKey;
21 }