Java icon indicating copy to clipboard operation
Java copied to clipboard

Added a Simple XOR Cipher

Open lcsjunior opened this issue 1 year ago • 1 comments

I've transcribed one of my simple XOR ciphers that I use into Java with the intention of participating in Hacktoberfest and future contributions. Please consider accepting my code.

This is a simple implementation of the XOR cipher that, given a key, allows you to encrypt and decrypt plaintext.

  • [x] I have read CONTRIBUTING.md.
  • [x] This pull request is all my own work -- I have not plagiarized it.
  • [x] All filenames are in PascalCase.
  • [x] All functions and variable names follow Java naming conventions.
  • [x] All new algorithms have a URL in their comments that points to Wikipedia or other similar explanations.
  • [x] All new code is formatted with clang-format -i --style=file path/to/your/file.java

lcsjunior avatar Oct 01 '24 04:10 lcsjunior

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 53.00%. Comparing base (66ee59c) to head (d98740c).

Additional details and impacted files
@@             Coverage Diff              @@
##             master    #5490      +/-   ##
============================================
+ Coverage     52.98%   53.00%   +0.01%     
- Complexity     3311     3314       +3     
============================================
  Files           529      530       +1     
  Lines         15343    15356      +13     
  Branches       2925     2926       +1     
============================================
+ Hits           8130     8139       +9     
- Misses         6880     6881       +1     
- Partials        333      336       +3     

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

codecov-commenter avatar Oct 01 '24 04:10 codecov-commenter