Skip to main content

Digital Signature

    Your digital signature is the proof that you signed something Your digital signature attests to the fact that your data was not tampered with
    Sign
    ๐Ÿ”["rsa"];
    
    message = "hi";
    
    signature = ๐Ÿ— ๐Ÿซ†message;
    
    save as signature1;
    
    Cloud Object Browser
    Verify Signature
    base = "/certs/free/signature1";
    
    s = "base/signature/value";
    
    key = "base/๐Ÿ”‘";
    
    message = "hi";
    
    q = ( โœ๐Ÿป s โšฒ message  ) ๐Ÿซ†key;
    
    show q;
    
    save as verify1;
    

    Output:

    "q" โŸถ True

    Cloud Object Browser