remove debug output of signing key

This commit is contained in:
Emil Lerch 2022-01-20 07:31:32 -08:00
parent 1fd42fbe84
commit a05c1dfa10
Signed by: lobo
GPG Key ID: A7B62D657EF764F8

View File

@ -213,7 +213,6 @@ pub fn signRequest(allocator: std.mem.Allocator, request: base.Request, config:
const signing_key = try getSigningKey(allocator, scope[0..8], config); const signing_key = try getSigningKey(allocator, scope[0..8], config);
defer allocator.free(signing_key); defer allocator.free(signing_key);
log.debug("key:{s}", .{std.fmt.fmtSliceHexLower(signing_key)});
const signature = try hmac(allocator, signing_key, string_to_sign); const signature = try hmac(allocator, signing_key, string_to_sign);
defer allocator.free(signature); defer allocator.free(signature);