CHAPTER 06

Security Architecture & Encryption

WIA-MENTAL-015: Mental Data Privacy Standard

Building Fortress: Security for Mental Health Data

Privacy policies and legal compliance mean nothing if mental health data isn't adequately secured. A single breach can expose the most intimate details of patients' lives, causing psychological harm, discrimination, and erosion of trust in mental healthcare. This chapter explores security architectures, encryption strategies, and defense-in-depth approaches specifically tailored for protecting mental health information.

Security for mental health data requires layered defenses—encryption at rest and in transit, strong access controls, network segmentation, intrusion detection, and incident response capabilities. Each layer provides protection, and together they create resilient systems that can withstand both external attacks and insider threats.

Defense-in-Depth Architecture

Defense-in-depth means implementing multiple layers of security controls. If one layer fails, others provide backup protection. For mental health systems, this approach is essential given the high value and sensitivity of the data.

LayerControlsPurposeMental Health Specifics
PerimeterFirewalls, DDoS protection, WAFPrevent unauthorized network accessProtect telehealth platforms; prevent service disruption during crisis
NetworkNetwork segmentation, IDS/IPS, VPNsContain breaches; monitor for attacksIsolate psychotherapy notes database; separate research networks
ApplicationInput validation, authentication, session managementPrevent application-level attacksProtect patient portals; secure therapy chat applications
DataEncryption, tokenization, maskingProtect data even if other layers breachedEncrypt all mental health data; separate encryption for psychotherapy notes
EndpointEDR, mobile device management, secure workstationsProtect devices accessing dataSecure therapist laptops; protect teletherapy devices
PhysicalFacility access control, surveillancePrevent physical access to systemsSecure server rooms; protect backup tapes
PeopleSecurity awareness training, background checksReduce human error and insider threatsMental health stigma training; need-to-know access

Mental Health System Architecture Example

// Secure Architecture for Mental Health EHR class MentalHealthEHRArchitecture { // Multi-tier architecture with security at each layer architecture = { // Tier 1: Presentation / User Interface presentationLayer: { components: ['Patient Portal', 'Clinician Workstation', 'Mobile Apps'], security: { authentication: 'MFA_REQUIRED', sessionManagement: 'SHORT_TIMEOUTS', // 15 minutes for mental health inputValidation: 'STRICT', outputEncoding: 'XSS_PREVENTION', csp: 'CONTENT_SECURITY_POLICY_ENFORCED', https: 'TLS_1_3_ONLY' }, mentalHealthFeatures: { discreteMode: true, // Hide sensitive info from shoulder surfing panicButton: true, // Quickly hide screen in crisis situations offlineMode: 'ENCRYPTED_LOCAL_STORAGE' // For therapy in areas with poor connectivity } }, // Tier 2: Application / Business Logic applicationLayer: { components: [ 'Clinical Workflow Engine', 'Consent Management System', 'Psychotherapy Notes Module', 'Research Data Export Service' ], security: { serviceAuthentication: 'MUTUAL_TLS', authorization: 'ROLE_BASED_ACCESS_CONTROL', apiGateway: 'RATE_LIMITING_AND_THREAT_DETECTION', secretsManagement: 'VAULT_INTEGRATION', logging: 'COMPREHENSIVE_AUDIT_LOGS' }, dataFlowControls: { psychotherapyNotes: 'SEPARATE_SERVICE', // Isolated from other clinical data dataExport: 'REQUIRES_TWO_PERSON_RULE', bulkAccess: 'FLAGGED_FOR_REVIEW', crossBorderTransfer: 'BLOCKED_BY_DEFAULT' } }, // Tier 3: Data / Storage dataLayer: { components: { primaryDatabase: { type: 'Encrypted PostgreSQL', encryption: 'AES_256_GCM', keyManagement: 'HSM_BACKED', backups: 'ENCRYPTED_OFFSITE', replication: 'ENCRYPTED_TLS' }, psychotherapyNotesDB: { type: 'Separate Encrypted Database', encryption: 'AES_256_GCM_WITH_ADDITIONAL_KEY', access: 'RESTRICTED_TO_NOTE_CREATOR', backup: 'SEPARATE_BACKUP_SYSTEM', location: 'SEPARATE_SERVER' }, documentStorage: { type: 'Encrypted Object Storage', encryption: 'SERVER_SIDE_WITH_CUSTOMER_KEYS', accessControl: 'IAM_POLICIES', versioning: 'ENABLED' } }, security: { encryptionAtRest: 'ALL_DATA_ENCRYPTED', encryptionInTransit: 'TLS_1_3', keyRotation: 'ANNUAL', databaseFirewall: 'ENABLED', queryMonitoring: 'SQL_INJECTION_DETECTION' } }, // Network Security networkSecurity: { segmentation: { dmz: 'Patient portal and public-facing services', appTier: 'Application servers', dataTier: 'Databases', managementTier: 'Admin and monitoring systems', researchTier: 'Isolated network for research data' }, controls: { firewalls: 'ZERO_TRUST_MODEL', ids_ips: 'DEPLOYED_AT_ALL_BOUNDARIES', networkAccessControl: '802_1X', ddosProtection: 'CLOUD_BASED', vpn: 'REQUIRED_FOR_REMOTE_ACCESS' } } }; // Security policy enforcement enforceSecurity(request: DataAccessRequest): AccessDecision { // Layer 1: Network check if (!this.isFromAuthorizedNetwork(request.sourceIP)) { return { denied: true, reason: 'Unauthorized network' }; } // Layer 2: Authentication if (!this.isAuthenticated(request.user) || !this.hasMFA(request)) { return { denied: true, reason: 'Authentication required' }; } // Layer 3: Authorization if (!this.isAuthorized(request.user, request.resource)) { return { denied: true, reason: 'Insufficient permissions' }; } // Layer 4: Consent check if (!this.hasPatientConsent(request)) { return { denied: true, reason: 'Patient consent required' }; } // Layer 5: Contextual access control if (this.isAnomalous(request)) { return { denied: true, reason: 'Anomalous access pattern flagged' }; } // All layers passed - grant access with audit this.logAccess(request); return { granted: true }; } }

Encryption Strategies

Encryption is fundamental to mental health data security. However, not all encryption is created equal. Implementing encryption requires careful consideration of encryption algorithms, key management, and where encryption occurs in the data lifecycle.

Encryption at Rest

Mental health data at rest—stored in databases, file systems, backups—must be encrypted to protect against theft of physical media, unauthorized database access, and insider threats.

ApproachDescriptionAdvantagesConsiderations
Transparent Database Encryption (TDE)Database encrypts all data files transparentlyEasy to implement; no application changesKeys often stored with database; doesn't protect from DB admin
Column-Level EncryptionSpecific sensitive columns encryptedGranular protection; can have different keys per columnApplication must handle encryption/decryption; performance impact
Application-Level EncryptionApplication encrypts before writing to databaseDatabase sees only ciphertext; protects from DB adminSearching encrypted data difficult; key management complex
File-System EncryptionEntire file system encryptedProtects all files; operating system managesKeys available when system booted; less granular
Hardware Security Module (HSM)Cryptographic operations performed in tamper-resistant hardwareHighest security for keys; compliance friendlyCost; complexity
// Application-Level Encryption for Mental Health Data class MentalHealthDataEncryption { // Encrypt sensitive field before storing async encryptField( plaintext: string, fieldType: string, patientId: string ): Promise { // Get patient-specific encryption key const dataKey = await this.getDataEncryptionKey(patientId); // Use AES-256-GCM for authenticated encryption const iv = crypto.randomBytes(16); // Initialization vector const cipher = crypto.createCipheriv('aes-256-gcm', dataKey, iv); let encrypted = cipher.update(plaintext, 'utf8', 'base64'); encrypted += cipher.final('base64'); // Get authentication tag const authTag = cipher.getAuthTag(); return { ciphertext: encrypted, iv: iv.toString('base64'), authTag: authTag.toString('base64'), algorithm: 'AES-256-GCM', keyVersion: await this.getKeyVersion(patientId), encryptedAt: new Date() }; } // Decrypt sensitive field when authorized async decryptField( encryptedField: EncryptedField, patientId: string ): Promise { // Verify authorization before decrypting if (!await this.isAuthorizedToDecrypt(patientId)) { throw new Error('Unauthorized decryption attempt'); } // Get the right version of the key const dataKey = await this.getDataEncryptionKey( patientId, encryptedField.keyVersion ); const iv = Buffer.from(encryptedField.iv, 'base64'); const authTag = Buffer.from(encryptedField.authTag, 'base64'); const decipher = crypto.createDecipheriv('aes-256-gcm', dataKey, iv); decipher.setAuthTag(authTag); let decrypted = decipher.update(encryptedField.ciphertext, 'base64', 'utf8'); decrypted += decipher.final('utf8'); // Log decryption for audit await this.logDecryption(patientId, encryptedField); return decrypted; } // Key management with key encryption keys (KEK) async getDataEncryptionKey( patientId: string, version?: number ): Promise { // Data keys are themselves encrypted with a key encryption key const encryptedDataKey = await this.keyStore.getEncryptedKey( patientId, version ); // Decrypt the data key using KEK from HSM const kek = await this.hsm.getKeyEncryptionKey(); const dataKey = await this.decrypt WithKEK(encryptedDataKey, kek); return dataKey; } // Separate encryption for psychotherapy notes async encryptPsychotherapyNote( noteContent: string, therapistId: string, patientId: string ): Promise { // Use a separate key hierarchy for psychotherapy notes const noteKey = await this.getPsychotherapyNoteKey(therapistId, patientId); // Double encryption for extra protection const firstEncryption = await this.encryptField( noteContent, 'PSYCHOTHERAPY_NOTE', patientId ); // Second layer with therapist-specific key const secondEncryption = await this.encryptWithTherapistKey( JSON.stringify(firstEncryption), therapistId ); return { doubleEncrypted: secondEncryption, therapistId: therapistId, patientId: patientId, canDecrypt: [therapistId], // Only therapist can decrypt requiresSpecialAuthorization: true }; } }

Access Control and Authentication

Even with strong encryption, access controls determine who can access mental health data. Multi-factor authentication, role-based access control, and principle of least privilege are essential.

Role-Based Access Control (RBAC) for Mental Health

// Mental Health RBAC Implementation interface MentalHealthRole { roleId: string; roleName: string; permissions: Permission[]; dataAccessScope: AccessScope; constraints: AccessConstraint[]; } const mentalHealthRoles: MentalHealthRole[] = [ { roleId: 'PSYCHIATRIST', roleName: 'Psychiatrist', permissions: [ 'READ_PATIENT_DEMOGRAPHICS', 'READ_MEDICAL_HISTORY', 'READ_MENTAL_HEALTH_DIAGNOSES', 'WRITE_DIAGNOSES', 'PRESCRIBE_MEDICATIONS', 'READ_THERAPY_SUMMARIES', // Can read summaries but not psychotherapy notes 'WRITE_CLINICAL_NOTES' ], dataAccessScope: 'ASSIGNED_PATIENTS_ONLY', constraints: [ 'CANNOT_ACCESS_PSYCHOTHERAPY_NOTES', 'REQUIRES_PATIENT_CONSENT_FOR_RESEARCH_USE' ] }, { roleId: 'THERAPIST', roleName: 'Licensed Therapist', permissions: [ 'READ_PATIENT_DEMOGRAPHICS', 'READ_MENTAL_HEALTH_DIAGNOSES', 'READ_ASSIGNED_PSYCHOTHERAPY_NOTES', // Only own notes 'WRITE_PSYCHOTHERAPY_NOTES', 'WRITE_CLINICAL_NOTES', 'MANAGE_TREATMENT_PLAN' ], dataAccessScope: 'ASSIGNED_PATIENTS_ONLY', constraints: [ 'OWN_PSYCHOTHERAPY_NOTES_ONLY', 'CANNOT_ACCESS_OTHER_THERAPIST_NOTES', 'REQUIRES_MFA' ] }, { roleId: 'CASE_MANAGER', roleName: 'Case Manager', permissions: [ 'READ_PATIENT_DEMOGRAPHICS', 'READ_TREATMENT_PLAN', 'READ_DIAGNOSIS_SUMMARY', // High-level only 'COORDINATE_CARE', 'ACCESS_COMMUNITY_RESOURCES' ], dataAccessScope: 'ASSIGNED_PATIENTS_ONLY', constraints: [ 'NO_PSYCHOTHERAPY_NOTES', 'NO_DETAILED_CLINICAL_NOTES', 'SUMMARY_LEVEL_ACCESS_ONLY' ] }, { roleId: 'RESEARCHER', roleName: 'Clinical Researcher', permissions: [ 'READ_DEIDENTIFIED_DATA', 'EXPORT_ANONYMIZED_DATA', 'RUN_AGGREGATE_QUERIES' ], dataAccessScope: 'RESEARCH_DATASET_ONLY', constraints: [ 'NO_IDENTIFIED_DATA', 'IRB_APPROVAL_REQUIRED', 'CANNOT_ATTEMPT_REIDENTIFICATION', 'EXPORT_LOGGED_AND_REVIEWED' ] }, { roleId: 'BILLING_STAFF', roleName: 'Billing Specialist', permissions: [ 'READ_PATIENT_DEMOGRAPHICS', 'READ_INSURANCE_INFO', 'READ_DIAGNOSIS_CODES', // For billing only 'READ_PROCEDURE_CODES', 'SUBMIT_CLAIMS' ], dataAccessScope: 'BILLING_DATA_ONLY', constraints: [ 'NO_CLINICAL_NOTES', 'NO_PSYCHOTHERAPY_NOTES', 'MINIMUM_NECESSARY_FOR_BILLING' ] } ]; class AccessControlEngine { // Check if user can perform action on resource async checkAccess( user: User, action: string, resource: Resource ): Promise { // Get user's roles const userRoles = await this.getUserRoles(user.id); // Check each role for (const role of userRoles) { // Does role have the required permission? if (!role.permissions.includes(action)) { continue; // Try next role } // Check data access scope if (!this.checkScope(user, resource, role.dataAccessScope)) { continue; } // Check constraints const constraintViolation = await this.checkConstraints( user, resource, role.constraints ); if (constraintViolation) { return { granted: false, reason: `Constraint violation: ${constraintViolation}` }; } // Access granted return { granted: true, role: role.roleName, conditions: this.extractConditions(role) }; } // No role granted access return { granted: false, reason: 'User does not have required permissions' }; } // Special handling for psychotherapy notes checkPsychotherapyNoteAccess( user: User, note: PsychotherapyNote ): AccessDecision { // Only the creating therapist can access without authorization if (note.createdBy === user.id) { return { granted: true, reason: 'Note creator' }; } // Check for specific patient authorization const authorization = this.getPatientAuthorization( note.patientId, user.id ); if (!authorization || !authorization.includesPsychotherapyNotes) { return { granted: false, reason: 'Specific authorization for psychotherapy notes required' }; } return { granted: true, reason: 'Patient authorization' }; } }

Key Takeaways

  • Defense-in-depth architecture provides multiple layers of security, ensuring that if one layer fails, others provide protection
  • Encryption at rest protects mental health data from theft, unauthorized access, and insider threats; application-level encryption provides strongest protection
  • Encryption in transit using TLS 1.3 protects mental health data during transmission, critical for telehealth and remote access
  • Role-based access control (RBAC) ensures users have only the minimum permissions necessary for their role
  • Psychotherapy notes require special security measures including separate encryption, restricted access, and enhanced audit logging
  • Multi-factor authentication (MFA) should be required for all access to mental health data, especially for remote access and administrative functions
  • Security architecture must balance protection with usability—overly restrictive security can impede clinical care and patient safety

Review Questions

  1. Explain the defense-in-depth security model. Why is it particularly important for mental health data?
  2. Compare and contrast different encryption-at-rest approaches (TDE, column-level, application-level). Which provides the strongest protection and why?
  3. What is the purpose of using a key encryption key (KEK) to encrypt data encryption keys (DEK)? How does this improve security?
  4. Describe how role-based access control should be implemented for a mental health system. Provide examples of appropriate roles and permissions.
  5. Why do psychotherapy notes require separate security measures beyond those applied to other clinical data?
  6. Explain how multi-factor authentication enhances security for mental health systems. What factors should be used?
  7. Design a secure architecture for a teletherapy platform that allows encrypted video sessions, secure messaging, and storage of session notes. What security controls would you implement at each layer?
  8. How can organizations balance security requirements with the need for timely access to mental health data in emergency situations?

弘益人間 · Benefit All Humanity

Security is not just about technology—it's about trust. When we implement robust security for mental health data, we demonstrate our commitment to protecting those who have entrusted us with their most private thoughts and struggles. This trust is the foundation upon which effective mental healthcare is built.

The principle of 弘익人間 reminds us that security benefits all humanity. By protecting individual mental health data, we protect the societal trust in mental healthcare systems. When people trust that their information will be secure, they are more likely to seek help, engage authentically in treatment, and achieve better outcomes. Thus, security serves not just individual privacy, but the collective good.

Korea Digital Transformation Detailed Mapping

Korea operates digital transformation through a comprehensive governance system. Digital Government: Digital Platform Government Committee (established September 2022, under the President)·Ministry of the Interior and Safety Digital Government Bureau·e-Government Support Center·Gov.kr·National Citizen Service·KDIS (Korea Digital Information Society)·NIA (National Information Society Agency)·MOIS (Ministry of the Interior and Safety). K-DNS Infrastructure: Korea Internet & Security Agency (KISA) Korea Internet Center·KISA DNS Root Server·KRNIC (Korea Network Information Center)·BGP Korea·National Cyber Security Center (NCSC)·KCC (Korea Communications Commission)·MSIT (Ministry of Science and ICT)·NIA·NIPA. Korean Cloud Infrastructure: KT Cloud·NAVER Cloud (NCloud)·Samsung SDS Cloud·LG U+ Cloud·NHN Cloud·Kakao Enterprise Cloud·SK Telecom Cloud·KISA Cloud Security Assurance Program (CSAP)·KCMVP-validated cloud·ISMS-P (Information Security & Personal Information Management System). Korean Security Certifications: KISA ISMS-P certification·KCMVP (Korean Cryptographic Module Validation Program)·NIS (National Intelligence Service) "National Cryptographic Technology Operation Standards"·NCSC "National Cyber Security Strategy 2024-2028"·CC (Common Criteria) Korean evaluation bodies·EAL4·EAL5·KS X ISO/IEC 15408·19790·24759 Korean Profile. Korean Data Standards: NIA AI Hub·National Data Standardization Committee·Statistics Korea (KOSTAT)·MyData 4 Designated Combination Specialists (Samsung SDS, KICI, KOSTAT, KFTC)·National Institute of Korean Language·National Law Information Center·National Spatial Information Platform·National Spatial Data Center·Korean Spatial Information Standards. Finance and Fintech Standards: FSC (Financial Services Commission)·FSS (Financial Supervisory Service)·FIU (Financial Intelligence Unit)·BOK (Bank of Korea)·FSEC (Financial Security Institute)·KFTC (Korea Financial Telecommunications)·KSD (Korea Securities Depository)·KRX (Korea Exchange) 8-agency cooperation. 5G/6G Communications Infrastructure: 5G subscribers 35 million (2024)·5G base stations 350,000·6G commercialization target 2028·5G dedicated networks 16 operators·6G Acceleration Council (MSIT, 2024). K-Content: KOCCA (Korea Creative Content Agency)·MCST (Ministry of Culture, Sports and Tourism)·KCA (Korea Communications Agency)·Korea Culture Information Service Agency·Korean Film Archive·Korea Publishing Industry Promotion Agency. Data 3 Acts (Personal Information Protection Act·Credit Information Act·Telecommunications Network Act, 2020 enforcement)·Data Industry Act (2021)·Public Data Act (2013)·AI Framework Act (2026)·Digital Platform Government Framework Act (2024 proposed) — Korea digital transformation core legislation.

Korea Industrial, Research, Education Infrastructure Mapping

Korea operates its industrial ecosystem and standardization system through the following core infrastructure. Korea Top 5 Groups: Samsung, Hyundai Motor, LG, SK, Lotte. Each group operates standardization committees and ISO/IEC TC Korean secretariats. Samsung Electronics (semiconductors, displays, home appliances, telecom)·Hyundai Motor (automobiles, mobility)·LG Electronics (home appliances, displays, OLED)·SK hynix (memory)·LG Energy Solution·Samsung SDI (batteries)·POSCO Future M (materials)·Hyundai Mobis (parts). Korean IT Big Tech: NAVER (search, cloud, AI HyperCLOVA)·Kakao (messenger, payment, mobility, banking)·Coupang (e-commerce, logistics)·Karrot Market·Toss·Woowa Brothers. Korea Telcos: SK Telecom·KT·LG U+. 5G·5G dedicated networks·B2B cloud·AI businesses operating. Korea Top 7 Research Universities: Seoul National University·KAIST·POSTECH·Yonsei University·Korea University·UNIST·DGIST·GIST. All serve as standardization R&D bases and ISO/IEC/IEEE Korean chairs. Korea Government-affiliated National Research Institutes (26): KIST, KAERI, KIMM, KIER, KFRI, KRICT, KRIBB, KARI, KASI, KIGAM, KICT, KISTI, KETI, ETRI, NIMS, KIMS, KISDI, KOTRA, STEPI, KOEN, KICCE, KIET, KIPF, KIHASA, KICJ, KLRI. Korea Industrial Complexes / Tech Valleys: Pangyo Techno Valley·Dongtan·Gwanggyo·Songdo IBD·Yeouido·Gangnam·Sihwa·Banwol·Gumi·Ulsan·Changwon·Geoje·Yeosu·Onsan·Cheongju·Iksan·Gwangyang·POSCO Gwangyang Steel Mill·Asan Bay·Seosan·Songdo·Incheon Airport·Sejong·Cheongna·Geomdan. Korea Trade and Finance Infrastructure: Korea International Trade Association (KITA)·Korea Trade-Investment Promotion Agency (KOTRA)·Export-Import Bank of Korea (KEXIM)·Bank of Korea·Kookmin Bank·Shinhan·Hana·Woori·NH Nonghyup·IBK Industrial Bank·SC First Bank·Citi Bank Korea·HSBC Korea·DBS Korea — 14 Korean major banks and foreign banks. Korea K-POP / K-Content: HYBE·SM·YG·JYP 4 major entertainment companies·CJ ENM·tvN·MBC·KBS·SBS·EBS·YTN·Yonhap News TV·JTBC Korean broadcasting·NETFLIX Korea·Disney Plus·TVING·Wavve·Watcha·Coupang Play. Korea Gaming Industry: Nexon·NCsoft·Krafton·Netmarble·Kakao Games·Pearl Abyss·Com2uS·Gamevil·NHN·Smilegate·Webzen. Korea Automotive / Battery: Hyundai Motor·Kia·Genesis·LG Energy Solution·Samsung SDI·SK On·POSCO Future M·EcoPro·L&F battery cathode material suppliers. Korea Semiconductor: Samsung Electronics (HBM3E·HBM4)·SK hynix (HBM3E 12-Hi)·DB HiTek·SK siltron·SK Enpulse·Dongjin Semichem·Seoul Semiconductor·Simmtech·Samsung Display·LG Display.

Korea Standardization Infrastructure Mapping

Korea operates a comprehensive standards governance system through inter-ministerial cooperation. National Standards Council (under Prime Minister's Office, per Framework Act on National Standards Article 5) coordinates KATS (Korean Agency for Technology and Standards), MFDS (Ministry of Food and Drug Safety), MOTIE (Ministry of Trade, Industry and Energy), MSIT (Ministry of Science and ICT), MOIS (Ministry of the Interior and Safety), MOE (Ministry of Environment), MOHW (Ministry of Health and Welfare), MND (Ministry of National Defense), MCST (Ministry of Culture, Sports and Tourism), MOFA (Ministry of Foreign Affairs), MOJ (Ministry of Justice), and FSC (Financial Services Commission). Accreditation and Testing: KOLAS (Korea Laboratory Accreditation Scheme) accredits 800+ testing laboratories. KAS (Korea Accreditation System) accredits 50+ certification bodies. KTC (Korea Testing Certification), KTR (Korea Testing & Research Institute), KTL (Korea Testing Laboratory), and KCL (Korea Conformity Laboratories) provide conformance testing. Telecom and Cyber: KCC (Korea Communications Commission), KCA (Korea Communications Agency), TTA (Telecommunications Technology Association), IITP (Institute for Information & Communications Technology Planning & Evaluation), NIPA (National IT Industry Promotion Agency), KISA (Korea Internet & Security Agency), KCMVP (Korea Cryptographic Module Validation Program), NIS (National Intelligence Service), NSR (National Security Research Institute), and NCSC (National Cyber Security Center). National R&D Centers: KIST, ETRI, KAIST, Seoul National University, Yonsei University, Korea University, POSTECH, UNIST, GIST, DGIST, KISTI, KIER, KIMM, KRICT, KFRI, KRIBB. International Standards Cooperation: ISO TC/SC Korean secretariats, IEC TC/SC Korean secretariats, ITU-T Study Group Korean chairs, 3GPP RAN/SA Korean chairs, IEEE 802 Korean chairs, W3C Korea office, OASIS Korea office, IETF Korea cooperation, OECD CSTP, UN ESCAP, APEC SCSC Korean cooperation. Korean Industrial Standards (KS) Catalog: KS X (Information) 25,000+, KS A (Basic) 15,000+, KS B (Machinery) 25,000+, KS C (Electrical) 18,000+, KS D (Metallurgy) 12,000+, KS E (Mining) 5,000+, KS F (Construction) 18,000+, KS H (Food) 8,000+, KS I (Environment) 5,000+, KS J (Biology) 3,000+, KS K (Textile) 15,000+, KS L (Ceramics) 7,000+, KS M (Chemistry) 12,000+, KS P (Medical) 5,000+, KS Q (Quality Mgmt) 4,000+, KS R (Transport) 12,000+, KS S (Service) 3,000+, KS T (Packaging) 4,000+, KS V (Shipbuilding) 5,000+, KS W (Aerospace) 3,000+ — totaling 220,000+ Korean Industrial Standards. Key Acts: Personal Information Protection Act (Act 19234, effective Sept 15, 2024), Electronic Government Act, Electronic Signature Act, Act on Promotion of Information and Communications Network Utilization and Information Protection, Information and Communications Infrastructure Protection Act, Data Industry Act, Public Data Act, AI Framework Act (Act 20212, effective July 2026), Industrial Technology Innovation Promotion Act, Framework Act on Science and Technology — 70+ Korean standardization-related laws.