Commit 28b86f31 authored by FdaSilvaYY's avatar FdaSilvaYY Committed by Matt Caswell
Browse files

Fix some extra or missing whitespaces...

parent ec2a0e60
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -216,8 +216,7 @@ digest name passed on the command line.
 }

 md = EVP_get_digestbyname(argv[1]);

 if(!md) {
 if (md == NULL) {
        printf("Unknown message digest %s\n", argv[1]);
        exit(1);
 }
+3 −3
Original line number Diff line number Diff line
@@ -162,10 +162,10 @@ Reference Implementation:
          HMAC_Init_ex(&hctx, key->hmac_key, 16, EVP_sha256(), NULL);
          EVP_DecryptInit_ex(&ctx, EVP_aes_128_cbc(), NULL, key->aes_key, iv );

          if (key->expire < ( now() - RENEW_TIME ) ) {
          if (key->expire < ( now() - RENEW_TIME ) )
              /* return 2 - this session will get a new ticket even though the current is still valid */
              return 2;
          }

          return 1;

      }
+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+2 −2

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

+1 −1

File changed.

Contains only whitespace changes.

Loading