| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import { __decorate } from "tslib";
- import { AsnProp, AsnConvert, AsnPropTypes } from "@peculiar/asn1-schema";
- import { AlgorithmIdentifier } from "@peculiar/asn1-x509";
- import { id_mgf1, id_RSASSA_PSS } from "../object_identifiers.js";
- import { sha1, mgf1SHA1 } from "../algorithms.js";
- export class RsaSaPssParams {
- hashAlgorithm = new AlgorithmIdentifier(sha1);
- maskGenAlgorithm = new AlgorithmIdentifier({
- algorithm: id_mgf1,
- parameters: AsnConvert.serialize(sha1),
- });
- saltLength = 20;
- trailerField = 1;
- constructor(params = {}) {
- Object.assign(this, params);
- }
- }
- __decorate([
- AsnProp({
- type: AlgorithmIdentifier,
- context: 0,
- defaultValue: sha1,
- })
- ], RsaSaPssParams.prototype, "hashAlgorithm", void 0);
- __decorate([
- AsnProp({
- type: AlgorithmIdentifier,
- context: 1,
- defaultValue: mgf1SHA1,
- })
- ], RsaSaPssParams.prototype, "maskGenAlgorithm", void 0);
- __decorate([
- AsnProp({
- type: AsnPropTypes.Integer,
- context: 2,
- defaultValue: 20,
- })
- ], RsaSaPssParams.prototype, "saltLength", void 0);
- __decorate([
- AsnProp({
- type: AsnPropTypes.Integer,
- context: 3,
- defaultValue: 1,
- })
- ], RsaSaPssParams.prototype, "trailerField", void 0);
- export const RSASSA_PSS = new AlgorithmIdentifier({
- algorithm: id_RSASSA_PSS,
- parameters: AsnConvert.serialize(new RsaSaPssParams()),
- });
|