Skip to content

Commit

Permalink
Fix otpauth-URI generation makeOtpAuthKey function.
Browse files Browse the repository at this point in the history
  • Loading branch information
VPKSoft committed Dec 28, 2023
1 parent 99bcfad commit fc5e287
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gauth-decode",
"version": "0.1.0",
"version": "0.1.1",
"description": "A package to decode Google Authenticator export data",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down
10 changes: 9 additions & 1 deletion src/auth_exporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,15 @@ const decode = async (data: string) => {
*/
const makeOtpAuthKey = (otpData: OtpDataWithBase32, useBase32Secret: boolean = true) => {
// TODO::Proper URI builder for OTP!
return `otpauth://totp/${otpData.name}?secret=${useBase32Secret ? otpData.secretBase32 : otpData.secret}&issuer=${otpData.issuer}`;

// The name part should contain the issuer also, to fix this lets just change the issuer if they differ.
let issuerFromName = otpData.issuer;
const nameData = otpData.name.split(":");
if (nameData.length === 2 && nameData[0] !== otpData.issuer) {
issuerFromName = nameData[0];
}

return `otpauth://totp/${otpData.name}?secret=${useBase32Secret ? otpData.secretBase32 : otpData.secret}&issuer=${issuerFromName}`;
};

export type { OtpDataWithBase32 };
Expand Down

0 comments on commit fc5e287

Please sign in to comment.