-
Notifications
You must be signed in to change notification settings - Fork 19
/
RETTER.html
executable file
·7350 lines (1633 loc) · 130 KB
/
RETTER.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<style>pre { width: 617px; margin: 0 auto; line-height: 18px; margin-bottom: 2em; } blockquote { background: #eee; padding: 10px; } ol { -webkit-column-count: 1; -moz-column-count: 1; column-count: 1; } ol.IB > li { display: inline-block; width: 100%; } h4 { border-bottom: 2px solid black; } .TC { text-align: center; } @media (min-width: 750px) { ol { -webkit-column-count: 3; -moz-column-count: 3; column-count: 3; } } fieldset { border: 2px solid black; border-style: dashed; }</style>
<meta charset="utf-8" />
<title>RETTER: Cryptography & Security moves fast. Keep up!</title>
</head>
<body>
<pre>
_""^^"-.
/ / \ \
| |.-""-.| ___ ___ _____ _____ ___ ___
////`.;;;;.`\ | _ \ __|_ _|_ _| __| _ \\
|||; ::/ \:: ; | / _| | | | | | _|| /
|||; ::\__/:: ; |_|_\___| |_| |_| |___|_|_\\
\\\\ ';;;;' / Cryptography & Security moves fast. Keep up!
`==':-..-'`
http://maciejczyzewski.me/retter
By: M. A. Czyzewski
Date: 06/03/2017
This code is explicitly placed into the public domain.
</pre>
<!-- EXTERNAL -->
<div class="TC">
<iframe src="https://ghbtns.com/github-btn.html?user=maciejczyzewski&repo=retter&type=star&count=true" frameborder="0" scrolling="0" width="100px" height="20px"></iframe>
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://maciejczyzewski.me/retter" data-via="_czyzewski">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</div>
<!-- EXTERNAL -->
<p class="TC">[<a href="#courses">COURSES</a> |
<a href="#libraries">LIBRARIES</a> |
<a href="#tools">TOOLS</a> |
<a href="#algorithms">ALGORITHMS</a> |
<a href="#conferences">CONFERENCES</a> |
<a href="#cryptographers">CRYPTOGRAPHERS</a> |
<a href="#organizations-groups">ORGANIZATIONS & GROUPS</a>]</p>
<blockquote><b>NOTE</b>: If you see mistakes, expired links or would like to expand the list with your own bookmarks. Feel free to <a href="https://github.com/maciejczyzewski/retter">contribute</a> to this project! If you want to know more about this project, please read the <a href="https://github.com/maciejczyzewski/retter#readme">README</a>. List below is still in the process of creation...</blockquote>
<h4 id="courses">Courses</h4>
<ol class="IB">
<li>
<a href="http://www.cs.bris.ac.uk/Research/CryptographySecurity/knowledge.html">52 Things People Should Know To Do Cryptography</a>
<p>Cryptography is a highly interdiscplinary area; calling on expertise in Pure Mathematics, Computer Science and Electronic Engineering. At Bristol we cover the full range of these topics and as such our students come with a variety of backgrounds and need to understand a diverse range of topics.</p>
</li>
<li>
<a href="https://crypto.stanford.edu/~dabo/cryptobook/">A Graduate Course in Applied Cryptography</a>
<p>This book is about exactly that; constructing practical cryptosystems for which we can argue security under plausible assumptions. The book covers many constructions for different tasks in cryptography.</p>
</li>
<li>
<a href="http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-876j-advanced-topics-in-cryptography-spring-2003/">Advanced Topics in Cryptography</a>
<p>The topics covered in this course include interactive proofs, zero-knowledge proofs, zero-knowledge proofs of knowledge, non-interactive zero-knowledge proofs, secure protocols, two-party secure computation, multiparty secure computation, and chosen-ciphertext security.</p>
</li>
<li>
<a href="http://inst.eecs.berkeley.edu/~cs161/archives.html">Berkeley's Computer Security</a>
<p>Good for beginners course on computer security basics.</p>
</li>
<li>
<a href="https://www.crypto101.io/">CRYPTO101 - Introductory Course</a>
<p>Is an introductory course on cryptography, freely available for programmers of all ages and skill levels.</p>
</li>
<li>
<a href="https://gist.github.com/tqbf/be58d2d39690c3b366ad">Cryptographic Right Answers from Thomas Ptacek</a>
<p>A short note on the topics of security and cryptography.</p>
</li>
<li>
<a href="http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-875-cryptography-and-cryptanalysis-spring-2005/">Cryptography and Cryptanalysis</a>
<p>This course features a rigorous introduction to modern cryptography, with an emphasis on the fundamental cryptographic primitives of public-key encryption, digital signatures, pseudo-random number generation, and basic protocols and their computational complexity requirements.</p>
</li>
<li>
<a href="https://www.coursera.org/course/crypto">Dan Boneh's Coursera Cryptography Course</a>
<p>Cryptography is an indispensable tool for protecting information in computer systems. This course explains the inner workings of cryptographic primitives and how to correctly use them. Students will learn how to reason about the security of cryptographic constructions and how to apply this knowledge to real-world applications.</p>
</li>
<li>
<a href="http://cacr.uwaterloo.ca/hac/index.html">Handbook of Applied Cryptography</a>
<p>This site provides order information, updates, errata, supplementary information, chapter bibliographies, and other information for the Handbook of Applied Cryptography by Menezes, van Oorschot and Vanstone.</p>
</li>
<li>
<a href="https://www.vpnmentor.com/blog/kali-linux-a-guide-to-ethical-hacking/">Kali Linux - A guide to Ethical hacking</a>
<p>Kali is a Debian-derived Linux distribution designed for digital forensics and penetration testing. This site should help to understand basics.</p>
</li>
<li>
<a href="http://courses.cs.washington.edu/courses/csep590/06wi/lectures/">Practical Aspects of Modern Cryptography</a>
<p>Course include an extensive range of knowledge about modern cryptography.</p>
</li>
<li>
<a href="http://cryptopals.com/">The Matasano Crypto Challenges</a>
<p>This is a different way to learn about crypto than taking a class or reading a book. Course give you problems to solve. They're derived from weaknesses in real-world systems and modern cryptographic constructions.</p>
</li>
<li>
<a href="http://saweis.net/crypto.html">Theory and Practice of Cryptography Mini-Course</a>
<p>This mini-course was taught in 2007 at Google. It is intended to be a brief survey for a general technical audience.</p>
</li>
</ol>
<h4 id="libraries">Libraries</h4>
<ol class="IB">
<li>
C
<ul>
<li><a href="https://github.com/cantora/avr-crypto-lib">avr-crypto-lib</a>: Is a set of implementations of different cryptographic primitives. Due to the special limitations of microcontrollers.</li>
<li><a href="http://www.cryptlib.com/">cryptlib</a>: An open source cross-platform software security toolkit library.</li>
<li><a href="https://github.com/B-Con/crypto-algorithms">crypto-algorithms</a>: Basic implementations of standard cryptography algorithms, like AES and SHA-1.</li>
<li><a href="https://www.gnu.org/software/libgcrypt/">Libgcrypt</a>: Is a cryptographic library developed as a separated module of GnuPG. It provides functions for all cryptograhic building blocks, own multiple precision arithmetic implementation.</li>
<li><a href="https://github.com/jedisct1/libsodium">libsodium</a>: A modern and easy-to-use crypto library.</li>
<li><a href="http://www.lysator.liu.se/~nisse/nettle/">Nettle</a>: A cryptographic library that is designed to fit easily in more or less any context.</li>
<li><a href="https://github.com/rhash/RHash">RHash</a>: Great utility for computing hash sums.</li>
<li><a href="https://github.com/maandree/sha3sum">sha3sum</a>: SHA-3 and Keccak checksum utility.</li>
</ul>
<br/>
</li>
<li>
C++
<ul>
<li><a href="http://botan.randombit.net/">Botan</a>: It provides a wide variety of cryptographic algorithms, formats, and protocols, e.g. SSL and TLS.</li>
<li><a href="http://www.cryptopp.com/">Crypto++</a>: Is a free and open source C++ class library of cryptographic algorithms and schemes.</li>
<li><a href="https://github.com/shaih/HElib">HElib</a>: An Implementation of homomorphic encryption.</li>
<li><a href="http://nacl.cr.yp.to/">NaCl</a>: High-speed software library for network communication, encryption, decryption, signatures, etc.</li>
</ul>
<br/>
</li>
<li>
C# / .NET
<ul>
<li><a href="https://github.com/brandondahler/Data.HashFunction">Data.HashFunction</a>: Common interface library to non-cryptographic hash functions with numerous implementations.</li>
<li><a href="https://github.com/AArnott/PCLCrypto">PCLCrypto</a>: Portable Class Library that invokes native implementations of cryptographic functions on Microsoft .NET, Mono, Silverlight, WinRT, Windows Phone, iOS and Android.</li>
</ul>
<br/>
</li>
<li>
PYTHON
<ul>
<li><a href="https://github.com/pyca/cryptography">cryptography</a>: A package designed to expose cryptographic primitives and recipes to Python developers.</li>
<li><a href="https://www.dlitz.net/software/pycrypto/">pycrypto</a>: Widely used package containing various cryptographic modules and functions.</li>
</ul>
<br/>
</li>
<li>
JAVASCRIPT
<ul>
<li><a href="https://github.com/gwjjeff/cryptojs">cryptojs</a>: Provide standard and secure cryptographic algorithms for NodeJS.</li>
<li><a href="https://gist.github.com/macton/1743087">hmacsha1.js</a>: A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined.</li>
<li><a href="https://github.com/clipperz/javascript-crypto-library">javascript-crypto-library</a>: Provides web developers with an extensive and efficient set of cryptographic functions.</li>
<li><a href="https://github.com/h2non/jshashes">jsHashes</a>: Pure JavaScript implementation of the most extended hash algorithms.</li>
<li><a href="http://bitwiseshiftleft.github.io/sjcl/">sjcl</a>: Is a project by the Stanford Computer Security Lab to build a secure, powerful, fast, small, easy-to-use, cross-browser library for cryptography in Javascript.</li>
</ul>
<br/>
</li>
<li>
CLOJURE
<ul>
<li><a href="https://github.com/xsc/pandect">pandect</a>: Fast and easy-to-use Message Digest, Checksum and HMAC library for Clojure.</li>
</ul>
<br/>
</li>
<li>
ACTIONSCRIPT
<ul>
<li><a href="https://github.com/mikechambers/as3corelib">as3corelib</a>: An ActionScript 3 Library that contains a number of classes and utilities.</li>
</ul>
<br/>
</li>
<li>
RUBY
<ul>
<li><a href="https://github.com/cryptosphere/rbnacl">rbnacl</a>: Ruby binding to the Networking and Cryptography (NaCl) library.</li>
</ul>
<br/>
</li>
<li>
OBJECTIVE-C
<ul>
<li><a href="https://github.com/kelp404/CocoaSecurity">CocoaSecurity</a>: AES, MD5, SHA1, SHA224, SHA256, SHA384, SHA512, Base64, Hex</li>
<li><a href="https://github.com/RNCryptor/RNCryptor">RNCryptor</a>: CCCryptor (AES encryption) wrappers for iOS and Mac.</li>
</ul>
<br/>
</li>
<li>
RUST
<ul>
<li><a href="https://github.com/DaGenix/rust-crypto">rust-crypto</a>: A (mostly) pure-Rust implementation of various cryptographic algorithms.</li>
</ul>
<br/>
</li>
<li>
HASKELL
<ul>
<li><a href="https://hackage.haskell.org/package/cryptonite">cryptonite</a>: A collection of cryptographic primitives including AES, RSA, ChaCha20, Poly1305, Ed25519 and SCrypt.</li>
</ul>
<br/>
</li>
<li>
JAVA
<ul>
<li><a href="http://bouncycastle.org/">Bouncy Castle</a>: A collection of APIs used in cryptography. It includes APIs for both the Java and the C# programming languages.</li>
</ul>
<br/>
</li>
</ol>
<h4 id="tools">Tools</h4>
<ol class="IB">
<li>
PENETRATION DISTRIBUTIONS & FRAMEWORKS
<ul>
<li><a href="http://www.backbox.org/">BackBox</a>: Ubuntu-based distribution for penetration tests and security assessments.</li>