| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /**
- * @file OTPChecker.h
- * @author Ambroz Bizjak <ambrop7@gmail.com>
- *
- * @section LICENSE
- *
- * This file is part of BadVPN.
- *
- * BadVPN is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2
- * as published by the Free Software Foundation.
- *
- * BadVPN is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * @section DESCRIPTION
- *
- * Object that checks OTPs agains known seeds.
- */
- #ifndef BADVPN_SECURITY_OTPCHECKER_H
- #define BADVPN_SECURITY_OTPCHECKER_H
- #include <stdint.h>
- #include <misc/balign.h>
- #include <misc/debug.h>
- #include <misc/modadd.h>
- #include <security/OTPCalculator.h>
- #include <system/DebugObject.h>
- struct OTPChecker_entry {
- otp_t otp;
- int avail;
- };
- #include <generated/bstruct_OTPChecker.h>
- /**
- * Object that checks OTPs agains known seeds.
- */
- typedef struct {
- DebugObject d_obj;
- int num_otps;
- int num_entries;
- int num_tables;
- int tables_used;
- int next_table;
- OTPCalculator calc;
- oc_tablesParams tables_params;
- oc_tables *tables;
- } OTPChecker;
- /**
- * Initializes the checker.
- *
- * @param mc the object
- * @param num_otps number of OTPs to generate from a seed. Must be >0.
- * @param cipher encryption cipher for calculating the OTPs. Must be valid
- * according to {@link BEncryption_cipher_valid}.
- * @param num_tables number of tables to keep, each for one seed. Must be >0.
- * @return 1 on success, 0 on failure
- */
- int OTPChecker_Init (OTPChecker *mc, int num_otps, int cipher, int num_tables) WARN_UNUSED;
- /**
- * Frees the checker.
- *
- * @param mc the object
- */
- void OTPChecker_Free (OTPChecker *mc);
- /**
- * Adds a seed whose OTPs should be recognized.
- *
- * @param mc the object
- * @param seed_id seed identifier
- * @param key encryption key
- * @param iv initialization vector
- */
- void OTPChecker_AddSeed (OTPChecker *mc, uint16_t seed_id, uint8_t *key, uint8_t *iv);
- /**
- * Removes all active seeds.
- *
- * @param mc the object
- */
- void OTPChecker_RemoveSeeds (OTPChecker *mc);
- /**
- * Checks an OTP.
- *
- * @param mc the object
- * @param seed_id identifer of seed whom the OTP is claimed to belong to
- * @param otp OTP to check
- * @return 1 if the OTP is valid, 0 if not
- */
- int OTPChecker_CheckOTP (OTPChecker *mc, uint16_t seed_id, otp_t otp);
- #endif
|