Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/DoctorMcKay/node-steam-totp
Lightweight module to generate Steam-style TOTP auth codes.
https://github.com/DoctorMcKay/node-steam-totp
javascript node steam
Last synced: 3 months ago
JSON representation
Lightweight module to generate Steam-style TOTP auth codes.
- Host: GitHub
- URL: https://github.com/DoctorMcKay/node-steam-totp
- Owner: DoctorMcKay
- License: mit
- Created: 2015-11-20T06:13:50.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2022-03-15T06:55:33.000Z (over 2 years ago)
- Last Synced: 2024-07-18T15:11:11.776Z (4 months ago)
- Topics: javascript, node, steam
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/steam-totp
- Size: 38.1 KB
- Stars: 234
- Watchers: 19
- Forks: 39
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-steam - steam-totp - Easily generate 2FA codes used by Steam. (Packages / Node.js)
- awesome-esports - Steam TOTP - A Node.js library for generating Steam-style 2FA codes. (Libraries / APIs & Web Services)
README
# Steam TOTP
[![npm version](https://img.shields.io/npm/v/steam-totp.svg)](https://npmjs.com/package/steam-totp)
[![npm downloads](https://img.shields.io/npm/dm/steam-totp.svg)](https://npmjs.com/package/steam-totp)
[![license](https://img.shields.io/npm/l/steam-totp.svg)](https://github.com/DoctorMcKay/node-steam-totp/blob/master/LICENSE)
[![paypal](https://img.shields.io/badge/paypal-donate-yellow.svg)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=N36YVAT42CZ4G&item_name=node%2dsteam%2dtotp¤cy_code=USD)This lightweight module generates Steam-style 5-digit alphanumeric two-factor authentication codes given a shared secret.
**As of v2.0.0, Node.js v6.0.0 or later is REQUIRED. This LTS Node.js release will be supported by this module for the duration of Node's LTS support.**
Usage is simple:
```js
var SteamTotp = require('steam-totp');
var code = SteamTotp.generateAuthCode('cnOgv/KdpLoP6Nbh0GMkXkPXALQ=');
```[Read more about Steam's 2FA and trade confirmations.](https://dev.doctormckay.com/topic/289-trading-and-escrow-mobile-trade-confirmations/)
## time([timeOffset])
- `timeOffset` - Default 0 if omitted. This many seconds will be added to the returned value.**v1.2.0 or later is required to use this function**
Simply returns the current local time in Unix time. This is just `Math.floor(Date.now() / 1000) + timeOffset`.
## getAuthCode(secret[, timeOffset][, callback])
- `secret` - Your `shared_secret`, as a `Buffer`, hex string, or base64 string
- `timeOffset` - Optional. If you know your clock's offset from the Steam servers, you can provide it here. This number of seconds will be added to the current time to produce the final time. Default 0.
- `callback` - Optional. If you provide a callback, then the auth code will **not** be returned and it will be provided to the callback. If provided, the module will also account for time discrepancies with the Steam servers. If you use this, **do not** provide a `timeOffset`.
- `err` - An `Error` object on failure, or `null` on success
- `code` - Your auth code, as a string
- `offset` - Your time offset, in seconds. You can pass this to `time` later if you need to, for example to get confirmation keys.
- `latency` - The time in milliseconds between when we sent our request and when we received a response from the Steam time server.**v1.4.0 or later is required to use `callback`.**
Returns your current 5-character alphanumeric TOTP code as a string (if no callback is provided) or queries the current
time from the Steam servers and returns the code in the callback (if the callback was provided).**Note:** You should use your `shared_secret` for this function.
*Alias: generateAuthCode(secret[, timeOffset][, callback])*
## getConfirmationKey(identitySecret, time, tag)
- `identitySecret` - Your `identity_secret`, as a `Buffer`, hex string, or base64 string
- `time` - The Unix time for which you are generating this secret. Generally should be the current time.
- `tag` - The tag which identifies what this request (and therefore key) will be for. "conf" to load the confirmations page, "details" to load details about a trade, "allow" to confirm a trade, "cancel" to cancel it.**v1.1.0 or later is required to use this function**
Returns a string containing your base64 confirmation key for use with the mobile confirmations web page.
**Note:** You should use your `identity_secret` for this function.
*Alias: generateConfirmationKey(identitySecret, time, tag)*
## getTimeOffset(callback)
- `callback` - Called when the request completes
- `error` - An `Error` object, or `null` on success
- `offset` - The time offset in seconds
- `latency` - The time in milliseconds between when we sent the request and when we received a response**v1.2.0 or later is required to use this function**
Queries the Steam servers for their time, then subtracts our local time from it to get our offset.
The offset is how many seconds we are **behind** Steam. Therefore, **add** this number to our local time to get Steam time.
You can pass this value to `time()` or to `getAuthCode()` as-is with no math involved.
## getDeviceID(steamID)
- `steamID` - Your SteamID as a string or an object (such as a `SteamID` object) which has a `toString()` method that returns the SteamID as a 64-bit integer string.**v1.3.0 or later is required to use this function**
Returns a standardized device ID in the same format as Android device IDs from Valve's official mobile app. Steam will
likely soon stop allowing you to send a different device ID each time you load the page, instead requiring you to
consistently use the same device ID. If you use this function's algorithm everywhere you use a confirmation device ID,
then your experience should be fine.The algorithm used is:
1. Convert the SteamID to a string
2. Append the value of the `STEAM_TOTP_SALT` environment variable to the SteamID, if it's set
3. SHA-1 hash it and encode the resulting hash as a lowercase hex value
4. Truncate the hash to 32 characters
5. Insert dashes such that the resulting value has 5 groups of hexadecimal values containing 8, 4, 4, 4, and 12 characters, respectively
6. Prepend "android:" to the resulting valueNote: `STEAM_TOTP_SALT` was added to the v1 branch in v1.5.0 and to the v2 branch in v2.1.0.