mental-poker
v1.0.0
Published
[](https://npmjs.com/package/mental-poker) [](https://travis-ci.org/kripod/mental-poker) [;
Initial deck setup
Each player shall generate a codeword fragment for each card of the configured deck type. Fragments which correspond to the same card will be combined to produce a deck of cards, represented as an array of codewords.
Players should share codeword fragments with each other through a commitment scheme, to prevent malicious entities from manipulating the generated codewords in their own favor.
import { createPlayer } from 'mental-poker';
const self = createPlayer(config);
// Players should share their public data with each other
// Sensitive information (e.g. private keys) shall be kept in secret
const opponents = [
/* Received from others */
];
// Points generation (Thesis, 3.1.1)
const cardCodewords = createDeck(
[self, ...opponents].map(player => player.cardCodewordFragments),
);
After that, the deck shall be shuffled and each of its cards must be encrypted one by one.
// The deck may also be received from the previous player in turn
let deck = cardCodewords;
// Cascaded shuffling (Thesis, 3.1.2)
// Each player shall shuffle the deck and encrypt it as a whole
deck = encryptDeck(shuffle(deck), self.keyPairs[config.cardCount].privateKey);
// The deck shall be passed on to the next player
deck = [
/* And then received from someone else */
];
// Locking (Thesis, 3.1.3)
// Each player shall decrypt the deck as a whole and encrypt its cards one by one
deck = encryptDeck(
decryptDeck(deck, self.keyPairs[config.cardCount].privateKey),
self.keyPairs.map(keyPair => keyPair.privateKey),
);
Drawing cards
The value of a card may be known by anyone in possession of its corresponding private keys it has been encrypted with.
// Drawing/opening (Thesis, 3.2-3.3)
// Choose an encrypted card at random
const cardEncrypted = deck[i];
// Find out the codeword of the card after all the required keys are available
const cardDecrypted = decryptCard(
cardEncrypted,
[self, ...opponents].map(player => player.keyPairs[i].privateKey),
);
// The resulting codeword index below represents a card ID
// If its value is -1, then someone has violated the protocol
const codewordIndex = cardCodewords.findIndex(cardCodeword =>
cardCodeword.equals(cardDecrypted),
);
API
Please see the API reference for further information.