+#include <math.h>
#include <openssl/hmac.h>
#include <openssl/sha.h>
+#include <stdlib.h>
#include <unistd.h>
#if defined(__APPLE)
#include "common.h"
#include "otppass.h"
+int otp_digits = 6;
+int otp_period = 30;
+
+int extractIntVal(const char *start, const char *search) {
+ if (start) {
+ start += strlen(search);
+
+ const char *end = strchr(start, '&');
+ if (!end) {
+ end = start + strlen(start);
+ }
+
+ char str[32] = {0};
+ size_t len = end - start;
+ if (len >= sizeof(str)) len = sizeof(str) - 1;
+
+ strncpy(str, start, len);
+ return atoi(str);
+ }
+
+ return 0;
+}
+
unsigned char *extract_secret(const char *otpauth_url, size_t *decoded_len) {
+ otp_digits = extractIntVal(strstr(otpauth_url, "digits="), "digits=");
+ if (otp_digits == 0) otp_digits = 6;
+ otp_period = extractIntVal(strstr(otpauth_url, "period="), "period=");
+ if (otp_period == 0) otp_period = 30;
+
const char *secret_start = strstr(otpauth_url, "secret=");
if (!secret_start) {
if (strncmp(lang, "en", 2) == 0)
(hash[offset + 2] & 0xFF) << 8 |
(hash[offset + 3] & 0xFF);
- return truncated_hash % 1000000;
+ return truncated_hash % (uint32_t)pow(10, otp_digits);
}
void otppass(char *file, int isCopy, int copyTimeout) {
secret_decoded[decoded_len] = '\0';
time_t current_time = time(NULL);
- uint64_t counter = current_time / 30;
+ uint64_t counter = current_time / otp_period;
uint32_t otp = generate_totp((const char *)secret_decoded, counter);
gpgme_data_release(in);
if (isCopy) {
char cmd[64];
- if (isGay) snprintf(cmd, sizeof(cmd), "echo -n %06d | wl-copy", otp);
- else snprintf(cmd, sizeof(cmd), "echo -n %06d | xclip -selection clipboard", otp);
+ if (isGay) snprintf(cmd, sizeof(cmd), "echo -n %0*u | wl-copy", otp_digits, otp);
+ else
+ snprintf(cmd, sizeof(cmd),
+ "echo -n %0*u | xclip -selection clipboard", otp_digits, otp);
int ret = system(cmd);
if (ret != 0) {
if (isGay) system("echo -n \"\" | wl-copy");
else system("echo -n \"\" | xclip -selection clipboard");
} else {
- printf("%06d\n", otp);
+ printf("%0*u\n", otp_digits, otp);
}
}