
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@peculiar/acme-data-dynamodb
Advanced tools
DynamoDB data module forAutomatic Certificate Management Environment (ACME) implementing RFC 8555 framework
@peculiar/acme-data-dynamodbDynamoDB data module forAutomatic Certificate Management Environment (ACME) implementing RFC 8555 framework.
npm install @peculiar/acme-data-dynamodb
import * as data from "@peculiar/acme-data-dynamodb";
import { container } from "tsyringe";
// Register services in dependency injection container
data.DependencyInjection.register(container, {
accessKeyId: "AWS_ACCESS_KEY_ID",
secretAccessKey: "AWS_ACCESS_KEY",
region: "local",
endpoint: "http://localhost:8000",
});
{
id: { "S": String },
index: { "S": "acct#" },
parentId: { "S": String }, //KeyThumbprint
createdAt: { "S": String },
termsOfServiceAgreed: { "BOOL": Boolean },
key: {
"M": {
key_ops: { "L": [{ "S": String }] },
ext: { "BOOL": Boolean },
kty: { "S": String },
alg: { "S": String },
e: { "S": String },
n: { "S": String }
...others
}
},
contacts: { "L": [{ "S": String }] },
status: { "S": String }
},
{
id: { "S": String },
index: { "S": "order#HashIdentifier#Data" },
parentId: { "S": String }, //AccountId
identifier: { "S": String },
expires: { "S": String },
authorizations: { "L": [{ "S": String }] },
status: { "S": String }
certificate: { "M": {
thumbprint: { "S": String },
id: { "S": String },
rawData: { "S": String },
status: { "S": String }
}
},
},
{
id: { "S": String }, //CertificateThumbprint
index: { "S": "cert#" },
parentId: { "S": String }, //OrderId
},
{
id: { "S": String },
index: { "S": "authz#HashIdentifier#Data" },
parentId: { "S": String }, //AccountId
status: { "S": String }
expires: { "S": String },
orders: { "L": [{ "S": String }] }, //OrderId[]
identifier: { "M": {
type: { "S": String },
value: { "S": String }
}
},
}
{
id: { "S": String },
index: { "S": "challenge#" },
parentId: { "S": String }, //AuthorizationId
validated: { "S": String },
errorId: { "S": String },
type: { "S": String },
status: { "S": String },
token: { "S": String }
}
FAQs
DynamoDB data module forAutomatic Certificate Management Environment (ACME) implementing RFC 8555 framework
We found that @peculiar/acme-data-dynamodb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.