Securing PII Data Capture - Admissions
Saral supports handling secure storage of PII data by providing configurable field encryption of PII schema with different data security levels like encryption, encryption+masking, encryption+hashing.
Encryption: AES 256
Hashing: SHA 256"encryptionSchemas": {
"admissions": {
"studentAadharNumber": "ENCRYPTANDMASK",
"studentFirstname": "ENCRYPT",
"studentSurname": "ENCRYPT",
"studentDateOfBirth": "ENCRYPT",
"studentAddress": "ENCRYPT",
"studentBlock": "ENCRYPT",
"studentDistrict": "ENCRYPT",
"guardianFirstname": "ENCRYPT",
"guardianSurname": "ENCRYPT",
"fatherName": "ENCRYPT",
"fatherContactDetails_phone1": "ENCRYPTANDMASK",
"fatherContactDetails_phone2": "ENCRYPTANDMASK",
"motherName": "ENCRYPT",
"motherContactDetails_phone1": "ENCRYPTANDMASK",
"motherContactDetails_phone2": "ENCRYPTANDMASK",
"rollNumber": "ENCRYPTANDHASH",
"addressOnRationCard_address": "ENCRYPTANDHASH",
"addressOnRationCard_ward": "ENCRYPTANDHASH",
"addressOnRationCard_block": "ENCRYPTANDHASH",
"addressOnRationCard_district": "ENCRYPTANDHASH",
"predictionInfo": {
"trainingData": "ENCRYPTARRAY"
}
}
}Last updated
Was this helpful?