Skip to content

Commit

Permalink
Revert "feat(Padding): exported globally"
Browse files Browse the repository at this point in the history
This reverts commit bcd775a.
  • Loading branch information
quentinvernot committed Jul 26, 2022
1 parent 6d59f81 commit fcc010b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/client-browser/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ class Tanker extends TankerCore {
}
}

export { errors, fromBase64, toBase64, prehashPassword, Padding } from '@tanker/core';
export { errors, fromBase64, toBase64, prehashPassword } from '@tanker/core';
export { Tanker };
export default Tanker;
2 changes: 1 addition & 1 deletion packages/client-node/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ class Tanker extends TankerCore {
}
}

export { errors, fromBase64, toBase64, prehashPassword, Padding } from '@tanker/core';
export { errors, fromBase64, toBase64, prehashPassword } from '@tanker/core';
export { Tanker };
export default Tanker;
2 changes: 0 additions & 2 deletions packages/core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import {
UpgradeRequired,
} from '@tanker/errors';

import { Padding } from '@tanker/crypto';
import { Tanker, optionsWithDefaults } from './Tanker';
import { Status, statuses } from './Session/status';
import { fromBase64, toBase64, prehashPassword } from './utils';
Expand Down Expand Up @@ -85,5 +84,4 @@ export {
statuses,
toBase64,
prehashPassword,
Padding,
};

0 comments on commit fcc010b

Please sign in to comment.