25 lines
478 B
Go
25 lines
478 B
Go
//+build android
|
|
|
|
package passgo
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
//Clip copies a string to the clipboard
|
|
func Clip(x string) {
|
|
fmt.Println("Clipboard not implemented for this platform")
|
|
}
|
|
|
|
func (s *Store) nativeDecrypt(name string) (string, error) {
|
|
return "", fmt.Errorf("NOT IMPLEMENTED")
|
|
}
|
|
|
|
func (s *Store) nativeEncrypt(pw string) ([]byte, error) {
|
|
return nil, fmt.Errorf("NOT IMPLEMENTED")
|
|
}
|
|
|
|
func nativeIdentities() ([]string, error) {
|
|
return nil, fmt.Errorf("NOT IMPLEMENTED")
|
|
}
|