restpki-client
Version:
Classes to consume Lacuna Software REST PKI
20 lines (15 loc) • 455 B
JavaScript
;
const {SignatureAlgorithm} = require('./pk-algorithms');
class SignatureAlgorithmAndValue {
constructor(model) {
this._algorithm = SignatureAlgorithm.getInstanceByApiModel(model['algorithmIdentifier']);
this._value = new Buffer(model['value'], 'base64');
}
get algorithm() {
return this._algorithm;
}
get value() {
return this._value;
}
}
exports.SignatureAlgorithmAndValue = SignatureAlgorithmAndValue;