This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Security.Cryptography; | |
using System.Text; | |
namespace OpenSslCompat | |
{ | |
/// <summary> | |
/// Derives a key from a password using an OpenSSL-compatible version of the PBKDF1 algorithm. | |
/// </summary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* attiny85_shift_register - displays digits 0 through 9 on 7-seg LED using 74HC595 for I/O expansion | |
* | |
* [ATtiny85 AVR] ==> [74HC595 shift register] ==> [7-seg led display] | |
*/ | |
#include <avr/io.h> | |
#include <util/delay.h> | |
// serial data-in |