Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blakeembrey/token-hash
Generate base64url encoding from the left-most half of the hash of a token.
https://github.com/blakeembrey/token-hash
code hash oidc openid-connect token
Last synced: 15 days ago
JSON representation
Generate base64url encoding from the left-most half of the hash of a token.
- Host: GitHub
- URL: https://github.com/blakeembrey/token-hash
- Owner: blakeembrey
- License: other
- Created: 2018-10-29T02:37:52.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-12T07:43:17.000Z (about 1 year ago)
- Last Synced: 2025-01-11T11:50:41.915Z (18 days ago)
- Topics: code, hash, oidc, openid-connect, token
- Language: TypeScript
- Size: 153 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Token Hash
[![NPM version][npm-image]][npm-url]
[![NPM downloads][downloads-image]][downloads-url]
[![Build status][travis-image]][travis-url]
[![Test coverage][coveralls-image]][coveralls-url]> Generate base64url encoding from the left-most half of the hash of a token.
> -- [OpenID Connect](https://openid.net/specs/openid-connect-core-1_0.html#HybridIDToken)## Installation
```
npm install token-hash --save
```## Usage
```js
import { tokenHash } from "token-hash";tokenHash("RS256", "aabbcc"); //=> "pbQy7gMHvn-iOqAEYfVO7g"
```## License
Apache 2.0
[npm-image]: https://img.shields.io/npm/v/token-hash.svg?style=flat
[npm-url]: https://npmjs.org/package/token-hash
[downloads-image]: https://img.shields.io/npm/dm/token-hash.svg?style=flat
[downloads-url]: https://npmjs.org/package/token-hash
[travis-image]: https://img.shields.io/travis/blakeembrey/token-hash.svg?style=flat
[travis-url]: https://travis-ci.org/blakeembrey/token-hash
[coveralls-image]: https://img.shields.io/coveralls/blakeembrey/token-hash.svg?style=flat
[coveralls-url]: https://coveralls.io/r/blakeembrey/token-hash?branch=master