Add node modules and compiled JavaScript from main (#54)
Co-authored-by: Oliver King <oking3@uncc.edu>
This commit is contained in:
committed by
GitHub
parent
4a983766a0
commit
52d71d28bd
29
node_modules/jose/lib/help/asn1/index.js
generated
vendored
Normal file
29
node_modules/jose/lib/help/asn1/index.js
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
const asn1 = require('@panva/asn1.js')
|
||||
|
||||
const types = new Map()
|
||||
|
||||
const AlgorithmIdentifier = asn1.define('AlgorithmIdentifier', require('./algorithm_identifier'))
|
||||
types.set('AlgorithmIdentifier', AlgorithmIdentifier)
|
||||
|
||||
const ECPrivateKey = asn1.define('ECPrivateKey', require('./ec_private_key'))
|
||||
types.set('ECPrivateKey', ECPrivateKey)
|
||||
|
||||
const PrivateKeyInfo = asn1.define('PrivateKeyInfo', require('./private_key_info')(AlgorithmIdentifier))
|
||||
types.set('PrivateKeyInfo', PrivateKeyInfo)
|
||||
|
||||
const PublicKeyInfo = asn1.define('PublicKeyInfo', require('./public_key_info')(AlgorithmIdentifier))
|
||||
types.set('PublicKeyInfo', PublicKeyInfo)
|
||||
|
||||
const PrivateKey = asn1.define('PrivateKey', require('./private_key'))
|
||||
types.set('PrivateKey', PrivateKey)
|
||||
|
||||
const OneAsymmetricKey = asn1.define('OneAsymmetricKey', require('./one_asymmetric_key')(AlgorithmIdentifier, PrivateKey))
|
||||
types.set('OneAsymmetricKey', OneAsymmetricKey)
|
||||
|
||||
const RSAPrivateKey = asn1.define('RSAPrivateKey', require('./rsa_private_key'))
|
||||
types.set('RSAPrivateKey', RSAPrivateKey)
|
||||
|
||||
const RSAPublicKey = asn1.define('RSAPublicKey', require('./rsa_public_key'))
|
||||
types.set('RSAPublicKey', RSAPublicKey)
|
||||
|
||||
module.exports = types
|
Reference in New Issue
Block a user