Skip to content

Commit

Permalink
Merge pull request #144 from brpowell/bp/cipherAliasUpdate
Browse files Browse the repository at this point in the history
fix: Update SecureBuffer cipherName to use aes-256-cbc
  • Loading branch information
tnoonan-salesforce authored Jun 21, 2019
2 parents e21a428 + 8e66a0c commit 96ee134
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/secureBuffer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import { ensure, Optional } from '@salesforce/ts-types';
import * as crypto from 'crypto';

const cipherName = 'aes256';
const cipherName = 'aes-256-cbc';
const cipherSize = 32;

/**
Expand Down

0 comments on commit 96ee134

Please sign in to comment.