Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
The MIT License (MIT)

Copyright (c) 2016 - present [Anvil Research, Inc.](http://anvil.io)
Copyright (c) 2016 [Anvil Research, Inc.](http://anvil.io)
Copyright (c) 2017-2019 The Solid Project

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,7 @@ $ npm run karma

## MIT License

[The MIT License](LICENSE.md)

Copyright (c) 2016 Anvil Research, Inc.
Copyright (c) 2017-2019 The Solid Project
2 changes: 1 addition & 1 deletion examples/HS256.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const crypto = require('@trust/webcrypto')
const crypto = require('isomorphic-webcrypto')
const JWA = require('../src/jose/JWA')

let key
Expand Down
2 changes: 1 addition & 1 deletion examples/JWS.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
require('../src/formats')
const crypto = require('@trust/webcrypto')
const crypto = require('isomorphic-webcrypto')
const JWT = require('../src/jose/JWT')

let key, jwt
Expand Down
2 changes: 1 addition & 1 deletion examples/RS256.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const crypto = require('@trust/webcrypto')
const crypto = require('isomorphic-webcrypto')
const JWA = require('../src/jose/JWA')

let privateKey, publicKey
Expand Down
Loading