summaryrefslogtreecommitdiff
path: root/packages/palmunits/src/password.pp
diff options
context:
space:
mode:
Diffstat (limited to 'packages/palmunits/src/password.pp')
-rw-r--r--packages/palmunits/src/password.pp40
1 files changed, 40 insertions, 0 deletions
diff --git a/packages/palmunits/src/password.pp b/packages/palmunits/src/password.pp
new file mode 100644
index 0000000000..011dc98e5e
--- /dev/null
+++ b/packages/palmunits/src/password.pp
@@ -0,0 +1,40 @@
+{$MACRO ON}
+
+(******************************************************************************
+ *
+ * Copyright (c) 1994-2000 Palm, Inc. or its subsidiaries.
+ * All rights reserved.
+ *
+ * File: Password.h
+ *
+ * Release: Palm OS SDK 4.0 (63220)
+ *
+ * Description:
+ * Password include file
+ *
+ * History:
+ * 4/1/95 - created by Roger Flores
+ *
+ *****************************************************************************)
+
+unit password;
+
+interface
+
+uses coretraps;
+
+const
+ pwdLength = 32;
+ pwdEncryptionKeyLength = 64;
+
+function PwdExists: Boolean; syscall sysTrapPwdExists;
+
+function PwdVerify(Astring: PChar): Boolean; syscall sysTrapPwdVerify;
+
+procedure PwdSet(oldPassword, newPassword: PChar); syscall sysTrapPwdSet;
+
+procedure PwdRemove; syscall sysTrapPwdRemove;
+
+implementation
+
+end.