UNPKG

pooja-docucomb-tink-crypto

Version:

A multi-language, cross-platform library that provides cryptographic APIs that are secure, easy to use correctly, and hard(er) to misuse.

15 lines (12 loc) 311 B
/** * @license * Copyright 2020 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {PbKeyset} from './proto'; describe('proto test', function() { it('field', function() { const keyset = new PbKeyset().setPrimaryKeyId(1); expect(keyset.getPrimaryKeyId()).toBe(1); }); });