UNPKG

cdk-secure-string-parameter

Version:

SecureStringParameter Custom Resource for CDK. Enables storing encrypted secrets in version control and using those values in creating SSM SecureString Parameters

11 lines (10 loc) 305 B
import { randomFillSync } from 'crypto'; const rnds8Pool = new Uint8Array(256); let poolPtr = rnds8Pool.length; export default function rng() { if (poolPtr > rnds8Pool.length - 16) { randomFillSync(rnds8Pool); poolPtr = 0; } return rnds8Pool.slice(poolPtr, (poolPtr += 16)); }