14 lines
294 B
JavaScript
14 lines
294 B
JavaScript
import CryptoJS from 'crypto-js';
|
|
import appConfig from '../../config/app.js';
|
|
|
|
const organizationId = () => {
|
|
const key = appConfig.encryptionKey;
|
|
const hash = CryptoJS.SHA3(key, { outputLength: 256 }).toString(
|
|
CryptoJS.enc.Hex
|
|
);
|
|
|
|
return hash;
|
|
};
|
|
|
|
export default organizationId;
|