0.6.1 • Published 4 months ago

@ssc-half-light/message v0.6.1

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
github
Last release
4 months ago

message

tests Socket Badge module license

Create and verify signed messages with Fission libraries.

install

npm i @ssc-half-light/message

example

create a message

import { create } from '@ssc-half-light/message'

// const { crypto } = program.components
await create(crypto, { type: 'test', value: 'wooo' })

The returned object has a format like

{
    author: 'did:key:...',
    signature: '123abc',
    ...message
}

!NOTE
the message will have the fields author and signature appended to it. author is the DID that was used to sign this message. It is read by verify(message).

import { test } from '@nichoth/tapzero'
import { create } from '@ssc-half-light/message'

let req
test('create message', async t => {
    // program is from
    // const program = await odd.program({
    //   ...config
    // })
    const { crypto } = program.components

    req = await create(crypto, { type: 'test', value: 'wooo' })
    t.ok(req, 'message was created')
    t.equal(typeof req.signature, 'string', 'should have a signature')
    t.ok(req.author.includes, 'did:key:', 'should have an author field')
    t.equal(req.type, 'test', 'should have the properties we passed in')
})

verify a message

import { test } from '@nichoth/tapzero'
import { verify } from '@ssc-half-light/message'

test('verify a message', async t => {
    // `req` is the message we created above
    const isOk = await verify(req)
    t.equal(isOk, true, 'should return true for a valid message')
})
0.6.1

4 months ago

0.6.0

4 months ago

0.5.20

5 months ago

0.5.19

5 months ago

0.5.17

5 months ago

0.5.15

5 months ago

0.5.14

5 months ago

0.5.13

5 months ago

0.5.12

7 months ago

0.5.11

7 months ago

0.5.10

7 months ago

0.5.9

7 months ago

0.5.8

7 months ago

0.5.4

8 months ago