Short answer
Encryption changes the data itself so that content should be unreadable without a key. Password protection describes a gate that asks for a secret before permitting an action; underneath, it may use strong encryption or merely a software restriction. Access permissions make a system decide which identity may view, edit, share or delete. The three can be combined, but they are not interchangeable. Do not stop at “does it have a password?” Ask who stores the data, who controls keys, whether protection survives copying, and what administrators can access.
Encryption protects the representation of the data
NIST defines encryption as a cryptographic transformation of plaintext into ciphertext, using an algorithm and key to conceal the original meaning. Decryption reverses that transformation. NIST: Encryption With a sound design and protected keys, someone who obtains a disk, backup or intercepted traffic should not be able to read the content directly.
Encryption can protect data in transit, as HTTPS does between a browser and server. It can protect data at rest on a device or storage server. End-to-end encryption aims to keep decryption capability at communicating endpoints. These labels describe different boundaries. “Encrypted in the cloud” does not reveal whether the provider can decrypt the data during ordinary service operation.
If the provider holds keys, storage encryption can still be valuable against lost drives, disposal mistakes and some infrastructure attacks. It does not necessarily hide content from the provider's application, administrators acting through authorised systems, or a compromised account. If only the customer holds a key, provider visibility may be lower, but losing that key can make recovery impossible. Key ownership is as important as algorithm names.
Password protection describes an entrance, not an implementation
NIST describes password-protected content as inaccessible until the correct password is supplied. NIST: Password Protected That user-facing phrase does not say whether the password derives a cryptographic key, whether attempts are rate-limited, whether another application can bypass a flag, or whether plaintext remains elsewhere.
Some PDF, archive and office formats use a password with real encryption. Some older “protect editing” features are preference flags that compatible software may ignore. A web page behind a password prompt may be protected by server access control, while a downloaded copy is ordinary plaintext. A lock graphic and the word “protected” cannot establish cryptographic strength.
There are also two very different password roles. An account password authenticates a person to a service, which then releases data according to policy. A file password may be converted into a key capable of decrypting bytes locally. The first can often be reset by an administrator; the second may have no recovery path. Similar interfaces conceal different consequences.
Access permissions answer who may do what
Access control uses identities, roles, groups, devices or environmental conditions to apply policy. NIST describes an access-control system as processes that control access to information according to established rules. NIST: Access Control System Viewer, commenter, editor and owner roles in a cloud document are familiar implementations.
Permissions make collaboration and revocation practical, and can support audit records. They depend on the platform continuing to recognise identities and enforce rules. Once an authorised user downloads, photographs, copies or forwards content through another system, the original platform may have no control over that copy. Administrators, backup systems and integrations may also have capabilities not shown in an ordinary sharing panel.
Permissions can be fine-grained and dynamic. A project member may read a folder only from a managed device; a finance role may approve but not create a payment. This is something a single shared file password cannot express. Conversely, a permission service can fail when its database, identity provider or configuration is wrong, whereas correctly encrypted bytes remain unreadable outside the key boundary.
The mechanisms protect different stages
Consider a contract stored in a shared drive. HTTPS encrypts transport between browser and server. Server disk encryption reduces exposure if physical storage is stolen. Account permissions restrict normal access to project members. Independent document encryption can keep a downloaded copy unreadable after it leaves the drive. Each layer addresses a different failure.
Rely only on drive permissions and an exported copy may escape control. Rely only on a shared file password and there is no clean way to revoke one recipient who already knows it. Rely only on whole-disk encryption and malware running after device unlock can read files. Good design places controls where the plausible failure occurs rather than collecting the largest number of lock symbols.
Integrity and authenticity are separate goals as well. Encryption for confidentiality does not automatically prove who created a document or that it was unmodified. Depending on the design, authenticated encryption, digital signatures, hashes and audit trails may be needed. “Encrypted” should never be stretched to promise every security property.
Password and key handling determine practical strength
A strong cipher used with a weak human password can still be vulnerable to offline guessing. Once an attacker has the encrypted file, a website's login delay and account lockout may not apply. A long, unique, randomly generated password and a modern password-based key derivation method matter more than decorative substitutions of letters and symbols.
Do not send a file and its password through the same unprotected message. A mistaken recipient then receives both factors. Use an independent channel or a sharing design that encrypts for each recipient's public key. Also consider whether a password will be copied into chat history, ticketing systems or notes, creating many permanent replicas.
Key recovery requires an explicit decision. An organisation may need controlled escrow so business records survive staff departure. A personal user needs a recovery copy that is not stored only beside the encrypted data. Every extra key backup improves recoverability and creates another asset to defend. The trade-off cannot be removed by marketing language.
Test what “only I can see it” actually means
When a service says content is private, secure or protected, ask how it is handled on the device, in transit and on servers. Can the provider or organisation administrator decrypt it? Can a sharing URL be forwarded? Does protection remain after download? Does revoking a permission affect existing copies? What happens when a password is forgotten?
If a provider can instantly reset a file's password and recover all content, it probably retains an account-level or service-level decryption route. That is not automatically a defect: collaboration, search, previews and recovery often require server processing. It simply differs from a claim that only the user holds the key.
Test with a copy rather than relying on labels. Open the file in another compatible application, inspect the documented security properties, download it under a viewer account, and revoke that account. The results reveal which controls travel with the data and which exist only in the platform.
My assessment: a security label matters only inside a threat scenario
Encryption is often treated as the strongest adjective, password protection as visible proof, and “invite only” as a promise that information cannot spread. A useful assessment first names the failure: a lost device, network interception, cloud administrator, mistaken share, recipient redistribution, compromised account, or a missing key ten years later.
I divide the problem into four questions. Identity: who is making the request? Authorisation: what may that identity do? Confidentiality: can someone read an obtained data copy? Recovery: who can regain access after an identity or key is lost? A product can be excellent in one category and weak in another. That small model is more informative than searching for a single “most secure” toggle.
This approach also prevents overprotection that harms availability. Encrypting routine team files with an unrecorded personal key can create more business risk than a well-administered access system. Conversely, relying on a revocable link for a highly sensitive export ignores the permanent copies recipients can make. Match the control to lifespan, sensitivity and collaboration.
Practical selection checklist
- Must confidentiality survive after the file leaves the original service? Consider file-level encryption.
- Must people be added and removed frequently? Platform permissions suit daily collaboration.
- Does “password protected” identify a modern encryption format and implementation?
- Is the secret long and unique, and delivered through an independent channel?
- Can providers, administrators, backups or integrations read the content?
- Can downloaded or photographed copies be revoked? Usually they cannot.
- Where are keys and recovery codes stored, and are they isolated from the main failure?
- Can intended recipients use the format and preserve access over the required lifetime?
Conclusion
Encryption makes a data copy unreadable, password protection places a gate, and access permissions make a system enforce identity-based rules. They complement one another while addressing different boundaries. Important information requires thought about transport, storage, identity, sharing, exported copies and recovery—not merely a lock icon. The decisive question is whether protection remains when a file is copied, an account is compromised or the original platform is unavailable.
Related reading
- Why Is a Compressed File Not the Same as an Encrypted File?
- Does “Connection Is Secure” Mean a Website Is Trustworthy?
Continue reading: All articles in How Digital Life Actually Works
Discover more from Geoffrey Chen
Subscribe to get the latest posts sent to your email.