nchvote.framework.2.2.1.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
This module offers a generic framework for implementing cryptographic protocols such as CHVote.
/*
* Copyright (C) 2024 Berner Fachhochschule https://e-voting.bfh.ch
*
* - This program is free software: you can redistribute it and/or modify -
* - it under the terms of the GNU Affero General Public License as published by -
* - the Free Software Foundation, either version 3 of the License, or -
* - (at your option) any later version. -
* - -
* - This program is distributed in the hope that it will be useful, -
* - but WITHOUT ANY WARRANTY; without even the implied warranty of -
* - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -
* - GNU General Public License for more details. -
* - -
* - You should have received a copy of the GNU Affero General Public License -
* - along with this program. If not, see . -
*/
import ch.openchvote.framework.services.*;
/**
* This module is an implementation of the OpenCHVote protocol framework.
*/
module ch.openchvote.framework {
exports ch.openchvote.framework;
exports ch.openchvote.framework.annotations.content;
exports ch.openchvote.framework.annotations.party;
exports ch.openchvote.framework.annotations.phase;
exports ch.openchvote.framework.annotations.protocol;
exports ch.openchvote.framework.annotations.service;
exports ch.openchvote.framework.annotations.state;
exports ch.openchvote.framework.communication;
exports ch.openchvote.framework.exceptions;
exports ch.openchvote.framework.interfaces;
exports ch.openchvote.framework.party;
exports ch.openchvote.framework.protocol;
exports ch.openchvote.framework.security;
exports ch.openchvote.framework.services;
exports ch.openchvote.framework.synchronizer;
exports ch.openchvote.framework.synchronizer.collector;
exports ch.openchvote.framework.synchronizer.monitor;
uses CertificateService;
uses EncryptionService;
uses EventService.Source;
uses EventService.Target;
uses KeystoreService;
uses MessagingService.Source;
uses MessagingService.Target;
uses MailingService.Source;
uses MailingService.Target;
uses PersistenceService;
uses PublicationService.Source;
uses PublicationService.Target;
uses RequestResponseService.Source;
uses RequestResponseService.Target;
uses SelfActivationService;
uses SerializationService.Content;
uses SerializationService.EventContext;
uses SignatureService;
uses TestingService.Source;
uses TestingService.Target;
}