I probably do not understand the encryption of Realm propably and hope someone can help.
I created a Realm database with encryption according to this example: https://github.com/realm/realm-cocoa/blob/master/examples/ios/swift-2.0/Encryption/ViewController.swift
let configuration = Realm.Configuration(encryptionKey: "31234567890123456789012345678901234567890123456789012345678901234".dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false))
let realm = try! Realm(configuration: configuration)
However after I run my script I can still access & change the Realm file in Realm browser. I expected that the Realm file is encrypted and users cannot read the realm file without decrypting it with the correct password.
I already read question "SWIFT - Realm db encryption not working" but it did not answer my question.
How can I protect my realm file that nobody can read/write Objects from and to it without knowing the encryption key ?
Thanks, Tim