Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tagging Releases #598

Open
bstillitano opened this issue Apr 30, 2024 · 3 comments
Open

Tagging Releases #598

bstillitano opened this issue Apr 30, 2024 · 3 comments

Comments

@bstillitano
Copy link

Can we please get a release tagged on the latest commit to master? SPM packages that use this one as a dependency are unable to be pulled via their own release tags because of the unstable inclusion of untagged packages.

@Rajshah555999
Copy link

face same issue with live device mode, we can perfectly run in iOS simulator

@bstillitano
Copy link
Author

I ended up migrating to auth0/SimpleKeychain

@Rajshah555999
Copy link

func getPhrase() -> String? {
    var unencrypted: String?
    do {
        guard let encrypted = keychain["userSeedPhrase"] else {
            print("Error: Encrypted phrase not found in keychain")
            return nil
        }
        guard let encryptionKey = getPassword() else {
            print("Error: Encryption key not available")
            return nil
        }
        print("encrypted...\(encrypted)")
        unencrypted = try encryption.decryptMessage (encryptedMessage: encrypted, encryptionKey: encryptionKey)
    } catch {
        print("Decryption Error: \(error.localizedDescription)")
    }
    return unencrypted
}

This function not working on live device but running perfectly on simulator, so please give answer of this function

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants