bkcrack 1.7.1
Crack legacy zip encryption with Biham and Kocher's known plaintext attack.
log.hpp
Go to the documentation of this file.
1#ifndef BKCRACK_LOG_HPP
2#define BKCRACK_LOG_HPP
3
4#include <iostream>
5
8
10auto put_time(std::ostream& os) -> std::ostream&;
11
12class Keys; // forward declaration
13
16auto operator<<(std::ostream& os, const Keys& keys) -> std::ostream&;
17
18#endif // BKCRACK_LOG_HPP
Keys defining the cipher state.
Definition Keys.hpp:10
auto operator<<(std::ostream &os, const Keys &keys) -> std::ostream &
Insert a representation of keys into the stream os.
Keys()=default
Construct default state.
auto put_time(std::ostream &os) -> std::ostream &
Insert the current local time into the output stream.