// generated by scripts/build_keyboard_adjacency_graphs.py #include <zxcvbn/adjacency_graphs.hpp> #include <array> #include <initializer_list> #include <utility> #include "base/no_destructor.h" namespace zxcvbn { extern constexpr degree_t KEYBOARD_AVERAGE_DEGREE = …; // slightly different for keypad/mac keypad, but close enough extern constexpr degree_t KEYPAD_AVERAGE_DEGREE = …; extern constexpr std::size_t KEYBOARD_STARTING_POSITIONS = …; extern constexpr std::size_t KEYPAD_STARTING_POSITIONS = …; const Graphs& graphs() { … } }