[BACK]Return to sk-api.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/sk-api.h between version 1.14 and 1.15

version 1.14, 2021/11/02 22:56:40 version 1.15, 2022/07/20 03:29:14
Line 24 
Line 24 
 /* Flags */  /* Flags */
 #define SSH_SK_USER_PRESENCE_REQD       0x01  #define SSH_SK_USER_PRESENCE_REQD       0x01
 #define SSH_SK_USER_VERIFICATION_REQD   0x04  #define SSH_SK_USER_VERIFICATION_REQD   0x04
   #define SSH_SK_FORCE_OPERATION          0x10
 #define SSH_SK_RESIDENT_KEY             0x20  #define SSH_SK_RESIDENT_KEY             0x20
   
 /* Algs */  /* Algs */
Line 35 
Line 36 
 #define SSH_SK_ERR_UNSUPPORTED          -2  #define SSH_SK_ERR_UNSUPPORTED          -2
 #define SSH_SK_ERR_PIN_REQUIRED         -3  #define SSH_SK_ERR_PIN_REQUIRED         -3
 #define SSH_SK_ERR_DEVICE_NOT_FOUND     -4  #define SSH_SK_ERR_DEVICE_NOT_FOUND     -4
   #define SSH_SK_ERR_CREDENTIAL_EXISTS    -5
   
 struct sk_enroll_response {  struct sk_enroll_response {
         uint8_t flags;          uint8_t flags;
Line 75 
Line 77 
         uint8_t required;          uint8_t required;
 };  };
   
 #define SSH_SK_VERSION_MAJOR            0x00090000 /* current API version */  #define SSH_SK_VERSION_MAJOR            0x000a0000 /* current API version */
 #define SSH_SK_VERSION_MAJOR_MASK       0xffff0000  #define SSH_SK_VERSION_MAJOR_MASK       0xffff0000
   
 /* Return the version of the middleware API */  /* Return the version of the middleware API */

Legend:
Removed from v.1.14  
changed lines
  Added in v.1.15