rusty-diceware

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 0d8d0e9112c6e9771eadb0b0479dfe0085d7e40b
parent 66598244d0b4267f71ed3f34b162438ce77755d0
Author: Yuval Langer <yuvallangerontheroad@gmail.com>
Date:   Sun, 25 Sep 2022 19:45:00 +0300

Add copyright license notice to the main source file.

Diffstat:
Msrc/main.rs | 18++++++++++++++++++
1 file changed, 18 insertions(+), 0 deletions(-)

diff --git a/src/main.rs b/src/main.rs @@ -1,3 +1,21 @@ +/* +rusty-diceware - a password / passphrasse generator using wordlists, with or without dice. +Copyright (C) 2015-2022 Yuval Langer + +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 Affero 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 <https://www.gnu.org/licenses/>. +*/ + extern crate getopts; extern crate rand;