diff --git a/Cargo.toml b/Cargo.toml index 0543e1f..451ee07 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,16 +1,16 @@ [package] -name = "template" +name = "Kauma-analyzer" version = "0.1.0" edition = "2021" publish = false authors = ["Christoph J. Scherr "] license = "MIT" -description = "No description yet" +description = "Solves exams from my professor for cryptoanalysis" readme = "README.md" -homepage = "https://git.cscherr.de/PlexSheep/rs-base" -repository = "https://git.cscherr.de/PlexSheep/rs-base" -keywords = ["template"] +homepage = "https://git.cscherr.de/PlexSheep/kauma" +repository = "https://git.cscherr.de/PlexSheep/kauma" [dependencies] - +serde = { version = "1.0.210", features = ["derive"] } +serde_json = "1.0.128" diff --git a/LICENSE b/LICENSE index b8a4560..0ac5384 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 PlexSheep +Copyright (c) 2024 Christoph Johannes Scherr Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/README.md b/README.md index a27185f..ac72a09 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ -# rs-base +# Kauma-Analyzer -Base repository for rust projects \ No newline at end of file +I'm studying cybersecurity at DHBW, and we have "Kryptoalanysis und Methoden +Audit" (kauma) there. As part of this classe, we are to solve some +ccryptological exams in a controlled environment. + +This repository contains my solutions for these.