Files
certd/packages/core/acme-client/src/index.js
T

50 lines
1.0 KiB
JavaScript
Raw Normal View History

/**
* acme-client
*/
2024-11-12 12:15:06 +08:00
import AcmeClinet from './client.js'
export const Client = AcmeClinet
/**
* Directory URLs
*/
2024-11-12 12:15:06 +08:00
export const directory = {
buypass: {
staging: 'https://api.test4.buypass.no/acme/directory',
production: 'https://api.buypass.com/acme/directory',
},
google: {
staging: 'https://dv.acme-v02.test-api.pki.goog/directory',
production: 'https://dv.acme-v02.api.pki.goog/directory',
},
letsencrypt: {
staging: 'https://acme-staging-v02.api.letsencrypt.org/directory',
production: 'https://acme-v02.api.letsencrypt.org/directory',
},
zerossl: {
2024-07-04 01:14:09 +08:00
staging: 'https://acme.zerossl.com/v2/DV90',
production: 'https://acme.zerossl.com/v2/DV90',
},
};
/**
* Crypto
*/
2024-11-12 12:15:06 +08:00
export * as crypto from './crypto/index.js'
export * from './crypto/forge.js'
/**
* Axios
*/
2024-11-12 12:15:06 +08:00
export * from './axios.js'
export * as agents from './agents.js'
/**
* Logger
*/
2024-11-12 12:15:06 +08:00
export * from './logger.js'
export * from './verify.js'
export * from './error.js'